Re: RC2 coming soon

2007-07-02 Thread Jean-Marc Lasgouttes
 José == José Matos [EMAIL PROTECTED] writes:

José On Friday 29 June 2007 12:06:42 Georg Baum wrote:
 Perfect!
 
 
 Georg

José +1

I applied it.

JMarc


Re: RC2 coming soon

2007-07-02 Thread Jean-Marc Lasgouttes
> "José" == José Matos <[EMAIL PROTECTED]> writes:

José> On Friday 29 June 2007 12:06:42 Georg Baum wrote:
>> Perfect!
>> 
>> 
>> Georg

José> +1

I applied it.

JMarc


Re: RC2 coming soon

2007-06-29 Thread Georg Baum
Jean-Marc Lasgouttes wrote:

 I thought about it too, but it means that a textclass that uses
 \caption for something else will get to use the caption inset. Not a
 big problem probably. I'll have a look at this solution.

Well, if the command is named \caption then it will be some sort of caption.
I don't see any problem if the caption inset is used in this case. After
all, if the command does for example have a different number of arguments,
then tex2lyx would not translate it.
There is one small chance for something going wrong: If the document class
does not have the caption style not even in 1.4, and the .tex contains a
\caption command, then an invalid file will be generated. But that is
really a small problem IMO.


Georg



Re: RC2 coming soon

2007-06-29 Thread Jean-Marc Lasgouttes
 Georg == Georg Baum [EMAIL PROTECTED] writes:

Georg Well, if the command is named \caption then it will be some
Georg sort of caption. I don't see any problem if the caption inset
Georg is used in this case. 

Here is what I came up with. Since the code in output_command_layout
is a bit complicated to my taste (to make a specialized version), I
decided to create a fake layout and use it directly. The code in
Layout.* is necessary because the relevant members are private. I try
to write it to be as unintrusive as possible.

Is it better?

JMarc

Index: src/Layout.h
===
--- src/Layout.h	(révision 18938)
+++ src/Layout.h	(copie de travail)
@@ -338,6 +338,11 @@ public:
 	/// Depth of XML command
 	int commanddepth;
 
+	/// Return a pointer on a new layout suitable to describe a caption.
+	/// FIXME: remove this eventually. This is only for tex2lyx
+	/// until it has proper support for the caption inset (JMarc)
+	static Layout * forCaption();
+
 private:
 	/// Name of the layout/paragraph environment
 	std::string name_;
Index: src/Layout.cpp
===
--- src/Layout.cpp	(révision 18938)
+++ src/Layout.cpp	(copie de travail)
@@ -820,5 +820,16 @@ string const  Layout::depends_on() cons
 	return depends_on_;
 }
 
+Layout * Layout::forCaption()
+{
+	Layout * lay = new Layout();
+	lay-name_ = Caption;
+	lay-latexname_ = caption;
+	lay-latextype = LATEX_COMMAND;
+	lay-optionalargs = 1;
+	return lay;
+}
+
+
 
 } // namespace lyx
Index: src/tex2lyx/tex2lyx.cpp
===
--- src/tex2lyx/tex2lyx.cpp	(révision 18938)
+++ src/tex2lyx/tex2lyx.cpp	(copie de travail)
@@ -67,6 +67,7 @@ using support::isFileReadable;
 
 namespace fs = boost::filesystem;
 
+Layout_ptr captionlayout;
 
 // Hacks to allow the thing to link in the lyxlayout stuff
 LyXErr lyxerr(std::cerr.rdbuf());
@@ -426,6 +427,7 @@ void tex2lyx(std::istream is, std::ostr
 
 	stringstream ss;
 	TextClass textclass = parse_preamble(p, ss, documentclass);
+	captionlayout = Layout_ptr(Layout::forCaption());
 
 	active_environments.push_back(document);
 	Context context(true, textclass);
Index: src/tex2lyx/tex2lyx.h
===
--- src/tex2lyx/tex2lyx.h	(révision 18938)
+++ src/tex2lyx/tex2lyx.h	(copie de travail)
@@ -33,7 +33,7 @@ TextClass const parse_preamble(Parser  
 
 /// used packages with options
 extern std::mapstd::string, std::vectorstd::string  used_packages;
-
+extern Layout_ptr captionlayout;
 
 /// in text.cpp
 std::string translate_len(std::string const );
Index: src/tex2lyx/text.cpp
===
--- src/tex2lyx/text.cpp	(révision 18938)
+++ src/tex2lyx/text.cpp	(copie de travail)
@@ -1514,6 +1514,15 @@ void parse_text(Parser  p, ostream  os
 			p.skip_spaces();
 		}
 
+		// Special handling for \caption
+		// FIXME: remove this when InsetCaption is supported.
+		else if (context.new_layout_allowed 
+			 t.cs() == captionlayout-latexname()) {
+			output_command_layout(os, p, outer, context, 
+	  captionlayout);
+			p.skip_spaces();
+		}
+
 		else if (t.cs() == includegraphics) {
 			bool const clip = p.next_token().asInput() == *;
 			if (clip)


Re: RC2 coming soon

2007-06-29 Thread José Matos
On Friday 29 June 2007 12:06:42 Georg Baum wrote:
 Perfect!


 Georg

+1

-- 
José Abílio


Re: RC2 coming soon

2007-06-29 Thread Georg Baum
Jean-Marc Lasgouttes wrote:

 Here is what I came up with. Since the code in output_command_layout
 is a bit complicated to my taste (to make a specialized version), I
 decided to create a fake layout and use it directly. The code in
 Layout.* is necessary because the relevant members are private. I try
 to write it to be as unintrusive as possible.
 
 Is it better?

Perfect!


Georg



Re: RC2 coming soon

2007-06-29 Thread Georg Baum
Jean-Marc Lasgouttes wrote:

> I thought about it too, but it means that a textclass that uses
> \caption for something else will get to use the caption inset. Not a
> big problem probably. I'll have a look at this solution.

Well, if the command is named \caption then it will be some sort of caption.
I don't see any problem if the caption inset is used in this case. After
all, if the command does for example have a different number of arguments,
then tex2lyx would not translate it.
There is one small chance for something going wrong: If the document class
does not have the caption style not even in 1.4, and the .tex contains a
\caption command, then an invalid file will be generated. But that is
really a small problem IMO.


Georg



Re: RC2 coming soon

2007-06-29 Thread Jean-Marc Lasgouttes
> "Georg" == Georg Baum <[EMAIL PROTECTED]> writes:

Georg> Well, if the command is named \caption then it will be some
Georg> sort of caption. I don't see any problem if the caption inset
Georg> is used in this case. 

Here is what I came up with. Since the code in output_command_layout
is a bit complicated to my taste (to make a specialized version), I
decided to create a fake layout and use it directly. The code in
Layout.* is necessary because the relevant members are private. I try
to write it to be as unintrusive as possible.

Is it better?

JMarc

Index: src/Layout.h
===
--- src/Layout.h	(révision 18938)
+++ src/Layout.h	(copie de travail)
@@ -338,6 +338,11 @@ public:
 	/// Depth of XML command
 	int commanddepth;
 
+	/// Return a pointer on a new layout suitable to describe a caption.
+	/// FIXME: remove this eventually. This is only for tex2lyx
+	/// until it has proper support for the caption inset (JMarc)
+	static Layout * forCaption();
+
 private:
 	/// Name of the layout/paragraph environment
 	std::string name_;
Index: src/Layout.cpp
===
--- src/Layout.cpp	(révision 18938)
+++ src/Layout.cpp	(copie de travail)
@@ -820,5 +820,16 @@ string const & Layout::depends_on() cons
 	return depends_on_;
 }
 
+Layout * Layout::forCaption()
+{
+	Layout * lay = new Layout();
+	lay->name_ = "Caption";
+	lay->latexname_ = "caption";
+	lay->latextype = LATEX_COMMAND;
+	lay->optionalargs = 1;
+	return lay;
+}
+
+
 
 } // namespace lyx
Index: src/tex2lyx/tex2lyx.cpp
===
--- src/tex2lyx/tex2lyx.cpp	(révision 18938)
+++ src/tex2lyx/tex2lyx.cpp	(copie de travail)
@@ -67,6 +67,7 @@ using support::isFileReadable;
 
 namespace fs = boost::filesystem;
 
+Layout_ptr captionlayout;
 
 // Hacks to allow the thing to link in the lyxlayout stuff
 LyXErr lyxerr(std::cerr.rdbuf());
@@ -426,6 +427,7 @@ void tex2lyx(std::istream , std::ostr
 
 	stringstream ss;
 	TextClass textclass = parse_preamble(p, ss, documentclass);
+	captionlayout = Layout_ptr(Layout::forCaption());
 
 	active_environments.push_back("document");
 	Context context(true, textclass);
Index: src/tex2lyx/tex2lyx.h
===
--- src/tex2lyx/tex2lyx.h	(révision 18938)
+++ src/tex2lyx/tex2lyx.h	(copie de travail)
@@ -33,7 +33,7 @@ TextClass const parse_preamble(Parser & 
 
 /// used packages with options
 extern std::map used_packages;
-
+extern Layout_ptr captionlayout;
 
 /// in text.cpp
 std::string translate_len(std::string const &);
Index: src/tex2lyx/text.cpp
===
--- src/tex2lyx/text.cpp	(révision 18938)
+++ src/tex2lyx/text.cpp	(copie de travail)
@@ -1514,6 +1514,15 @@ void parse_text(Parser & p, ostream & os
 			p.skip_spaces();
 		}
 
+		// Special handling for \caption
+		// FIXME: remove this when InsetCaption is supported.
+		else if (context.new_layout_allowed &&
+			 t.cs() == captionlayout->latexname()) {
+			output_command_layout(os, p, outer, context, 
+	  captionlayout);
+			p.skip_spaces();
+		}
+
 		else if (t.cs() == "includegraphics") {
 			bool const clip = p.next_token().asInput() == "*";
 			if (clip)


Re: RC2 coming soon

2007-06-29 Thread José Matos
On Friday 29 June 2007 12:06:42 Georg Baum wrote:
> Perfect!
>
>
> Georg

+1

-- 
José Abílio


Re: RC2 coming soon

2007-06-29 Thread Georg Baum
Jean-Marc Lasgouttes wrote:

> Here is what I came up with. Since the code in output_command_layout
> is a bit complicated to my taste (to make a specialized version), I
> decided to create a fake layout and use it directly. The code in
> Layout.* is necessary because the relevant members are private. I try
> to write it to be as unintrusive as possible.
> 
> Is it better?

Perfect!


Georg



Re: RC2 coming soon

2007-06-28 Thread Jean-Marc Lasgouttes
 José == José Matos [EMAIL PROTECTED] writes:

José If it works go on. :-)

This would be the following patch. If it does work, I will add the
same stub to the few classes that do not use stdlayouts.inc.

Please test.

JMarc

Index: lib/layouts/stdlayouts.inc
===
--- lib/layouts/stdlayouts.inc	(révision 18926)
+++ lib/layouts/stdlayouts.inc	(copie de travail)
@@ -78,3 +78,14 @@ Style --Separator--
 	  Color   Blue
 	EndFont
 End
+
+# This Style is only needed to make tex2lyx convert the \caption macro
+# to Caption style, so that lyx2lyx can later convert that to the new
+# caption inset. Please remove it when tex2lyx has been upgraded to
+# format = 257 and properly supports the caption inset. (JMarc)
+Style Caption
+	ObsoletedBy   Standard
+	LatexType Command
+	LatexName caption
+	OptionalArgs  1
+End


Re: RC2 coming soon

2007-06-28 Thread Jean-Marc Lasgouttes
 Jean-Marc == Jean-Marc Lasgouttes [EMAIL PROTECTED] writes:

 José == José Matos [EMAIL PROTECTED] writes:
José If it works go on. :-)

Jean-Marc This would be the following patch. If it does work, I will
Jean-Marc add the same stub to the few classes that do not use
Jean-Marc stdlayouts.inc.

The problem I can see with the patch is that it conflicts with
layout2layout which removes Caption styles. A possibility would be to
restore our own layout files to their Format 3 status, and modify
layout2layout to insert the new Caption definition from the patch
instead of removing all traces of captions.

Georg, I'd appreciate to hear your views on that.

JMarc



Re: RC2 coming soon

2007-06-28 Thread Georg Baum
Jean-Marc Lasgouttes wrote:

 Jean-Marc == Jean-Marc Lasgouttes
 [EMAIL PROTECTED] writes:
 
 José == José Matos [EMAIL PROTECTED] writes:
 José If it works go on. :-)
 
 Jean-Marc This would be the following patch. If it does work, I will
 Jean-Marc add the same stub to the few classes that do not use
 Jean-Marc stdlayouts.inc.
 
 The problem I can see with the patch is that it conflicts with
 layout2layout which removes Caption styles. A possibility would be to
 restore our own layout files to their Format 3 status, and modify
 layout2layout to insert the new Caption definition from the patch
 instead of removing all traces of captions.
 
 Georg, I'd appreciate to hear your views on that.

Sorry, but I don't like it :-(
I would prefer to get rid of the caption inset completely and switch back to
the layout based solution. Since I know that that won't happen my second
choice is to modify Hangzai's patch so that it does not output a caption
inset, but a caption layout. In contrast to the layout file solution it
does not have any side effects, and I believe that it would be very easy to
do.


Georg



Re: RC2 coming soon

2007-06-28 Thread Jean-Marc Lasgouttes
 Georg == Georg Baum [EMAIL PROTECTED] writes:

Georg Sorry, but I don't like it :-( I would prefer to get rid of the
Georg caption inset completely and switch back to the layout based
Georg solution. 

I would prefer that too...

Georg Since I know that that won't happen my second choice is to
Georg modify Hangzai's patch so that it does not output a caption
Georg inset, but a caption layout. In contrast to the layout file
Georg solution it does not have any side effects, and I believe that
Georg it would be very easy to do.

I thought about it too, but it means that a textclass that uses
\caption for something else will get to use the caption inset. Not a
big problem probably. I'll have a look at this solution.

JMarc


Re: RC2 coming soon

2007-06-28 Thread Jean-Marc Lasgouttes
> "José" == José Matos <[EMAIL PROTECTED]> writes:

José> If it works go on. :-)

This would be the following patch. If it does work, I will add the
same stub to the few classes that do not use stdlayouts.inc.

Please test.

JMarc

Index: lib/layouts/stdlayouts.inc
===
--- lib/layouts/stdlayouts.inc	(révision 18926)
+++ lib/layouts/stdlayouts.inc	(copie de travail)
@@ -78,3 +78,14 @@ Style --Separator--
 	  Color   Blue
 	EndFont
 End
+
+# This Style is only needed to make tex2lyx convert the \caption macro
+# to Caption style, so that lyx2lyx can later convert that to the new
+# caption inset. Please remove it when tex2lyx has been upgraded to
+# format >= 257 and properly supports the caption inset. (JMarc)
+Style Caption
+	ObsoletedBy   Standard
+	LatexType Command
+	LatexName caption
+	OptionalArgs  1
+End


Re: RC2 coming soon

2007-06-28 Thread Jean-Marc Lasgouttes
> "Jean-Marc" == Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:

> "José" == José Matos <[EMAIL PROTECTED]> writes:
José> If it works go on. :-)

Jean-Marc> This would be the following patch. If it does work, I will
Jean-Marc> add the same stub to the few classes that do not use
Jean-Marc> stdlayouts.inc.

The problem I can see with the patch is that it conflicts with
layout2layout which removes Caption styles. A possibility would be to
restore our own layout files to their Format 3 status, and modify
layout2layout to insert the new Caption definition from the patch
instead of removing all traces of captions.

Georg, I'd appreciate to hear your views on that.

JMarc



Re: RC2 coming soon

2007-06-28 Thread Georg Baum
Jean-Marc Lasgouttes wrote:

>> "Jean-Marc" == Jean-Marc Lasgouttes
>> <[EMAIL PROTECTED]> writes:
> 
>> "José" == José Matos <[EMAIL PROTECTED]> writes:
> José> If it works go on. :-)
> 
> Jean-Marc> This would be the following patch. If it does work, I will
> Jean-Marc> add the same stub to the few classes that do not use
> Jean-Marc> stdlayouts.inc.
> 
> The problem I can see with the patch is that it conflicts with
> layout2layout which removes Caption styles. A possibility would be to
> restore our own layout files to their Format 3 status, and modify
> layout2layout to insert the new Caption definition from the patch
> instead of removing all traces of captions.
> 
> Georg, I'd appreciate to hear your views on that.

Sorry, but I don't like it :-(
I would prefer to get rid of the caption inset completely and switch back to
the layout based solution. Since I know that that won't happen my second
choice is to modify Hangzai's patch so that it does not output a caption
inset, but a caption layout. In contrast to the layout file solution it
does not have any side effects, and I believe that it would be very easy to
do.


Georg



Re: RC2 coming soon

2007-06-28 Thread Jean-Marc Lasgouttes
> "Georg" == Georg Baum <[EMAIL PROTECTED]> writes:

Georg> Sorry, but I don't like it :-( I would prefer to get rid of the
Georg> caption inset completely and switch back to the layout based
Georg> solution. 

I would prefer that too...

Georg> Since I know that that won't happen my second choice is to
Georg> modify Hangzai's patch so that it does not output a caption
Georg> inset, but a caption layout. In contrast to the layout file
Georg> solution it does not have any side effects, and I believe that
Georg> it would be very easy to do.

I thought about it too, but it means that a textclass that uses
\caption for something else will get to use the caption inset. Not a
big problem probably. I'll have a look at this solution.

JMarc


Re: RC2 coming soon

2007-06-27 Thread Jean-Marc Lasgouttes
 José == José Matos [EMAIL PROTECTED] writes:

José On Tuesday 26 June 2007 14:26:13 Leuven, E. wrote:
   Annoying? Yes. Should be fixed? Yes. Unusable? No. It will
 simply  translate captions to ERT, that is all.
 
 wan't there a patch by hangzai ?

José   I have reviewed that thread and there was a dialog going on
José between him and Georg.

José   Also as far as I understood, the fix can be committed after
José 1.5.0. This is a sensitive area and I want to play safe here. If
José for any reason I am mistaken please let me know. :-)

I wonder whether we could add an entry like
  Style Caption
LatexName caption
ObsoletedBy Standard
  End
to our layouts. This would be invisible from inside LyX, but tex2lyx
would see it and translated \caption to Caption layout. Then lyx2lyx
  would translate that to a proper caption inset.

JMarc


Re: RC2 coming soon

2007-06-27 Thread José Matos
On Wednesday 27 June 2007 08:32:37 Jean-Marc Lasgouttes wrote:

 I wonder whether we could add an entry like
   Style Caption
 LatexName caption
 ObsoletedBy Standard
   End
 to our layouts. This would be invisible from inside LyX, but tex2lyx
 would see it and translated \caption to Caption layout. Then lyx2lyx
   would translate that to a proper caption inset.

 JMarc

If it works go on. :-)

-- 
José Abílio


Re: RC2 coming soon

2007-06-27 Thread Jean-Marc Lasgouttes
> "José" == José Matos <[EMAIL PROTECTED]> writes:

José> On Tuesday 26 June 2007 14:26:13 Leuven, E. wrote:
>> > > Annoying? Yes. Should be fixed? Yes. Unusable? No. It will
>> simply > translate captions to ERT, that is all.
>> 
>> wan't there a patch by hangzai ?

José>   I have reviewed that thread and there was a dialog going on
José> between him and Georg.

José>   Also as far as I understood, the fix can be committed after
José> 1.5.0. This is a sensitive area and I want to play safe here. If
José> for any reason I am mistaken please let me know. :-)

I wonder whether we could add an entry like
  Style Caption
LatexName caption
ObsoletedBy Standard
  End
to our layouts. This would be invisible from inside LyX, but tex2lyx
would see it and translated \caption to Caption layout. Then lyx2lyx
  would translate that to a proper caption inset.

JMarc


Re: RC2 coming soon

2007-06-27 Thread José Matos
On Wednesday 27 June 2007 08:32:37 Jean-Marc Lasgouttes wrote:
>
> I wonder whether we could add an entry like
>   Style Caption
> LatexName caption
> ObsoletedBy Standard
>   End
> to our layouts. This would be invisible from inside LyX, but tex2lyx
> would see it and translated \caption to Caption layout. Then lyx2lyx
>   would translate that to a proper caption inset.
>
> JMarc

If it works go on. :-)

-- 
José Abílio


Re: RC2 coming soon

2007-06-26 Thread Abdelrazak Younes

Bo Peng wrote:
PS: The plan is to release RC2 in a couple of days as soon as the 
remaining

patches are committed, and this should happen before Tuesday night.


What is the status now?


Let's just release 1.5.0.

Abdel.



Re: RC2 coming soon

2007-06-26 Thread Uwe Stöhr

What is the status now?

 Let's just release 1.5.0.

No, we need an RC2 to test if our fixes to some crash bugs are really fixes. But I also think that 
RC2 should be released right now (after Jürgen's current fixes are in (bug 3915, 3916, and 2753)).


regards Uwe


Re: RC2 coming soon

2007-06-26 Thread christian . ridderstrom

On Tue, 26 Jun 2007, Abdelrazak Younes wrote:


Bo Peng wrote:
  PS: The plan is to release RC2 in a couple of days as soon as the 
  remaining

  patches are committed, and this should happen before Tuesday night.

 What is the status now?


Let's just release 1.5.0.


How many serious bugs are left? Glancing at the wiki page, I see the 
following:

* 4 critical issues
* 32 regression issues
* 14 major issues
* 32 other issues

Any comments on these?

/Christian

Critical issues:

3537cri P2  PC  [EMAIL PROTECTED]   NEW
lyx-1.5.0beta2 dumps core on freebsd-6.2 when it tries to...

3561cri P2  Oth [EMAIL PROTECTED]   NEW
crash when changing document encoding

3898cri P2  PC  [EMAIL PROTECTED]   UNCO
LyX crashes with UTF-8 input

3916cri P2  Oth [EMAIL PROTECTED]   NEW
crash by using backslashes in print dialog paths



Regression issues

2945nor P2  All [EMAIL PROTECTED]   NEW
breaking environment and wrong conversion of vertical spa...

2529nor P2  Sun [EMAIL PROTECTED]   NEW
Spellcheck does not allow anymore to edit file on the fly

2775nor P2  Oth [EMAIL PROTECTED]   NEW
Reimplement error-next

3417min P2  Oth [EMAIL PROTECTED]   NEW
documents with diaeresis (0x00a8) cannot be exported to L...

3521nor P2  PC  [EMAIL PROTECTED]   NEW
Preamble of Layout ignored if it contains german umlaut

3553maj P2  PC  [EMAIL PROTECTED]   NEW
Wrong figure files included in the final pdf manuscript w...

3853nor P2  Oth [EMAIL PROTECTED]   NEW
Selection is overwritten by inset background

3876nor P2  Oth [EMAIL PROTECTED]   NEW
highlighting text not correctly possible

3877maj P2  Oth [EMAIL PROTECTED]   NEW
Highlighting text slows down LyX extremely

3886nor P2  PC  [EMAIL PROTECTED]   NEW
Cut/paste bug with environment depths in 1.5svn

2279nor P2  Oth [EMAIL PROTECTED]   NEW
Math background user color does not work

3069nor P2  Mac [EMAIL PROTECTED]   NEW
Dismissing dialogs sometimes leaves menu selected

3203maj P2  Oth [EMAIL PROTECTED]   NEW
not possible to import non-utf8 text files

3317min P2  PC  [EMAIL PROTECTED]   NEW
X-Icons for LyX-windows

3370nor P2  Mac [EMAIL PROTECTED]   NEW
Keyboard navigation of dialogs on Mac

3563nor P2  Oth [EMAIL PROTECTED]   NEW
wrong selection in cross-reference dialog after scrolling

3675nor P2  All [EMAIL PROTECTED]   NEW
Insert graphics multiple insertions

3819nor P2  PC  [EMAIL PROTECTED]   NEW
LyX fails to export with an XFig insert

3889nor P2  All [EMAIL PROTECTED]   NEW
RTL text incorrectly Justified

3907maj P2  PC  [EMAIL PROTECTED]   NEW
File - Open dialog needs many seconds before it opens

2315min P2  Oth [EMAIL PROTECTED]   NEW
text - math conversion does not work anymore

2541nor P2  Oth [EMAIL PROTECTED]   NEW
cursor couldn't be set everywhere to a formula

2552nor P2  Oth [EMAIL PROTECTED]   NEW
creation of eqnarray environment doesn't recognize existi...

2556maj P2  Oth [EMAIL PROTECTED]   NEW
not possible to delete a label of a formula

3582nor P2  Oth [EMAIL PROTECTED]   NEW
Text Inset Display Bug

3750maj P2  All [EMAIL PROTECTED]   NEW
tex2lyx does not recognize \caption anymore

3155nor P2  All [EMAIL PROTECTED]   NEW
No visual table size selection on the Insert Table dialog

3165nor P2  Mac [EMAIL PROTECTED]   NEW
Menu bar disappears on Mac when dialogs appear

3291maj P2  PC  [EMAIL PROTECTED]   NEW
dead keys do not work with LANG=C

2218nor P2  PC  [EMAIL PROTECTED]   REOP
Spellchecker doesn't pop up dialogue window for the first...

1814nor P2  Oth [EMAIL PROTECTED]   REOP
scrollbar borkage with document containing long insets

2594min P2  Oth [EMAIL PROTECTED]   REOP
commands in mathed should appear upright


Major issues

3909maj P2  PC  [EMAIL PROTECTED]   UNCO
LyX does not print files from the Help menu

3920maj P3  Mac [EMAIL PROTECTED]   UNCO
Slowly at text input time

3404maj P2  Oth [EMAIL PROTECTED]   NEW
lyx2lyx adds too many \end_layout tokens

2753maj 

Re: RC2 coming soon

2007-06-26 Thread christian . ridderstrom

On Tue, 26 Jun 2007, Uwe Stöhr wrote:


 What is the status now?

 Let's just release 1.5.0.


No, we need an RC2 to test if our fixes to some crash bugs are really 
fixes. But I also think that RC2 should be released right now (after 
Jürgen's current fixes are in (bug 3915, 3916, and 2753)).


I agree (and I thought this was the plan)

/C

--
Christian Ridderström, +46-8-768 39 44   http://www.md.kth.se/~chr

Re: RC2 coming soon

2007-06-26 Thread José Matos
On Tuesday 26 June 2007 11:07:17 Uwe Stöhr wrote:
 No, we need an RC2 to test if our fixes to some crash bugs are really
 fixes. But I also think that RC2 should be released right now (after
 Jürgen's current fixes are in (bug 3915, 3916, and 2753)).

  I agree. I have committed the bugfix to 3313. So my list is now empty. :-)

 regards Uwe

-- 
José Abílio


Re: RC2 coming soon

2007-06-26 Thread Bo Peng

How many serious bugs are left? Glancing at the wiki page, I see the
following:
* 4 critical issues
* 32 regression issues
* 14 major issues
* 32 other issues

Any comments on these?


I guess Jose can look through the list and identify must-fix ones so
that people can have a look. If these bugs can not be fixed now, at
least some temporary patches can be applied to avoid crash.

I personally think RC2 can be released now and there is no real
stopper for 1.5.0.

Cheers,
Bo


Re: RC2 coming soon

2007-06-26 Thread José Matos
On Saturday 16 June 2007 18:06:50 Georg Baum wrote:
 Am Samstag, 16. Juni 2007 16:12 schrieb Uwe Stöhr:
   Is there anything else that I am missing before RC2?
 
  This bug is in my opinion a blocker because it makes tex2lyx nearly
  unusable:
  http://bugzilla.lyx.org/show_bug.cgi?id=3750

 Annoying? Yes. Should be fixed? Yes. Unusable? No. It will simply translate
 captions to ERT, that is all.

  I agree.

 Georg

-- 
José Abílio


RE: RC2 coming soon

2007-06-26 Thread Leuven, E.
On Saturday 16 June 2007 18:06:50 Georg Baum wrote:
 Am Samstag, 16. Juni 2007 16:12 schrieb Uwe Stöhr:
   Is there anything else that I am missing before RC2?
 
  This bug is in my opinion a blocker because it makes tex2lyx nearly
  unusable:
  http://bugzilla.lyx.org/show_bug.cgi?id=3750

 Annoying? Yes. Should be fixed? Yes. Unusable? No. It will simply translate
 captions to ERT, that is all.


wan't there a patch by hangzai ?


Re: RC2 coming soon

2007-06-26 Thread José Matos
On Tuesday 26 June 2007 14:26:13 Leuven, E. wrote:
 
  Annoying? Yes. Should be fixed? Yes. Unusable? No. It will simply
  translate captions to ERT, that is all.

 wan't there a patch by hangzai ?

  I have reviewed that thread and there was a dialog going on between him and 
Georg.

  Also as far as I understood, the fix can be committed after 1.5.0. This is a 
sensitive area and I want to play safe here. If for any reason I am mistaken 
please let me know. :-)

-- 
José Abílio


RE: RC2 coming soon

2007-06-26 Thread Leuven, E.
  I have reviewed that thread and there was a dialog going on between him and 
 Georg.

  Also as far as I understood, the fix can be committed after 1.5.0. This is a
 sensitive area and I want to play safe here. If for any reason I am mistaken
 please let me know. :-)

i guess this one's for georg...


Re: RC2 coming soon

2007-06-26 Thread Enrico Forestieri
On Tue, Jun 26, 2007 at 02:18:37PM +0100, José Matos wrote:

 On Tuesday 26 June 2007 11:07:17 Uwe Stöhr wrote:
  No, we need an RC2 to test if our fixes to some crash bugs are really
  fixes. But I also think that RC2 should be released right now (after
  Jürgen's current fixes are in (bug 3915, 3916, and 2753)).
 
   I agree. I have committed the bugfix to 3313. So my list is now empty. :-)

Please consider also bug 3904. This is a show stopper on systems
whose locale is not utf8 and the tempdir contains non-ascii chars.
For sure this affects Windows systems with a Portuguese locale and
maybe others. The patch is pretty safe.

-- 
Enrico


Re: RC2 coming soon

2007-06-26 Thread José Matos
On Tuesday 26 June 2007 14:59:58 Enrico Forestieri wrote:
 Please consider also bug 3904. This is a show stopper on systems
 whose locale is not utf8 and the tempdir contains non-ascii chars.
 For sure this affects Windows systems with a Portuguese locale and
 maybe others. The patch is pretty safe.

  I care about Portuguese, I don't care about Windows. :-)

  I had reviewed the patch. If you think it is safe (and since you have tested 
it) commit it.

 --
 Enrico

-- 
José Abílio


Re: RC2 coming soon

2007-06-26 Thread Enrico Forestieri
On Tue, Jun 26, 2007 at 03:04:31PM +0100, José Matos wrote:

 On Tuesday 26 June 2007 14:59:58 Enrico Forestieri wrote:
  Please consider also bug 3904. This is a show stopper on systems
  whose locale is not utf8 and the tempdir contains non-ascii chars.
  For sure this affects Windows systems with a Portuguese locale and
  maybe others. The patch is pretty safe.
 
   I care about Portuguese, I don't care about Windows. :-)

I would have said the same 3 or 4 years ago ;-)

   I had reviewed the patch. If you think it is safe (and since you have tested
 it) commit it.

Done.

-- 
Enrico


Re: RC2 coming soon

2007-06-26 Thread Abdelrazak Younes

Bo Peng wrote:
PS: The plan is to release RC2 in a couple of days as soon as the 
remaining

patches are committed, and this should happen before Tuesday night.


What is the status now?


Let's just release 1.5.0.

Abdel.



Re: RC2 coming soon

2007-06-26 Thread Uwe Stöhr

>>What is the status now?
>
> Let's just release 1.5.0.

No, we need an RC2 to test if our fixes to some crash bugs are really fixes. But I also think that 
RC2 should be released right now (after Jürgen's current fixes are in (bug 3915, 3916, and 2753)).


regards Uwe


Re: RC2 coming soon

2007-06-26 Thread christian . ridderstrom

On Tue, 26 Jun 2007, Abdelrazak Younes wrote:


Bo Peng wrote:
>  PS: The plan is to release RC2 in a couple of days as soon as the 
>  remaining

>  patches are committed, and this should happen before Tuesday night.

 What is the status now?


Let's just release 1.5.0.


How many serious bugs are left? Glancing at the wiki page, I see the 
following:

* 4 critical issues
* 32 regression issues
* 14 major issues
* 32 other issues

Any comments on these?

/Christian

Critical issues:

3537cri P2  PC  [EMAIL PROTECTED]   NEW
lyx-1.5.0beta2 dumps core on freebsd-6.2 when it tries to...

3561cri P2  Oth [EMAIL PROTECTED]   NEW
crash when changing document encoding

3898cri P2  PC  [EMAIL PROTECTED]   UNCO
LyX crashes with UTF-8 input

3916cri P2  Oth [EMAIL PROTECTED]   NEW
crash by using backslashes in print dialog paths



Regression issues

2945nor P2  All [EMAIL PROTECTED]   NEW
breaking environment and wrong conversion of vertical spa...

2529nor P2  Sun [EMAIL PROTECTED]   NEW
Spellcheck does not allow anymore to edit file on the fly

2775nor P2  Oth [EMAIL PROTECTED]   NEW
Reimplement error-next

3417min P2  Oth [EMAIL PROTECTED]   NEW
documents with diaeresis (0x00a8) cannot be exported to L...

3521nor P2  PC  [EMAIL PROTECTED]   NEW
Preamble of Layout ignored if it contains german umlaut

3553maj P2  PC  [EMAIL PROTECTED]   NEW
Wrong figure files included in the final pdf manuscript w...

3853nor P2  Oth [EMAIL PROTECTED]   NEW
Selection is overwritten by inset background

3876nor P2  Oth [EMAIL PROTECTED]   NEW
highlighting text not correctly possible

3877maj P2  Oth [EMAIL PROTECTED]   NEW
Highlighting text slows down LyX extremely

3886nor P2  PC  [EMAIL PROTECTED]   NEW
Cut/paste bug with environment depths in 1.5svn

2279nor P2  Oth [EMAIL PROTECTED]   NEW
Math background user color does not work

3069nor P2  Mac [EMAIL PROTECTED]   NEW
Dismissing dialogs sometimes leaves menu selected

3203maj P2  Oth [EMAIL PROTECTED]   NEW
not possible to import non-utf8 text files

3317min P2  PC  [EMAIL PROTECTED]   NEW
X-Icons for LyX-windows

3370nor P2  Mac [EMAIL PROTECTED]   NEW
Keyboard navigation of dialogs on Mac

3563nor P2  Oth [EMAIL PROTECTED]   NEW
wrong selection in cross-reference dialog after scrolling

3675nor P2  All [EMAIL PROTECTED]   NEW
Insert graphics multiple insertions

3819nor P2  PC  [EMAIL PROTECTED]   NEW
LyX fails to export with an XFig insert

3889nor P2  All [EMAIL PROTECTED]   NEW
RTL text incorrectly Justified

3907maj P2  PC  [EMAIL PROTECTED]   NEW
File -> Open dialog needs many seconds before it opens

2315min P2  Oth [EMAIL PROTECTED]   NEW
text -> math conversion does not work anymore

2541nor P2  Oth [EMAIL PROTECTED]   NEW
cursor couldn't be set everywhere to a formula

2552nor P2  Oth [EMAIL PROTECTED]   NEW
creation of eqnarray environment doesn't recognize existi...

2556maj P2  Oth [EMAIL PROTECTED]   NEW
not possible to delete a label of a formula

3582nor P2  Oth [EMAIL PROTECTED]   NEW
Text Inset Display Bug

3750maj P2  All [EMAIL PROTECTED]   NEW
tex2lyx does not recognize \caption anymore

3155nor P2  All [EMAIL PROTECTED]   NEW
No visual table size selection on the "Insert Table" dialog

3165nor P2  Mac [EMAIL PROTECTED]   NEW
Menu bar disappears on Mac when dialogs appear

3291maj P2  PC  [EMAIL PROTECTED]   NEW
dead keys do not work with LANG=C

2218nor P2  PC  [EMAIL PROTECTED]   REOP
Spellchecker doesn't pop up dialogue window for the first...

1814nor P2  Oth [EMAIL PROTECTED]   REOP
scrollbar borkage with document containing long insets

2594min P2  Oth [EMAIL PROTECTED]   REOP
commands in mathed should appear upright


Major issues

3909maj P2  PC  [EMAIL PROTECTED]   UNCO
LyX does not print files from the Help menu

3920maj P3  Mac [EMAIL PROTECTED]   UNCO
Slowly at text input time

3404maj P2  Oth [EMAIL PROTECTED]   NEW
lyx2lyx adds too many \end_layout tokens

2753

Re: RC2 coming soon

2007-06-26 Thread christian . ridderstrom

On Tue, 26 Jun 2007, Uwe Stöhr wrote:


> What is the status now?

 Let's just release 1.5.0.


No, we need an RC2 to test if our fixes to some crash bugs are really 
fixes. But I also think that RC2 should be released right now (after 
Jürgen's current fixes are in (bug 3915, 3916, and 2753)).


I agree (and I thought this was the plan)

/C

--
Christian Ridderström, +46-8-768 39 44   http://www.md.kth.se/~chr

Re: RC2 coming soon

2007-06-26 Thread José Matos
On Tuesday 26 June 2007 11:07:17 Uwe Stöhr wrote:
> No, we need an RC2 to test if our fixes to some crash bugs are really
> fixes. But I also think that RC2 should be released right now (after
> Jürgen's current fixes are in (bug 3915, 3916, and 2753)).

  I agree. I have committed the bugfix to 3313. So my list is now empty. :-)

> regards Uwe

-- 
José Abílio


Re: RC2 coming soon

2007-06-26 Thread Bo Peng

How many serious bugs are left? Glancing at the wiki page, I see the
following:
* 4 critical issues
* 32 regression issues
* 14 major issues
* 32 other issues

Any comments on these?


I guess Jose can look through the list and identify must-fix ones so
that people can have a look. If these bugs can not be fixed now, at
least some temporary patches can be applied to avoid crash.

I personally think RC2 can be released now and there is no real
stopper for 1.5.0.

Cheers,
Bo


Re: RC2 coming soon

2007-06-26 Thread José Matos
On Saturday 16 June 2007 18:06:50 Georg Baum wrote:
> Am Samstag, 16. Juni 2007 16:12 schrieb Uwe Stöhr:
> > > Is there anything else that I am missing before RC2?
> >
> > This bug is in my opinion a blocker because it makes tex2lyx nearly
> > unusable:
> > http://bugzilla.lyx.org/show_bug.cgi?id=3750
>
> Annoying? Yes. Should be fixed? Yes. Unusable? No. It will simply translate
> captions to ERT, that is all.

  I agree.

> Georg

-- 
José Abílio


RE: RC2 coming soon

2007-06-26 Thread Leuven, E.
On Saturday 16 June 2007 18:06:50 Georg Baum wrote:
> Am Samstag, 16. Juni 2007 16:12 schrieb Uwe Stöhr:
> > > Is there anything else that I am missing before RC2?
> >
> > This bug is in my opinion a blocker because it makes tex2lyx nearly
> > unusable:
> > http://bugzilla.lyx.org/show_bug.cgi?id=3750
>
> Annoying? Yes. Should be fixed? Yes. Unusable? No. It will simply translate
> captions to ERT, that is all.


wan't there a patch by hangzai ?


Re: RC2 coming soon

2007-06-26 Thread José Matos
On Tuesday 26 June 2007 14:26:13 Leuven, E. wrote:
> >
> > Annoying? Yes. Should be fixed? Yes. Unusable? No. It will simply
> > translate captions to ERT, that is all.
>
> wan't there a patch by hangzai ?

  I have reviewed that thread and there was a dialog going on between him and 
Georg.

  Also as far as I understood, the fix can be committed after 1.5.0. This is a 
sensitive area and I want to play safe here. If for any reason I am mistaken 
please let me know. :-)

-- 
José Abílio


RE: RC2 coming soon

2007-06-26 Thread Leuven, E.
>  I have reviewed that thread and there was a dialog going on between him and 
> Georg.
>
>  Also as far as I understood, the fix can be committed after 1.5.0. This is a
> sensitive area and I want to play safe here. If for any reason I am mistaken
> please let me know. :-)

i guess this one's for georg...


Re: RC2 coming soon

2007-06-26 Thread Enrico Forestieri
On Tue, Jun 26, 2007 at 02:18:37PM +0100, José Matos wrote:

> On Tuesday 26 June 2007 11:07:17 Uwe Stöhr wrote:
> > No, we need an RC2 to test if our fixes to some crash bugs are really
> > fixes. But I also think that RC2 should be released right now (after
> > Jürgen's current fixes are in (bug 3915, 3916, and 2753)).
> 
>   I agree. I have committed the bugfix to 3313. So my list is now empty. :-)

Please consider also bug 3904. This is a show stopper on systems
whose locale is not utf8 and the tempdir contains non-ascii chars.
For sure this affects Windows systems with a Portuguese locale and
maybe others. The patch is pretty safe.

-- 
Enrico


Re: RC2 coming soon

2007-06-26 Thread José Matos
On Tuesday 26 June 2007 14:59:58 Enrico Forestieri wrote:
> Please consider also bug 3904. This is a show stopper on systems
> whose locale is not utf8 and the tempdir contains non-ascii chars.
> For sure this affects Windows systems with a Portuguese locale and
> maybe others. The patch is pretty safe.

  I care about Portuguese, I don't care about Windows. :-)

  I had reviewed the patch. If you think it is safe (and since you have tested 
it) commit it.

> --
> Enrico

-- 
José Abílio


Re: RC2 coming soon

2007-06-26 Thread Enrico Forestieri
On Tue, Jun 26, 2007 at 03:04:31PM +0100, José Matos wrote:

> On Tuesday 26 June 2007 14:59:58 Enrico Forestieri wrote:
> > Please consider also bug 3904. This is a show stopper on systems
> > whose locale is not utf8 and the tempdir contains non-ascii chars.
> > For sure this affects Windows systems with a Portuguese locale and
> > maybe others. The patch is pretty safe.
> 
>   I care about Portuguese, I don't care about Windows. :-)

I would have said the same 3 or 4 years ago ;-)

>   I had reviewed the patch. If you think it is safe (and since you have tested
> it) commit it.

Done.

-- 
Enrico


Re: RC2 coming soon

2007-06-25 Thread Bo Peng

PS: The plan is to release RC2 in a couple of days as soon as the remaining
patches are committed, and this should happen before Tuesday night.


What is the status now?

Bo


Re: RC2 coming soon

2007-06-25 Thread Bo Peng

PS: The plan is to release RC2 in a couple of days as soon as the remaining
patches are committed, and this should happen before Tuesday night.


What is the status now?

Bo


Re: RC2 coming soon

2007-06-19 Thread Jürgen Spitzmüller
José Matos wrote:
 I will start looking to remaining issues before RC2, AFAIR there are two
 patches that I would like to have before the release, one by Jürgen that
 has a file format change and another related with reverting documents to
 1.4.

Yes. I keep on waiting for you to do the python part.

Jürgen


Re: RC2 coming soon

2007-06-19 Thread Jürgen Spitzmüller
José Matos wrote:
> I will start looking to remaining issues before RC2, AFAIR there are two
> patches that I would like to have before the release, one by Jürgen that
> has a file format change and another related with reverting documents to
> 1.4.

Yes. I keep on waiting for you to do the python part.

Jürgen


Re: RC2 coming soon

2007-06-17 Thread Jürgen Spitzmüller
José Matos wrote:
  what about
 
  http://bugzilla.lyx.org/show_bug.cgi?id=3840
  and
  http://bugzilla.lyx.org/show_bug.cgi?id=3839

   If Jürgen gives an OK to these I give my OK as well.  

If it works as advertised, I think it should go in.
Edwin, if you post the most recent patch again, I'll text it.

Jürgen


Re: RC2 coming soon

2007-06-17 Thread Edwin Leuven

Jürgen Spitzmüller wrote:

José Matos wrote:

what about

http://bugzilla.lyx.org/show_bug.cgi?id=3840
and
http://bugzilla.lyx.org/show_bug.cgi?id=3839
  If Jürgen gives an OK to these I give my OK as well.  


If it works as advertised, I think it should go in.
Edwin, if you post the most recent patch again, I'll text it.


you'll find it here:

http://article.gmane.org/gmane.editors.lyx.devel/87886


Re: RC2 coming soon

2007-06-17 Thread Uwe Stöhr

 We are also finding a second home for aspell dictionaries so that the
 windows installer will work even ftp.lyx.org is unusable.

What about the berlios.de repository that I currently use in LyXWinInstaller as second home for the 
dictionaries?:

http://developer.berlios.de/project/showfiles.php?group_id=5117release_id=9651

regards Uwe


Re: RC2 coming soon

2007-06-17 Thread Bo Peng

What about the berlios.de repository that I currently use in LyXWinInstaller as 
second home for the
dictionaries?:
http://developer.berlios.de/project/showfiles.php?group_id=5117release_id=9651


I am not sure because Joost said that these dictionaries are for an
earlier version of aspell and can not be used for the one compiled for
the official installer.

Bo


Re: RC2 coming soon

2007-06-17 Thread Uwe Stöhr

Bo Peng schrieb:


I am not sure because Joost said that these dictionaries are for an
earlier version of aspell and can not be used for the one compiled for
the official installer.


I can upload the actual ones tomorrow, no problem.
But also the current dictionaries work well together with the one compiled for 
the official installer.

regards Uwe


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Uwe Stöhr

 If it works as advertised, I think it should go in.

I tested the patch and there are some issues left:

- It is still not possible to insert two consecutive symbols because the panel is closed after every 
selection, see also

http://bugzilla.lyx.org/show_bug.cgi?id=3839#c1

- Bug 3840 is not fixed for me. Detaching a panel should be intuitive and the current implementation 
is not. I takes me 5 minutes until I get it.




Besides this I miss than the tooltips aren't shown for the math panels. Tooltips work e.g. for 
roots, styles, fonts and its subentries are shown in the status bar but e.g. not for the subentries 
of the Greek, Arrows panels.


regards Uwe


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Edwin Leuven

Uwe Stöhr wrote:

  If it works as advertised, I think it should go in.

I tested the patch and there are some issues left:

- It is still not possible to insert two consecutive symbols because the 
panel is closed after every selection, see also

http://bugzilla.lyx.org/show_bug.cgi?id=3839#c1


this is intentional.

- Bug 3840 is not fixed for me. Detaching a panel should be intuitive 
and the current implementation is not.


shrugthis is how qt does it.../shrug


I takes me 5 minutes until I get it.


but the good thing is that once you get it you get it...

...

to take a bit of perspective:

the patch does not change behavior wrt the current situation but it 
*does* allow you to tear off the menu's


(a so-called pareto improvement: someone benefits without making others 
worse off...)


Besides this I miss than the tooltips aren't shown for the math panels. 
Tooltips work e.g. for roots, styles, fonts and its subentries are shown 
in the status bar but e.g. not for the subentries of the Greek, Arrows 
panels.


i know. perhaps you could file a bug...

thanks for testing


Re: RC2 coming soon

2007-06-17 Thread Joost Verburg

Uwe Stöhr wrote:

I can upload the actual ones tomorrow, no problem.
But also the current dictionaries work well together with the one 
compiled for the official installer.


There have been changes in the dictionary installers for multi-user 
installations and some other things. The outdated dictionaries on 
berlios.de don't work in all situations. The files on wiki.lyx.org are 
even older.


Joost



Re: RC2 coming soon

2007-06-17 Thread Jürgen Spitzmüller
Edwin Leuven wrote:
 you'll find it here:

 http://article.gmane.org/gmane.editors.lyx.devel/87886

Works for me. Put it in.

Jürgen


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Uwe Stöhr

Edwin Leuven schrieb:

- It is still not possible to insert two consecutive symbols because 
the panel is closed after every selection, see also

http://bugzilla.lyx.org/show_bug.cgi?id=3839#c1


this is intentional.


But this is no excuse ;-). I also have often the case that I want to insert some symbols from the 
same panel and it is annoying that I always have to reopen the panel.



I takes me 5 minutes until I get it.


but the good thing is that once you get it you get it...


OK, but please document this in the Userguide.

Besides this I miss than the tooltips aren't shown for the math 
panels. Tooltips work e.g. for roots, styles, fonts and its subentries 
are shown in the status bar but e.g. not for the subentries of the 
Greek, Arrows panels.


i know. perhaps you could file a bug...


This is now bug 3883: http://bugzilla.lyx.org/show_bug.cgi?id=3883
Do you have an idea why this doesn't work?

regards Uwe


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Jürgen Spitzmüller
Uwe Stöhr wrote:
  this is intentional.

 But this is no excuse ;-). I also have often the case that I want to insert
 some symbols from the same panel and it is annoying that I always have to
 reopen the panel.

IMHO Edwin's proposal is just perfect: whenever you want to insert multiple 
sybols, tear off the panel. Menus should behave like menues, dialogs like 
dialogs.

Jürgen


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Edwin Leuven

Uwe Stöhr wrote:

Edwin Leuven schrieb:

- It is still not possible to insert two consecutive symbols because 
the panel is closed after every selection, see also

http://bugzilla.lyx.org/show_bug.cgi?id=3839#c1


this is intentional.


But this is no excuse ;-)


it isn't?!

I also have often the case that I want to 
insert some symbols from the same panel and it is annoying that I always 
have to reopen the panel.


but that's why you can tear 'em off now


I takes me 5 minutes until I get it.


but the good thing is that once you get it you get it...


OK, but please document this in the Userguide.


will try to write something up before final


This is now bug 3883: http://bugzilla.lyx.org/show_bug.cgi?id=3883


thanks


Do you have an idea why this doesn't work?


not a clue. i looked into this for a while but didn't get anywhere so i 
gave up...


Re: RC2 coming soon

2007-06-17 Thread christian . ridderstrom

On Sun, 17 Jun 2007, Joost Verburg wrote:


Uwe Stöhr wrote:

 I can upload the actual ones tomorrow, no problem.
 But also the current dictionaries work well together with the one compiled
 for the official installer.


There have been changes in the dictionary installers for multi-user 
installations and some other things. The outdated dictionaries on 
berlios.de don't work in all situations. The files on wiki.lyx.org are 
even older.


Did the file format change? (Just curious)

/C

--
Christian Ridderström, +46-8-768 39 44   http://www.md.kth.se/~chr

Re: RC2 coming soon

2007-06-17 Thread Joost Verburg

[EMAIL PROTECTED] wrote:
There have been changes in the dictionary installers for multi-user 
installations and some other things. The outdated dictionaries on 
berlios.de don't work in all situations. The files on wiki.lyx.org are 
even older.


Did the file format change? (Just curious)


There have been no changes to the dictionary file format. Aspell 
development has almost stalled, so I don't expect a format change 
anytime soon.


The big open-source projects currently use Hunspell.

Joost



Re: RC2 coming soon - math panels patch

2007-06-17 Thread Uwe Stöhr

Edwin Leuven schrieb:

I also have often the case that I want to insert some symbols from the 
same panel and it is annoying that I always have to reopen the panel.


but that's why you can tear 'em off now


OK, I understand. So what is only missing is the documentation how to detach a 
panel in the Userguide.

regards Uwe


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Roger Mc Murtrie


On 18/06/2007, at 4:53 AM, [EMAIL PROTECTED] wrote:


 Re: RC2 coming soon - math panels patch


 I tested the patch and there are some issues left:

  - It is still not possible to insert two consecutive symbols  
because the panel is closed after every selection, see also

 http://bugzilla.lyx.org/show_bug.cgi?id=3839#c1

 -  Bug 3840 is not fixed for me. Detaching a panel should be  
intuitive and the current implementation is not. I takes me  5  
minutes until I get it.


 

 Besides this I miss than the tooltips aren't shown for the math  
panels. Tooltips work e.g. for roots, styles, fonts and its
  subentries are shown in the status bar but e.g. not for the  
subentries of the Greek, Arrows panels.


 regards Uwe


From my point of view, as a user who really needs it, it works  
perfectly.


Admittedly, Detaching a panel should be intuitive , however, once  
you find out that to detach a palette you single click once above  
dashed the line, a palette easily  detaches every time (until I  
accidently discovered this, I spent much time trying to detach by  
tearing that is, dragging, which I think is probably the intuitive  
method).


Once detached it is certainly possible to insert two consecutive  
symbols. In fact, you can have as many math palettes open as you  
like and successfully select symbols from each one into your math box.


My understanding of the implementation  philosophy, is that when a  
math palette is attached it should close on selection of a single  
symbol but if it is detached it should stay open. I don't necessarily  
agree with this functionality decision, but this is what was decided  
should happen so from that point of view it works as advertised.


Not sure what tooltips are meant? How to use the palette, or what a  
symbol is for?


Whatever, the RC2 decision, I will certainly include in my RC2 build  
as, for my purposes, it is a tremendous improvement  in usability.


Irrespective, LyX 1.5 is great, congratulations to the developers on  
a great and well appreciated effort,

Roger



Re: RC2 coming soon - math panels patch

2007-06-17 Thread Roger Mc Murtrie


Oops, disregard my last comment regarding tooltips, I just checked  
bug 3883 and now comprehend!


Roger


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Roger Mc Murtrie
 Besides this I miss than the tooltips aren't shown for the math  
panels. Tooltips work e.g. for roots, styles, fonts and its
  subentries are shown in the status bar but e.g. not for the  
subentries of the Greek, Arrows panels.


With respect to the tool tips comments.

I've just checked the current status bar tool tips but can't see  
their advantage as the status bar tool tips for roots etc simply  
repeat what's on the root menu e.g Square root \sqrt.  Am I missing  
something??
Of course, for consistency  the tooltips for the math panels should  
be shown in the status bar.
I also noticed a small problem with the root menu; it displays  
downwards , obscuring the tool tip in the status bar (unless, of  
course, if its torn off and moved away from the status bar). Is it  
worth raising a bug on this?
The Styles menu, on the other hand, displays upwards thereby not  
obscuring the status bar.


Roger


Re: RC2 coming soon

2007-06-17 Thread Jürgen Spitzmüller
José Matos wrote:
> > what about
> >
> > http://bugzilla.lyx.org/show_bug.cgi?id=3840
> > and
> > http://bugzilla.lyx.org/show_bug.cgi?id=3839
>
>   If Jürgen gives an OK to these I give my OK as well.  

If it works as advertised, I think it should go in.
Edwin, if you post the most recent patch again, I'll text it.

Jürgen


Re: RC2 coming soon

2007-06-17 Thread Edwin Leuven

Jürgen Spitzmüller wrote:

José Matos wrote:

what about

http://bugzilla.lyx.org/show_bug.cgi?id=3840
and
http://bugzilla.lyx.org/show_bug.cgi?id=3839
  If Jürgen gives an OK to these I give my OK as well.  


If it works as advertised, I think it should go in.
Edwin, if you post the most recent patch again, I'll text it.


you'll find it here:

http://article.gmane.org/gmane.editors.lyx.devel/87886


Re: RC2 coming soon

2007-06-17 Thread Uwe Stöhr

> We are also finding a second home for aspell dictionaries so that the
> windows installer will work even ftp.lyx.org is unusable.

What about the berlios.de repository that I currently use in LyXWinInstaller as second home for the 
dictionaries?:

http://developer.berlios.de/project/showfiles.php?group_id=5117_id=9651

regards Uwe


Re: RC2 coming soon

2007-06-17 Thread Bo Peng

What about the berlios.de repository that I currently use in LyXWinInstaller as 
second home for the
dictionaries?:
http://developer.berlios.de/project/showfiles.php?group_id=5117_id=9651


I am not sure because Joost said that these dictionaries are for an
earlier version of aspell and can not be used for the one compiled for
the official installer.

Bo


Re: RC2 coming soon

2007-06-17 Thread Uwe Stöhr

Bo Peng schrieb:


I am not sure because Joost said that these dictionaries are for an
earlier version of aspell and can not be used for the one compiled for
the official installer.


I can upload the actual ones tomorrow, no problem.
But also the current dictionaries work well together with the one compiled for 
the official installer.

regards Uwe


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Uwe Stöhr

> If it works as advertised, I think it should go in.

I tested the patch and there are some issues left:

- It is still not possible to insert two consecutive symbols because the panel is closed after every 
selection, see also

http://bugzilla.lyx.org/show_bug.cgi?id=3839#c1

- Bug 3840 is not fixed for me. Detaching a panel should be intuitive and the current implementation 
is not. I takes me 5 minutes until I get it.




Besides this I miss than the tooltips aren't shown for the math panels. Tooltips work e.g. for 
roots, styles, fonts and its subentries are shown in the status bar but e.g. not for the subentries 
of the Greek, Arrows panels.


regards Uwe


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Edwin Leuven

Uwe Stöhr wrote:

 > If it works as advertised, I think it should go in.

I tested the patch and there are some issues left:

- It is still not possible to insert two consecutive symbols because the 
panel is closed after every selection, see also

http://bugzilla.lyx.org/show_bug.cgi?id=3839#c1


this is intentional.

- Bug 3840 is not fixed for me. Detaching a panel should be intuitive 
and the current implementation is not.


this is how qt does it...


I takes me 5 minutes until I get it.


but the good thing is that once you get it you get it...

...

to take a bit of perspective:

the patch does not change behavior wrt the current situation but it 
*does* allow you to tear off the menu's


(a so-called pareto improvement: someone benefits without making others 
worse off...)


Besides this I miss than the tooltips aren't shown for the math panels. 
Tooltips work e.g. for roots, styles, fonts and its subentries are shown 
in the status bar but e.g. not for the subentries of the Greek, Arrows 
panels.


i know. perhaps you could file a bug...

thanks for testing


Re: RC2 coming soon

2007-06-17 Thread Joost Verburg

Uwe Stöhr wrote:

I can upload the actual ones tomorrow, no problem.
But also the current dictionaries work well together with the one 
compiled for the official installer.


There have been changes in the dictionary installers for multi-user 
installations and some other things. The outdated dictionaries on 
berlios.de don't work in all situations. The files on wiki.lyx.org are 
even older.


Joost



Re: RC2 coming soon

2007-06-17 Thread Jürgen Spitzmüller
Edwin Leuven wrote:
> you'll find it here:
>
> http://article.gmane.org/gmane.editors.lyx.devel/87886

Works for me. Put it in.

Jürgen


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Uwe Stöhr

Edwin Leuven schrieb:

- It is still not possible to insert two consecutive symbols because 
the panel is closed after every selection, see also

http://bugzilla.lyx.org/show_bug.cgi?id=3839#c1


this is intentional.


But this is no excuse ;-). I also have often the case that I want to insert some symbols from the 
same panel and it is annoying that I always have to reopen the panel.



I takes me 5 minutes until I get it.


but the good thing is that once you get it you get it...


OK, but please document this in the Userguide.

Besides this I miss than the tooltips aren't shown for the math 
panels. Tooltips work e.g. for roots, styles, fonts and its subentries 
are shown in the status bar but e.g. not for the subentries of the 
Greek, Arrows panels.


i know. perhaps you could file a bug...


This is now bug 3883: http://bugzilla.lyx.org/show_bug.cgi?id=3883
Do you have an idea why this doesn't work?

regards Uwe


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Jürgen Spitzmüller
Uwe Stöhr wrote:
> > this is intentional.
>
> But this is no excuse ;-). I also have often the case that I want to insert
> some symbols from the same panel and it is annoying that I always have to
> reopen the panel.

IMHO Edwin's proposal is just perfect: whenever you want to insert multiple 
sybols, tear off the panel. Menus should behave like menues, dialogs like 
dialogs.

Jürgen


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Edwin Leuven

Uwe Stöhr wrote:

Edwin Leuven schrieb:

- It is still not possible to insert two consecutive symbols because 
the panel is closed after every selection, see also

http://bugzilla.lyx.org/show_bug.cgi?id=3839#c1


this is intentional.


But this is no excuse ;-)


it isn't?!

I also have often the case that I want to 
insert some symbols from the same panel and it is annoying that I always 
have to reopen the panel.


but that's why you can tear 'em off now


I takes me 5 minutes until I get it.


but the good thing is that once you get it you get it...


OK, but please document this in the Userguide.


will try to write something up before final


This is now bug 3883: http://bugzilla.lyx.org/show_bug.cgi?id=3883


thanks


Do you have an idea why this doesn't work?


not a clue. i looked into this for a while but didn't get anywhere so i 
gave up...


Re: RC2 coming soon

2007-06-17 Thread christian . ridderstrom

On Sun, 17 Jun 2007, Joost Verburg wrote:


Uwe Stöhr wrote:

 I can upload the actual ones tomorrow, no problem.
 But also the current dictionaries work well together with the one compiled
 for the official installer.


There have been changes in the dictionary installers for multi-user 
installations and some other things. The outdated dictionaries on 
berlios.de don't work in all situations. The files on wiki.lyx.org are 
even older.


Did the file format change? (Just curious)

/C

--
Christian Ridderström, +46-8-768 39 44   http://www.md.kth.se/~chr

Re: RC2 coming soon

2007-06-17 Thread Joost Verburg

[EMAIL PROTECTED] wrote:
There have been changes in the dictionary installers for multi-user 
installations and some other things. The outdated dictionaries on 
berlios.de don't work in all situations. The files on wiki.lyx.org are 
even older.


Did the file format change? (Just curious)


There have been no changes to the dictionary file format. Aspell 
development has almost stalled, so I don't expect a format change 
anytime soon.


The big open-source projects currently use Hunspell.

Joost



Re: RC2 coming soon - math panels patch

2007-06-17 Thread Uwe Stöhr

Edwin Leuven schrieb:

I also have often the case that I want to insert some symbols from the 
same panel and it is annoying that I always have to reopen the panel.


but that's why you can tear 'em off now


OK, I understand. So what is only missing is the documentation how to detach a 
panel in the Userguide.

regards Uwe


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Roger Mc Murtrie


On 18/06/2007, at 4:53 AM, [EMAIL PROTECTED] wrote:


 Re: RC2 coming soon - math panels patch


> I tested the patch and there are some issues left:

>  - It is still not possible to insert two consecutive symbols  
because the panel is closed after every selection, see also

> http://bugzilla.lyx.org/show_bug.cgi?id=3839#c1

> -  Bug 3840 is not fixed for me. Detaching a panel should be  
intuitive and the current implementation is not. I takes me > 5  
minutes until I get it.


> 

> Besides this I miss than the tooltips aren't shown for the math  
panels. Tooltips work e.g. for roots, styles, fonts and its
>  subentries are shown in the status bar but e.g. not for the  
subentries of the Greek, Arrows panels.


> regards Uwe


From my point of view, as a user who really needs it, it works  
perfectly.


Admittedly, "Detaching a panel should be intuitive ", however, once  
you find out that to detach a palette you single click once above  
dashed the line, a palette easily  detaches every time (until I  
accidently discovered this, I spent much time trying to detach by  
"tearing" that is, dragging, which I think is probably the intuitive  
method).


Once detached it is certainly possible "to insert two consecutive  
symbols". In fact, you can have as many math palettes open as you  
like and successfully select symbols from each one into your math box.


My understanding of the implementation  philosophy, is that when a  
math palette is attached it should close on selection of a single  
symbol but if it is detached it should stay open. I don't necessarily  
agree with this functionality decision, but this is what was decided  
should happen so from that point of view it works "as advertised".


Not sure what tooltips are meant? How to use the palette, or what a  
symbol is for?


Whatever, the RC2 decision, I will certainly include in my RC2 build  
as, for my purposes, it is a tremendous improvement  in usability.


Irrespective, LyX 1.5 is great, congratulations to the developers on  
a great and well appreciated effort,

Roger



Re: RC2 coming soon - math panels patch

2007-06-17 Thread Roger Mc Murtrie


Oops, disregard my last comment regarding tooltips, I just checked  
bug 3883 and now comprehend!


Roger


Re: RC2 coming soon - math panels patch

2007-06-17 Thread Roger Mc Murtrie
> Besides this I miss than the tooltips aren't shown for the math  
panels. Tooltips work e.g. for roots, styles, fonts and its
>  subentries are shown in the status bar but e.g. not for the  
subentries of the Greek, Arrows panels.


With respect to the tool tips comments.

I've just checked the current status bar tool tips but can't see  
their advantage as the status bar tool tips for roots etc simply  
repeat what's on the root menu e.g Square root \sqrt.  Am I missing  
something??
Of course, for consistency  the tooltips for the math panels should  
be shown in the status bar.
I also noticed a small problem with the root menu; it displays  
downwards , obscuring the tool tip in the status bar (unless, of  
course, if its torn off and moved away from the status bar). Is it  
worth raising a bug on this?
The Styles menu, on the other hand, displays upwards thereby not  
obscuring the status bar.


Roger


Re: RC2 coming soon

2007-06-16 Thread José Matos
On Friday 15 June 2007 19:50:42 Richard Heck wrote:
 I think it'd be nice to have Abdel's child docs TOC patch by then. I'm
 working on it now. There are still some issues.

  I agree. :-)
  And I said that already in another thread. :-)

 Richard

-- 
José Abílio


Re: RC2 coming soon

2007-06-16 Thread José Matos
On Friday 15 June 2007 23:44:27 Edwin Leuven wrote:
 José Matos wrote:
  Hi all,
  I will start looking to remaining issues before RC2, AFAIR there are two
  patches that I would like to have before the release, one by Jürgen that
  has a file format change and another related with reverting documents to
  1.4.
 
  Is there anything else that I am missing before RC2?

 tearing of math panels using attached patch?

This patch breaks the rule that only bugfixes should go after RC1.

On the other hand there is life after 1.5.0 release. :-)

If no one opposes this patch and I have thumbs up from people testing the code 
I will consider it. Fair enough?
-- 
José Abílio


Re: RC2 coming soon

2007-06-16 Thread Edwin Leuven

José Matos wrote:

On Friday 15 June 2007 23:44:27 Edwin Leuven wrote:

José Matos wrote:

Hi all,
I will start looking to remaining issues before RC2, AFAIR there are two
patches that I would like to have before the release, one by Jürgen that
has a file format change and another related with reverting documents to
1.4.

Is there anything else that I am missing before RC2?

tearing of math panels using attached patch?


This patch breaks the rule that only bugfixes should go after RC1.


what about

http://bugzilla.lyx.org/show_bug.cgi?id=3840

and

http://bugzilla.lyx.org/show_bug.cgi?id=3839

?


On the other hand there is life after 1.5.0 release. :-)

If no one opposes this patch and I have thumbs up from people testing the code 
I will consider it. Fair enough?


no problem


Re: RC2 coming soon

2007-06-16 Thread José Matos
On Saturday 16 June 2007 12:00:42 Edwin Leuven wrote:
 what about

 http://bugzilla.lyx.org/show_bug.cgi?id=3840
 and
 http://bugzilla.lyx.org/show_bug.cgi?id=3839

  If Jürgen gives an OK to these I give my OK as well.  

  On the other hand there is life after 1.5.0 release. :-)
 
  If no one opposes this patch and I have thumbs up from people testing the
  code I will consider it. Fair enough?

 no problem

  Just to be clear, if this does not go in 1.5.0 I consider it a good 
candidate to go in 1.5.x.

-- 
José Abílio


Re: RC2 coming soon

2007-06-16 Thread Uwe Stöhr

Is there anything else that I am missing before RC2?


This bug is in my opinion a blocker because it makes tex2lyx nearly
unusable:
http://bugzilla.lyx.org/show_bug.cgi?id=3750

Hangzai Luo has sent a patch but besides general statements nobody
really provided a better patch for LyX 1.5:
http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg120560.html

regards Uwe


Re: RC2 coming soon

2007-06-16 Thread Georg Baum
Am Samstag, 16. Juni 2007 16:12 schrieb Uwe Stöhr:
  Is there anything else that I am missing before RC2?
 
 This bug is in my opinion a blocker because it makes tex2lyx nearly
 unusable:
 http://bugzilla.lyx.org/show_bug.cgi?id=3750

Annoying? Yes. Should be fixed? Yes. Unusable? No. It will simply translate 
captions to ERT, that is all.

 Hangzai Luo has sent a patch but besides general statements nobody
 really provided a better patch for LyX 1.5:
 http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg120560.html

This patch generates an invalid file. If you apply it you will rpeat the 
relyx mistakes. I wrote in http://bugzilla.lyx.org/show_bug.cgi?id=3750#c3 
what could be done alternatively.


Georg


Re: RC2 coming soon

2007-06-16 Thread José Matos
On Friday 15 June 2007 19:50:42 Richard Heck wrote:
> I think it'd be nice to have Abdel's child docs TOC patch by then. I'm
> working on it now. There are still some issues.

  I agree. :-)
  And I said that already in another thread. :-)

> Richard

-- 
José Abílio


Re: RC2 coming soon

2007-06-16 Thread José Matos
On Friday 15 June 2007 23:44:27 Edwin Leuven wrote:
> José Matos wrote:
> > Hi all,
> > I will start looking to remaining issues before RC2, AFAIR there are two
> > patches that I would like to have before the release, one by Jürgen that
> > has a file format change and another related with reverting documents to
> > 1.4.
> >
> > Is there anything else that I am missing before RC2?
>
> tearing of math panels using attached patch?

This patch breaks the rule that only bugfixes should go after RC1.

On the other hand there is life after 1.5.0 release. :-)

If no one opposes this patch and I have thumbs up from people testing the code 
I will consider it. Fair enough?
-- 
José Abílio


Re: RC2 coming soon

2007-06-16 Thread Edwin Leuven

José Matos wrote:

On Friday 15 June 2007 23:44:27 Edwin Leuven wrote:

José Matos wrote:

Hi all,
I will start looking to remaining issues before RC2, AFAIR there are two
patches that I would like to have before the release, one by Jürgen that
has a file format change and another related with reverting documents to
1.4.

Is there anything else that I am missing before RC2?

tearing of math panels using attached patch?


This patch breaks the rule that only bugfixes should go after RC1.


what about

http://bugzilla.lyx.org/show_bug.cgi?id=3840

and

http://bugzilla.lyx.org/show_bug.cgi?id=3839

?


On the other hand there is life after 1.5.0 release. :-)

If no one opposes this patch and I have thumbs up from people testing the code 
I will consider it. Fair enough?


no problem


Re: RC2 coming soon

2007-06-16 Thread José Matos
On Saturday 16 June 2007 12:00:42 Edwin Leuven wrote:
> what about
>
> http://bugzilla.lyx.org/show_bug.cgi?id=3840
> and
> http://bugzilla.lyx.org/show_bug.cgi?id=3839

  If Jürgen gives an OK to these I give my OK as well.  

> > On the other hand there is life after 1.5.0 release. :-)
> >
> > If no one opposes this patch and I have thumbs up from people testing the
> > code I will consider it. Fair enough?
>
> no problem

  Just to be clear, if this does not go in 1.5.0 I consider it a good 
candidate to go in 1.5.x.

-- 
José Abílio


Re: RC2 coming soon

2007-06-16 Thread Uwe Stöhr

Is there anything else that I am missing before RC2?


This bug is in my opinion a blocker because it makes tex2lyx nearly
unusable:
http://bugzilla.lyx.org/show_bug.cgi?id=3750

Hangzai Luo has sent a patch but besides general statements nobody
really provided a better patch for LyX 1.5:
http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg120560.html

regards Uwe


Re: RC2 coming soon

2007-06-16 Thread Georg Baum
Am Samstag, 16. Juni 2007 16:12 schrieb Uwe Stöhr:
> > Is there anything else that I am missing before RC2?
> 
> This bug is in my opinion a blocker because it makes tex2lyx nearly
> unusable:
> http://bugzilla.lyx.org/show_bug.cgi?id=3750

Annoying? Yes. Should be fixed? Yes. Unusable? No. It will simply translate 
captions to ERT, that is all.

> Hangzai Luo has sent a patch but besides general statements nobody
> really provided a better patch for LyX 1.5:
> http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg120560.html

This patch generates an invalid file. If you apply it you will rpeat the 
relyx mistakes. I wrote in http://bugzilla.lyx.org/show_bug.cgi?id=3750#c3 
what could be done alternatively.


Georg


  1   2   >