<?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.cvs">
    <title>gmane.editors.lyx.cvs</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs</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.cvs/20226"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20225"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20224"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20223"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20222"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20221"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20220"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20219"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20218"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20217"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20216"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20215"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20214"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20213"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20212"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20211"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20210"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20209"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20208"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.lyx.cvs/20207"/>
      </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.cvs/20226">
    <title>r26094 - /lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20226</link>
    <description>Author: uwestoehr
Date: Fri Aug  8 00:37:27 2008
New Revision: 26094

URL: http://www.lyx.org/trac/changeset/26094
Log:
lyx2lyx/lyx_1_6.py: fix bug 5137 and another bug

Modified:
    lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py

Modified: lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py?rev=26094
==============================================================================
--- lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py (original)
+++ lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py Fri Aug  8 00:37:27 2008
&lt; at &gt;&lt; at &gt; -308,7 +308,7 &lt; at &gt;&lt; at &gt;
     return retval
 
 
-def lyx2latex(lines):
+def lyx2latex(document, lines):
     'Convert some LyX stuff into corresponding LaTeX stuff, as best we can.'
     # clean up multiline stuff
     content = ""
&lt; at &gt;&lt; at &gt; -352,12 +352,23 &lt; at &gt;&lt; at &gt;
           #skip all that stuff
           continue
 
+      # this needs to be added to the preamble because of cases like
+      # \textmu, \textbackslash, etc.
+      add_to_preamble(document, ['% added by lyx2lyx </description>
    <dc:creator>uwestoehr&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-07T22:37:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20225">
    <title>r26093 - /lyx-devel/trunk/src/support/FileName.cpp</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20225</link>
    <description>Author: rgheck
Date: Thu Aug  7 15:57:25 2008
New Revision: 26093

URL: http://www.lyx.org/trac/changeset/26093
Log:
Make sure temporary files are created, by default, in LyX's temporary directory, rather than in the system tempdir.

Modified:
    lyx-devel/trunk/src/support/FileName.cpp

Modified: lyx-devel/trunk/src/support/FileName.cpp
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/support/FileName.cpp?rev=26093
==============================================================================
--- lyx-devel/trunk/src/support/FileName.cpp (original)
+++ lyx-devel/trunk/src/support/FileName.cpp Thu Aug  7 15:57:25 2008
&lt; at &gt;&lt; at &gt; -393,10 +393,7 &lt; at &gt;&lt; at &gt;
 
 FileName FileName::tempName(string const &amp; mask)
 {
-QFileInfo tmp_fi(toqstr(mask));
-if (!tmp_fi.isAbsolute())
-tmp_fi.setFile(package().temp_dir().d-&gt;fi.absoluteDir(), toqstr(mask));
-return FileName(createTempFile(tmp_fi.absoluteFilePath()));
+return tempName(package().temp_dir(), mask);
 }
 
 



</description>
    <dc:creator>rgheck&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-07T13:57:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20224">
    <title>r26092 - in /lyx-devel/trunk/src: InsetList.cpp InsetList...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20224</link>
    <description>Author: younes
Date: Thu Aug  7 10:50:41 2008
New Revision: 26092

URL: http://www.lyx.org/trac/changeset/26092
Log:
Fix http://bugzilla.lyx.org/show_bug.cgi?id=5132
Brown paper bag: I forgot to copy the insetlist contents when I create the paragraph partial ctor.

Modified:
    lyx-devel/trunk/src/InsetList.cpp
    lyx-devel/trunk/src/InsetList.h
    lyx-devel/trunk/src/Paragraph.cpp

Modified: lyx-devel/trunk/src/InsetList.cpp
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/InsetList.cpp?rev=26092
==============================================================================
--- lyx-devel/trunk/src/InsetList.cpp (original)
+++ lyx-devel/trunk/src/InsetList.cpp Thu Aug  7 10:50:41 2008
&lt; at &gt;&lt; at &gt; -49,6 +49,21 &lt; at &gt;&lt; at &gt;
 List::iterator end = list_.end();
 for (; it != end; ++it)
 it-&gt;inset = it-&gt;inset-&gt;clone();
+}
+
+
+InsetList::InsetList(InsetList const &amp; il, pos_type beg, pos_type end)
+{
+InsetList::const_iterator cit = il.begin();
+InsetList::const_iterator cend = il.end();
+for (; cit != cend; ++cit) {
+</description>
    <dc:creator>younes&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-07T08:50:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20223">
    <title>r26091 - in /lyx-devel/trunk: ANNOUNCE NEWS</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20223</link>
    <description>Author: jamatos
Date: Thu Aug  7 10:12:13 2008
New Revision: 26091

URL: http://www.lyx.org/trac/changeset/26091
Log:
Prepare ANNOUNCE and NEWS for rc2

Modified:
    lyx-devel/trunk/ANNOUNCE
    lyx-devel/trunk/NEWS

Modified: lyx-devel/trunk/ANNOUNCE
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/ANNOUNCE?rev=26091
==============================================================================
--- lyx-devel/trunk/ANNOUNCE (original)
+++ lyx-devel/trunk/ANNOUNCE Thu Aug  7 10:12:13 2008
&lt; at &gt;&lt; at &gt; -1,5 +1,5 &lt; at &gt;&lt; at &gt;
-Public release of LyX version 1.6.0 (release candidate 1)
-=============================================
+Public release of LyX version 1.6.0 (release candidate 2)
+=========================================================
 
 We are pleased to announce the first release candidate of LyX 1.6.0.
 
&lt; at &gt;&lt; at &gt; -11,7 +11,7 &lt; at &gt;&lt; at &gt;
 visible has taken place. The core of LyX has seen more cleanups and
 some of the new features are the direct results of this work.
 
-The new features in LyX 1.6 are detailed in 
+The new feature</description>
    <dc:creator>jamatos&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-07T08:12:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20222">
    <title>r26090 - /lyx-devel/trunk/src/insets/InsetCollapsable.cpp</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20222</link>
    <description>Author: younes
Date: Thu Aug  7 09:45:52 2008
New Revision: 26090

URL: http://www.lyx.org/trac/changeset/26090
Log:
Tentatively fix http://bugzilla.lyx.org/show_bug.cgi?id=4873

Modified:
    lyx-devel/trunk/src/insets/InsetCollapsable.cpp

Modified: lyx-devel/trunk/src/insets/InsetCollapsable.cpp
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/insets/InsetCollapsable.cpp?rev=26090
==============================================================================
--- lyx-devel/trunk/src/insets/InsetCollapsable.cpp (original)
+++ lyx-devel/trunk/src/insets/InsetCollapsable.cpp Thu Aug  7 09:45:52 2008
&lt; at &gt;&lt; at &gt; -529,7 +529,8 &lt; at &gt;&lt; at &gt;
 break;
 
 case LFUN_MOUSE_RELEASE:
-if (geometry() == NoButton || !hitButton(cmd)) {
+if (geometry() == NoButton 
+|| (geometry() != ButtonOnly &amp;&amp; !hitButton(cmd))) {
 // The mouse click has to be within the inset!
 InsetText::doDispatch(cur, cmd);
 break;



</description>
    <dc:creator>younes&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-07T07:45:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20221">
    <title>r26089 - in /lyx-devel/trunk/lib/doc: Extended.lyx de/Ext...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20221</link>
    <description>Author: uwestoehr
Date: Thu Aug  7 01:59:42 2008
New Revision: 26089

URL: http://www.lyx.org/trac/changeset/26089
Log:
Extended.lyx: fix bug 5126

Modified:
    lyx-devel/trunk/lib/doc/Extended.lyx
    lyx-devel/trunk/lib/doc/de/Extended.lyx

Modified: lyx-devel/trunk/lib/doc/Extended.lyx
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/lib/doc/Extended.lyx?rev=26089
==============================================================================
--- lyx-devel/trunk/lib/doc/Extended.lyx (original)
+++ lyx-devel/trunk/lib/doc/Extended.lyx Thu Aug  7 01:59:42 2008
&lt; at &gt;&lt; at &gt; -2958,6 +2958,59 &lt; at &gt;&lt; at &gt;
  to use.
 \end_layout
 
+\begin_layout Subsection
+Bibliography Lists in all Subdocuments
+\end_layout
+
+\begin_layout Standard
+Copy the bibliography list with all entries to all subdocuments and transform
+ them to a comment.
+ This way LyX will find the 
+\family typewriter
+.bib
+\family default
+-files and you can easily insert references without making the bibliography
+ list visible.
+\end_layout
+
+\begin_layout Stand</description>
    <dc:creator>uwestoehr&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T23:59:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20220">
    <title>r26088 - in /lyx-devel/trunk/development/Win32/packaging/...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20220</link>
    <description>Author: uwestoehr
Date: Thu Aug  7 01:26:39 2008
New Revision: 26088

URL: http://www.lyx.org/trac/changeset/26088
Log:
installer: - new Catalan translation
           - add Arabic translation that I forgot to add some days ago

Added:
    lyx-devel/trunk/development/Win32/packaging/AltInstaller/lyx_languages/arabic.nsh   (with props)
    lyx-devel/trunk/development/Win32/packaging/AltInstaller/lyx_languages/catalan.nsh   (with props)
Modified:
    lyx-devel/trunk/development/Win32/packaging/AltInstaller/ChangeLog.txt
    lyx-devel/trunk/development/Win32/packaging/AltInstaller/LanguageSettings.nsh
    lyx-devel/trunk/development/Win32/packaging/AltInstaller/Settings.nsh
    lyx-devel/trunk/development/Win32/packaging/AltInstaller/TranslatedLanguages.nsh

Modified: lyx-devel/trunk/development/Win32/packaging/AltInstaller/ChangeLog.txt
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/development/Win32/packaging/AltInstaller/ChangeLog.txt?rev=26088
=============================================================</description>
    <dc:creator>uwestoehr&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T23:26:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20219">
    <title>r26087 - in /lyx-devel/branches/BRANCH_1_5_X/development/...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20219</link>
    <description>Author: uwestoehr
Date: Thu Aug  7 01:23:49 2008
New Revision: 26087

URL: http://www.lyx.org/trac/changeset/26087
Log:
installer: new Catalan translation

Added:
    lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/lyx_languages/catalan.nsh   (with props)
Modified:
    lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/ChangeLog.txt
    lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/LanguageSettings.nsh
    lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/TranslatedLanguages.nsh

Modified: lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/ChangeLog.txt
URL: http://www.lyx.org/trac/file/lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/ChangeLog.txt?rev=26087
==============================================================================
--- lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/ChangeLog.txt (original)
+++ lyx-devel/branches/BRANCH_1_</description>
    <dc:creator>uwestoehr&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T23:23:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20218">
    <title>r26086 [2/2] - /lyx-devel/trunk/po/ar.po</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20218</link>
    <description>
Modified: lyx-devel/trunk/po/ar.po
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/po/ar.po?rev=26086
==============================================================================
--- lyx-devel/trunk/po/ar.po (original)
+++ lyx-devel/trunk/po/ar.po Thu Aug  7 00:51:11 2008
&lt; at &gt;&lt; at &gt; -7,8 +7,8 &lt; at &gt;&lt; at &gt;
 msgstr ""
 "Project-Id-Version: LyX 1.6.0\n"
 "Report-Msgid-Bugs-To: lyx-devel&lt; at &gt;lists.lyx.org\n"
-"POT-Creation-Date: 2008-08-04 09:54+0100\n"
-"PO-Revision-Date: 2008-08-01 01:11+0300\n"
+"POT-Creation-Date: 2008-07-13 13:54+0200\n"
+"PO-Revision-Date: 2008-08-07 00:50+0100\n"
 "Last-Translator: Hatim Alahmadi &lt;Dr.Hatim&lt; at &gt;hotmail.com&gt;\n"
 "Language-Team: LyX team &lt;Dr.Hatim&lt; at &gt;hotmail.com&gt;\n"
 "MIME-Version: 1.0\n"
&lt; at &gt;&lt; at &gt; -30,26 +30,37 &lt; at &gt;&lt; at &gt;
 msgid "Credits"
 msgstr "Ø´ÙØ±"
 
-#: src/frontends/qt4/ui/AboutUi.ui:80 lib/layouts/apa.layout:198
+#: src/frontends/qt4/ui/AboutUi.ui:80
+#: lib/layouts/apa.layout:198
 #: lib/layouts/agu_stdtitle.inc:81
 msgid "Copyright"
 msgstr "Ø­ÙÙÙ Ø§ÙÙØ´Ø±"
 
-#: src/fron</description>
    <dc:creator>uwestoehr&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T22:51:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20217">
    <title>r26086 [1/2] - /lyx-devel/trunk/po/ar.po</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20217</link>
    <description>Author: uwestoehr
Date: Thu Aug  7 00:51:11 2008
New Revision: 26086

URL: http://www.lyx.org/trac/changeset/26086
Log:
ar.po: updates by Hatim

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


</description>
    <dc:creator>uwestoehr&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T22:51:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20216">
    <title>r26085 - /lyx-devel/trunk/development/Win32/packaging/ins...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20216</link>
    <description>Author: joost
Date: Wed Aug  6 23:19:19 2008
New Revision: 26085

URL: http://www.lyx.org/trac/changeset/26085
Log:
add Ukrainian translation

Modified:
    lyx-devel/trunk/development/Win32/packaging/installer/include/langlist.nsh

Modified: lyx-devel/trunk/development/Win32/packaging/installer/include/langlist.nsh
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/development/Win32/packaging/installer/include/langlist.nsh?rev=26085
==============================================================================
--- lyx-devel/trunk/development/Win32/packaging/installer/include/langlist.nsh (original)
+++ lyx-devel/trunk/development/Win32/packaging/installer/include/langlist.nsh Wed Aug  6 23:19:19 2008
&lt; at &gt;&lt; at &gt; -38,6 +38,7 &lt; at &gt;&lt; at &gt;
   ${COMMAND} "Suomi" fi_FI 1035
   # ${COMMAND} "Svenska" sv_SE 1053
   # ${COMMAND} "Türkçe" tr_TR 1055
+  ${COMMAND} "Ukrainian" uk_UK 1058
   # ${COMMAND} "Walon" wa_BE 1055
 
 !macroend



</description>
    <dc:creator>joost&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T21:19:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20215">
    <title>r26084 - /lyx-devel/trunk/development/Win32/packaging/ins...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20215</link>
    <description>Author: joost
Date: Wed Aug  6 23:11:00 2008
New Revision: 26084

URL: http://www.lyx.org/trac/changeset/26084
Log:
updated download locations

Modified:
    lyx-devel/trunk/development/Win32/packaging/installer/include/declarations.nsh

Modified: lyx-devel/trunk/development/Win32/packaging/installer/include/declarations.nsh
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/development/Win32/packaging/installer/include/declarations.nsh?rev=26084
==============================================================================
--- lyx-devel/trunk/development/Win32/packaging/installer/include/declarations.nsh (original)
+++ lyx-devel/trunk/development/Win32/packaging/installer/include/declarations.nsh Wed Aug  6 23:11:00 2008
&lt; at &gt;&lt; at &gt; -63,17 +63,16 &lt; at &gt;&lt; at &gt;
 #--------------------------------
 # Locations of components to download
 
-!define MIRROR_SF1 "http://downloads.sourceforge.net" # A random mirror is selected
-!define MIRROR_SF2 "http://downloads.sourceforge.net"
+# CTAN and SourceForge select a mirror automatically
 
</description>
    <dc:creator>joost&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T21:11:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20214">
    <title>r26083 - /lyx-devel/trunk/development/Win32/packaging/ins...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20214</link>
    <description>Author: joost
Date: Wed Aug  6 23:08:49 2008
New Revision: 26083

URL: http://www.lyx.org/trac/changeset/26083
Log:
use Inetc plug-in for downloading, which is more stable

Modified:
    lyx-devel/trunk/development/Win32/packaging/installer/setup/install.nsh

Modified: lyx-devel/trunk/development/Win32/packaging/installer/setup/install.nsh
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/development/Win32/packaging/installer/setup/install.nsh?rev=26083
==============================================================================
--- lyx-devel/trunk/development/Win32/packaging/installer/setup/install.nsh (original)
+++ lyx-devel/trunk/development/Win32/packaging/installer/setup/install.nsh Wed Aug  6 23:08:49 2008
&lt; at &gt;&lt; at &gt; -134,7 +134,7 &lt; at &gt;&lt; at &gt;
 
 !macro DOWNLOAD_FILE RET ID FILENAME APPEND
 
-  # Downloads a file using the InetLoad plug-in (HTTP or FTP)
+  # Downloads a file using the Inetc plug-in (HTTP or FTP)
   
   # RET = Return value (OK if succesful)
   # ID = Name of the download in settings.nsh
&lt; at &gt;&lt; at &gt; -142,12 +1</description>
    <dc:creator>joost&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T21:08:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20213">
    <title>r26082 - /lyx-devel/trunk/src/mathed/InsetMathNest.cpp</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20213</link>
    <description>Author: sts
Date: Wed Aug  6 20:44:35 2008
New Revision: 26082

URL: http://www.lyx.org/trac/changeset/26082
Log:
* \xymatrix added to completion (fixing bug 5123)

Modified:
    lyx-devel/trunk/src/mathed/InsetMathNest.cpp

Modified: lyx-devel/trunk/src/mathed/InsetMathNest.cpp
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/mathed/InsetMathNest.cpp?rev=26082
==============================================================================
--- lyx-devel/trunk/src/mathed/InsetMathNest.cpp (original)
+++ lyx-devel/trunk/src/mathed/InsetMathNest.cpp Wed Aug  6 20:44:35 2008
&lt; at &gt;&lt; at &gt; -1834,6 +1834,7 &lt; at &gt;&lt; at &gt;
 globals.push_back(from_ascii("\\alignedat"));
 globals.push_back(from_ascii("\\cases"));
 globals.push_back(from_ascii("\\substack"));
+globals.push_back(from_ascii("\\xymatrix"));
 globals.push_back(from_ascii("\\subarray"));
 globals.push_back(from_ascii("\\array"));
 globals.push_back(from_ascii("\\sqrt"));



</description>
    <dc:creator>sts&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T18:44:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20212">
    <title>r26081 - /lyx-devel/trunk/src/Undo.cpp</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20212</link>
    <description>Author: younes
Date: Wed Aug  6 18:08:50 2008
New Revision: 26081

URL: http://www.lyx.org/trac/changeset/26081
Log:
Fix http://bugzilla.lyx.org/show_bug.cgi?id=5127
A call to updateLabels() was necessary (and safer) in all cases.

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

Modified: lyx-devel/trunk/src/Undo.cpp
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/Undo.cpp?rev=26081
==============================================================================
--- lyx-devel/trunk/src/Undo.cpp (original)
+++ lyx-devel/trunk/src/Undo.cpp Wed Aug  6 18:08:50 2008
&lt; at &gt;&lt; at &gt; -340,7 +340,6 &lt; at &gt;&lt; at &gt;
 
 // This does the actual undo/redo.
 //LYXERR0("undo, performing: " &lt;&lt; undo);
-bool labelsUpdateNeeded = false;
 DocIterator dit = undo.cell.asDocIterator(&amp;buffer_.inset());
 if (undo.isFullBuffer) {
 LASSERT(undo.pars, /**/);
&lt; at &gt;&lt; at &gt; -387,7 +386,6 &lt; at &gt;&lt; at &gt;
 plist.insert(first, undo.pars-&gt;begin(), undo.pars-&gt;end());
 delete undo.pars;
 undo.pars = 0;
-labelsUpdateNeeded = true;
 }
 LASSERT(undo.pars == 0, /**/);
 LASSERT(</description>
    <dc:creator>younes&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T16:08:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20211">
    <title>r26080 - /lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20211</link>
    <description>Author: rgheck
Date: Wed Aug  6 14:59:54 2008
New Revision: 26080

URL: http://www.lyx.org/trac/changeset/26080
Log:
Fix bug 5129.

Modified:
    lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py

Modified: lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py?rev=26080
==============================================================================
--- lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py (original)
+++ lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py Wed Aug  6 14:59:54 2008
&lt; at &gt;&lt; at &gt; -242,6 +242,11 &lt; at &gt;&lt; at &gt;
     return retval
 
 
+#Bug 5022....
+#Might should do latex2ert first, then deal with stuff that DOESN'T
+#end up inside ERT. That routine could be modified so that it returned
+#a list of lines, and we could then skip ERT bits and only deal with
+#the other bits.
 def latex2lyx(data):
     '''Takes a string, possibly multi-line, and returns the result of
     converting LaTeX constructs into LyX constructs. Returns a list of
&lt; at &gt;&lt; at &gt; -355,7 +360,7 &lt; at &gt;&lt; at &gt;
       else:
           # Do th</description>
    <dc:creator>rgheck&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-06T12:59:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20210">
    <title>r26079 - in /lyx-devel/trunk/development/Win32/packaging/...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20210</link>
    <description>Author: uwestoehr
Date: Wed Aug  6 01:51:43 2008
New Revision: 26079

URL: http://www.lyx.org/trac/changeset/26079
Log:
installer: update for LyX 1.6rc1

Modified:
    lyx-devel/trunk/development/Win32/packaging/AltInstaller/ChangeLog.txt
    lyx-devel/trunk/development/Win32/packaging/AltInstaller/LanguageSettings.nsh
    lyx-devel/trunk/development/Win32/packaging/AltInstaller/Settings.nsh

Modified: lyx-devel/trunk/development/Win32/packaging/AltInstaller/ChangeLog.txt
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/development/Win32/packaging/AltInstaller/ChangeLog.txt?rev=26079
==============================================================================
--- lyx-devel/trunk/development/Win32/packaging/AltInstaller/ChangeLog.txt (original)
+++ lyx-devel/trunk/development/Win32/packaging/AltInstaller/ChangeLog.txt Wed Aug  6 01:51:43 2008
&lt; at &gt;&lt; at &gt; -3,7 +3,7 &lt; at &gt;&lt; at &gt;
   (list of current regressions: http://tinyurl.com/yu4the )
   (list of current crashes and critical bugs: http://tinyurl.com/653prg)
 - Ukrainian tr</description>
    <dc:creator>uwestoehr&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-05T23:51:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20209">
    <title>r26078 - /lyx-devel/branches/BRANCH_1_5_X/development/Win...</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20209</link>
    <description>Author: uwestoehr
Date: Wed Aug  6 01:32:13 2008
New Revision: 26078

URL: http://www.lyx.org/trac/changeset/26078
Log:
installer: fix a bug when loading on Ukrainian PC

Modified:
    lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/LanguageSettings.nsh

Modified: lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/LanguageSettings.nsh
URL: http://www.lyx.org/trac/file/lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/LanguageSettings.nsh?rev=26078
==============================================================================
--- lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/LanguageSettings.nsh (original)
+++ lyx-devel/branches/BRANCH_1_5_X/development/Win32/packaging/AltInstaller/LanguageSettings.nsh Wed Aug  6 01:32:13 2008
&lt; at &gt;&lt; at &gt; -222,6 +222,7 &lt; at &gt;&lt; at &gt;
   ${endif}
 
   ${if} ${LangISOCode} = 1058
+   StrCpy ${LangNme} "Ukrainian"
    StrCpy ${LangCdeSys} "uk"
    StrCpy ${LangNmeSys} "Ukrainian"
    StrCpy ${LangSysEnc}</description>
    <dc:creator>uwestoehr&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-05T23:32:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20208">
    <title>r26077 - /lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20208</link>
    <description>Author: uwestoehr
Date: Wed Aug  6 00:37:28 2008
New Revision: 26077

URL: http://www.lyx.org/trac/changeset/26077
Log:
lyx2lyx/lyx_1_6.py: fix reversion of PDF properties

Modified:
    lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py

Modified: lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py?rev=26077
==============================================================================
--- lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py (original)
+++ lyx-devel/trunk/lib/lyx2lyx/lyx_1_6.py Wed Aug  6 00:37:28 2008
&lt; at &gt;&lt; at &gt; -63,6 +63,11 &lt; at &gt;&lt; at &gt;
         return
 
     document.preamble.extend(text)
+
+def insert_to_preamble(index, document, text):
+    """ Insert text to the preamble at a given line"""
+
+    document.preamble.insert(index, text)
 
 # Convert a LyX length into a LaTeX length
 def convert_len(len):
&lt; at &gt;&lt; at &gt; -872,9 +877,12 &lt; at &gt;&lt; at &gt;
                 setupstart = ""
                 setupend = ""
             # write the preamble
-            add_to_preamble(document,
-           </description>
    <dc:creator>uwestoehr&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-05T22:37:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20207">
    <title>r26076 - /lyx-devel/trunk/lib/doc/Customization.lyx</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20207</link>
    <description>Author: rgheck
Date: Tue Aug  5 23:57:22 2008
New Revision: 26076

URL: http://www.lyx.org/trac/changeset/26076
Log:
Update InsetLayout docs.

Modified:
    lyx-devel/trunk/lib/doc/Customization.lyx

Modified: lyx-devel/trunk/lib/doc/Customization.lyx
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/lib/doc/Customization.lyx?rev=26076
==============================================================================
--- lyx-devel/trunk/lib/doc/Customization.lyx (original)
+++ lyx-devel/trunk/lib/doc/Customization.lyx Tue Aug  5 23:57:22 2008
&lt; at &gt;&lt; at &gt; -1,5 +1,5 &lt; at &gt;&lt; at &gt;
-#LyX 1.6.0svn created this file. For more info see http://www.lyx.org/
-\lyxformat 339
+#LyX 1.6.0rc1 created this file. For more info see http://www.lyx.org/
+\lyxformat 340
 \begin_document
 \begin_header
 \textclass scrbook
&lt; at &gt;&lt; at &gt; -11304,6 +11304,11 &lt; at &gt;&lt; at &gt;
 \end_inset
 
 'ed.
+ (Note: This is 
+\emph on
+not
+\emph default
+ whether this command should itself be protected.)
 \end_layout
 
 \begin_layout Description
&lt; at &gt;&lt; at &gt; -11922,6 +11927,7 &lt; at &gt;&lt; at &gt;
 \end_layout
 
 \begin_</description>
    <dc:creator>rgheck&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-05T21:57:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.lyx.cvs/20206">
    <title>r26075 - /lyx-devel/trunk/lib/layouts/stdinsets.inc</title>
    <link>http://permalink.gmane.org/gmane.editors.lyx.cvs/20206</link>
    <description>Author: rgheck
Date: Tue Aug  5 23:35:40 2008
New Revision: 26075

URL: http://www.lyx.org/trac/changeset/26075
Log:
Whitespace.

Modified:
    lyx-devel/trunk/lib/layouts/stdinsets.inc

Modified: lyx-devel/trunk/lib/layouts/stdinsets.inc
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/lib/layouts/stdinsets.inc?rev=26075
==============================================================================
--- lyx-devel/trunk/lib/layouts/stdinsets.inc (original)
+++ lyx-devel/trunk/lib/layouts/stdinsets.inc Tue Aug  5 23:35:40 2008
&lt; at &gt;&lt; at &gt; -261,7 +261,7 &lt; at &gt;&lt; at &gt;
   Color               urllabel
   Size                Small
 EndFont
-Requires      url
+Requires              url
 End
 
 InsetLayout OptArg



</description>
    <dc:creator>rgheck&lt; at &gt;lyx.org</dc:creator>
    <dc:date>2008-08-05T21:35:43</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.editors.lyx.cvs">
    <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.cvs</link>
  </textinput>
</rdf:RDF>
