<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://permalink.gmane.org/gmane.editors.lyx.devel">
    <title>gmane.editors.lyx.devel</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113933"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113932"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113931"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113930"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113929"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113928"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113927"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113926"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113925"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113924"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113923"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113922"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113921"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113920"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113919"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113918"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113917"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113916"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113915"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.devel/113914"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113933">
    <title>Re: Index entries in lyx-1.6</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113933</link>
    <description>Jürgen Spitzmüller a écrit :
I just test your patch and it seems to work for the problems I mention.
But there is still an other problem:

if you create an index entry after a word which is written in bold and
if this entry contain a latex command and
a math formula at the end then this is badly converted by lyx-1.6.
Here is, attached , an example.

PhC
</description>
    <dc:creator>Philippe Charpentier</dc:creator>
    <dc:date>2008-12-01T19:30:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113932">
    <title>Re: request to remove the menu language setting from the preferences</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113932</link>
    <description> &gt; Do you know in which version this bug is fixed?

JMarc found out that 0.16.1 fixes this:
http://bugzilla.lyx.org/show_bug.cgi?id=5034#c27

To get the patch for this issue, perhaps the gettext people can tell us.

&lt; at &gt;Abdel and JMarc: We discussed the environment variable setting in detail in
http://bugzilla.lyx.org/show_bug.cgi?id=5034

regards Uwe

</description>
    <dc:creator>Uwe Stöhr</dc:creator>
    <dc:date>2008-12-01T18:03:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113931">
    <title>Re: Index entries in lyx-1.6</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113931</link>
    <description>
Thanks.

The attached patch fixes these cases for me. However, I'm not sure about side 
effects.

Some rationale:

1.) we put everything into ERT that is in a command, notwithstanding if it is 
possible in a command or not. In the testcase, a modifier letter was inserted, 
which breaks compilation. The patch just reverts such things to LaTeX commands 
inside put_cmd_in_ert(string):

&lt; at &gt;&lt; at &gt; -50,6 +50,8 &lt; at &gt;&lt; at &gt;
       + dst + '\n\\end_layout\n\\end_inset\n')
 
 def put_cmd_in_ert(string):
+    for rep in unicode_reps:
+        string = string.replace(rep[1], rep[0].replace('\\\\', '\\'))
     string = string.replace('\\', "\\backslash\n")
     string = "\\begin_inset ERT\nstatus collapsed\n\\begin_layout Standard\n" 
\
       + string + "\n\\end_layout\n\\end_inset"


2.) we need to transform \\ to \ in latex2lyx to avoid the duplicate slashes 
mentioned by Philippe:

&lt; at &gt;&lt; at &gt; -280,8 +282,11 &lt; at &gt;&lt; at &gt;
         else:
             data = data.replace(rep[0], rep[1])
 
-    # Generic, \" -&gt; ":
+    # Generic
+    # \" -&gt; ":
     data</description>
    <dc:creator>Jürgen Spitzmüller</dc:creator>
    <dc:date>2008-12-01T17:50:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113930">
    <title>Odd LyX 1.6 installer error (Win XP)</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113930</link>
    <description>Hi,

Someone on the user list got in touch with me about the dreaded "no 
classes" problem (LyX 1.6/MiKTeX 2.7 on Win XP -- I don't know which 
installer he had).  After assorted fruitless tries, I looked at his 
configuration log, which had three anomalies in it:

(a) The first line said

configure: TeX engine needs windows-style paths in latex files

which I take to mean the script knows it's a Win whatever system, but 
later on

Checking whether TeX allows spaces in file names...  no

indicates that the "a b.tex" text blew up.

(b) When the configuration script checked for platex, it said

checking for pLaTeX, the Japanese LaTeX...
+checking for "platex"...   yes
Latex not usable (not LaTeX2e)

even though it's finding MiKTeX.  I don't know if this is a bug in his 
MiKTeX installation, but does MiKTeX 2.7 still write in the output the 
string it's looking for?

(c) He got

Layout file C:/Program 
Files/LyX16/bin/../Resources\layouts\manpage.layout has no 
\DeclareXXClass line

even though he verified that</description>
    <dc:creator>Paul A. Rubin</dc:creator>
    <dc:date>2008-12-01T16:42:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113929">
    <title>Re: Index entries in lyx-1.6</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113929</link>
    <description>#LyX 1.5.6 created this file. For more info see http://www.lyx.org/
\lyxformat 276
\begin_document
\begin_header
\textclass article
\language english
\inputencoding auto
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\paperfontsize default
\spacing single
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 0
\cite_engine basic
\use_bibtopic false
\paperorientation portrait
\leftmargin 1.5cm
\topmargin 2cm
\rightmargin 1.5cm
\bottommargin 2cm
\secnumdepth 5
\tocdepth 5
\paragraph_separation indent
\defskip medskip
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\author "" 
\author "" 
\end_header

\begin_body

\begin_layout Standard
Command
\begin_inset LatexCommand index
name "Command&lt; at &gt;\\textbf{Command}!Italic&lt; at &gt;\\textit{Italic} : \\textbackslash textit\\{...\\}"

\end_inset


\end_layout

\b</description>
    <dc:creator>Charpentier Philippe</dc:creator>
    <dc:date>2008-12-01T15:24:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113928">
    <title>Re: Index entries in lyx-1.6</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113928</link>
    <description>
Could you please send this as an attachment, not inline?

Thanks,
Jürgen

</description>
    <dc:creator>Jürgen Spitzmüller</dc:creator>
    <dc:date>2008-12-01T15:21:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113927">
    <title>Re: Index entries in lyx-1.6</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113927</link>
    <description>Richard Heck a écrit :
Here is an example obtain with lyx-1.5.6 :

-----------------------------------------------

#LyX 1.5.6 created this file. For more info see http://www.lyx.org/
\lyxformat 276
\begin_document
\begin_header
\textclass article
\language english
\inputencoding auto
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\paperfontsize default
\spacing single
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 0
\cite_engine basic
\use_bibtopic false
\paperorientation portrait
\leftmargin 1.5cm
\topmargin 2cm
\rightmargin 1.5cm
\bottommargin 2cm
\secnumdepth 5
\tocdepth 5
\paragraph_separation indent
\defskip medskip
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\author ""
\author ""
\end_header

\begin_body

\begin_layout Standard
Command
\begin_inset LatexCommand index
name </description>
    <dc:creator>Charpentier Philippe</dc:creator>
    <dc:date>2008-12-01T15:12:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113926">
    <title>Re: Index entries in lyx-1.6</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113926</link>
    <description>As Jurgen said, if you can give us a file, we can try to figure this 
out. The problem is that we've gone from a dialog where you have to 
enter LaTeX to an inset where you can enter LyX, and converting the old 
LaTeX stuff into new LyX stuff is difficult to get right. Several of us 
worked on it, but, well, there always seem to be other cases.

rh


</description>
    <dc:creator>Richard Heck</dc:creator>
    <dc:date>2008-12-01T14:33:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113925">
    <title>Re: Patch for 3218, Allow user to disable Different Textclass warning.</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113925</link>
    <description>I'll try to find time to do this. But if someone else wants to beat me 
to it....

rh


</description>
    <dc:creator>Richard Heck</dc:creator>
    <dc:date>2008-12-01T14:30:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113924">
    <title>Re: Patch for 3218, Allow user to disable Different Textclass warning.</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113924</link>
    <description>
The attached patch is a proof of concept. It adds a "Do not show this message 
again" checkbox to the warning on request (implemented for the "different 
classes" warning in the patch) and stores "hidden" messages in Session. 
Currently, this does not differentiate per document, which could be 
implemented easily. I think it is not too bad as it is now, since the whole 
string is stored. So for instance you can turn off once and for all warnings 
about a beamer-article including a beamer presentation (my personally most 
hated message).

The patch still has some glitches. I do not have time to investigate further. 
Maybe someone else will take over?

* I did not find a way to prevent the message box from closing when clicking 
the check box (probably some event will need to be catched). Thus the rather 
ugly while loop that just reopens the mb each time after clicking the check 
box. We should get rid of that.

* The warning icon does not show up in the dialog even though I specified 
that. I did not find o</description>
    <dc:creator>Jürgen Spitzmüller</dc:creator>
    <dc:date>2008-12-01T12:00:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113923">
    <title>Re: Index entries in lyx-1.6</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113923</link>
    <description>
Could you provide an exmaple file that demonstrates those errors, please?

Jürgen

</description>
    <dc:creator>Jürgen Spitzmüller</dc:creator>
    <dc:date>2008-12-01T08:38:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113922">
    <title>Re: r27745 - /lyx-devel/branches/BRANCH_1_6_X/src/frontends/q...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113922</link>
    <description>
Very good (and very bad on my side).

Abdel.


</description>
    <dc:creator>Abdelrazak Younes</dc:creator>
    <dc:date>2008-12-01T08:19:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113921">
    <title>Re: r27727 - /lyx-devel/trunk/src/frontends/qt4/GuiApplicatio...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113921</link>
    <description>
Good job Vincent. I remember having a bad time investigating this 
without success.

Abdel.


</description>
    <dc:creator>Abdelrazak Younes</dc:creator>
    <dc:date>2008-12-01T08:17:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113920">
    <title>Re: request to remove the menu language setting from the preferences</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113920</link>
    <description>
Ah yes, you're right. Would it be an option if we set LANG instead only 
on Windows?

Abdel.


</description>
    <dc:creator>Abdelrazak Younes</dc:creator>
    <dc:date>2008-12-01T07:59:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113919">
    <title>Re: request to remove the menu language setting from the preferences</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113919</link>
    <description>
Not really. We set LANGUAGE. But please, before changing this, please  
double check it. My reading of the
docs is that language is not always the right thing to check.

JMarc

</description>
    <dc:creator>Jean-Marc Lasgouttes</dc:creator>
    <dc:date>2008-12-01T07:57:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113918">
    <title>Re: regression introduced by r27719</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113918</link>
    <description>
Yes it does. Nevertheless, I'd prefer to keep a method with the same  
semantics that what we have now,
because it is used (or it should be used) in other places. I won't  
have time to look at this until wednesday, though.

JMarc

</description>
    <dc:creator>Jean-Marc Lasgouttes</dc:creator>
    <dc:date>2008-12-01T07:52:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113917">
    <title>Re: request to remove the menu language setting from the preferences</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113917</link>
    <description>
It may be broken On windows XP 64 but not on vista, where it works just 
fine. Do have reports that it doesn't work on Mac? Aren't these reports 
based on an older version of gettext? If so, this is just a packaging issue.


This is easy to solve in various ways but no solution that satisfies 
everybody emerged yet.




Err, this is exactly what is done by LyX for the feature we are talking 
about right now :-)


As I said, you just need to decide what solution to adopt.


Disable it (don't remove) on platforms that do not work (== WinXP64 AFAIK).

Abdel.


</description>
    <dc:creator>Abdelrazak Younes</dc:creator>
    <dc:date>2008-12-01T07:29:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113916">
    <title>Re: Approaching LyX 1.6.1 [status update #1]</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113916</link>
    <description>


Stefan Schimanski does.

There is some info here
http://article.gmane.org/gmane.editors.lyx.devel/100819


This is how it works (and is actually pretty cool - we should get that 
into the documentation!):

1) Open OmniGraffle (or anything else that supports LinkBack, e.g. 
LatexIt, as long as it is PDF) and paint something

2) Copy the OmniGraffle picture into the Clipboard (no need to save before)

3) Paste this into LyX 1.6.0 (you get asked to save what you pasted in a 
file - keep the linkback extension)

4) Close OmniGraffle (again no need to save)

5) In Lyx, rightclick on the figure and "Edit externally..."

6) You end up in OmniGraffle again, editing your prior image.

Now how is that? :)

/Konrad


</description>
    <dc:creator>Konrad Hofbauer</dc:creator>
    <dc:date>2008-12-01T06:50:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113915">
    <title>Re: regression introduced by r27719</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113915</link>
    <description>
Doesn't my proposed fix nevertheless do the right thing in this case? I.e., 
move it from .h to .cpp and make it return false for comment and greyedout.

- Martin


</description>
    <dc:creator>Martin Vermeer</dc:creator>
    <dc:date>2008-12-01T06:27:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113914">
    <title>Index entries in lyx-1.6</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113914</link>
    <description>Hi,
I recently noted that index entries of lyx-1.5 are badly read by
lyx-1.6, and I did not see something
like that in bugzilla or recently in the list:
For example the following index entry written with lyx-1.5

Command&lt; at &gt;\textbf{Command}!Italic&lt; at &gt;\textit{Italic} : \textbackslash
textit\{...\}

is converted in lyx-1.6 to

Command&lt; at &gt;\textbf{Command}!Italic&lt; at &gt;\\textit{Italic} : \\textbackslash
textit\\{...\\}

the part \textbf{Command}!Italic&lt; at &gt;\\textit{Italic} : \\textbackslash
textit\\{...\\} being
in ERT

Moreover, it may happens that lyx-1.6 convert an index entry into
strange characters
and then it is no more able to export the file in latex and of course
cannot compile it!
For example the following entry (written with lyx-1.5)

Partie&lt; at &gt;Partie!Equicontinue&lt; at &gt;\textit{\' Equicontinue}

is converted by lyx-1.6 to

Partie&lt; at &gt;Partie!Equicontinue&lt; at &gt;\textit{́ Equicontinue}

the part \textit{́ Equicontinue} being in ERT, the white part between {
and E being two strange
characters so that it cannot export (or compile) it! The er</description>
    <dc:creator>Philippe Charpentier</dc:creator>
    <dc:date>2008-11-30T22:45:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.devel/113913">
    <title>Re: lyx2lyx fails</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.devel/113913</link>
    <description>Am Sonntag 30 November 2008 schrieb Jürgen Spitzmüller:

I would like it too. It is more annoying to get nothing, than to get something 
not 100% correct with some warnings in between.


Kornel
</description>
    <dc:creator>Kornel Benko</dc:creator>
    <dc:date>2008-11-30T17:34:43</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.editors.lyx.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.editors.lyx.devel</link>
  </textinput>
</rdf:RDF>
