Re: On the interface between Lyx and CAS: some ideas for a better desing

2007-02-23 Thread Michael Abshoff
[EMAIL PROTECTED] wrote: On Fri, 23 Feb 2007, Pablo De Napoli wrote: It might be way to difficult, but perhaps this is a candidate for GSoC2007? http://wiki.lyx.org/Devel/GSoC2007 /C Hello, if you are looking for a candidate to hook you should check out SAGE. It is a python based

Re: On the interface between Lyx and CAS: some ideas for a better desing

2007-02-23 Thread Michael Abshoff
[EMAIL PROTECTED] wrote: > On Fri, 23 Feb 2007, Pablo De Napoli wrote: > > It might be way to difficult, but perhaps this is a candidate for > GSoC2007? > > http://wiki.lyx.org/Devel/GSoC2007 > > /C Hello, if you are looking for a candidate to hook you should check out SAGE. It is a python

Re: [patch] fix includes

2007-02-19 Thread Michael Abshoff
SNIP Hello George MSVC is not affected, since the code in question is only used on unix. With the attached patch I am now able to compile with gcc 3.2 and 3.3. I don't understand why it does not work without. Due to the changed C++ ABI from gcc 3.4 on I could not run the resulting binaries,

Re: [patch] fix includes

2007-02-19 Thread Michael Abshoff
Hello George > MSVC is not affected, since the code in question is only used on unix. > > With the attached patch I am now able to compile with gcc 3.2 and 3.3. I > don't understand why it does not work without. Due to the changed C++ ABI > from gcc 3.4 on I could not run the resulting

Re: how to include LyX's icon to lyx.exe?

2007-01-01 Thread Michael Abshoff
Bo Peng wrote: To solve this the lyx.exe must have an icon included that is automatically taken by the dialogs. How can this be achieved? We need to embed an icon, as well the manifest file with lyx.exe (and lyxc.exe if needed). I am investigating it. Bo You need to also link a resource

Re: how to include LyX's icon to lyx.exe?

2007-01-01 Thread Michael Abshoff
Bo Peng wrote: >> To solve this the lyx.exe must have an icon included that is >> automatically taken by the dialogs. How can this be achieved? > > We need to embed an icon, as well the manifest file with lyx.exe (and > lyxc.exe if needed). I am investigating it. > > Bo > You need to also link a

Re: QLPainter statistic

2006-06-06 Thread Michael Abshoff
Here more numbers, with this setup: MSVC8 Qt 4.1.2 release lyx-qt4 release -O2 AMD XP 1.1Ghz, 100 Mhz Ram Where do I get one of those? :) Page down-key scrolling time of the User's Guide: 55s but when I disable all functions of QLPainter (just returning

Re: QLPainter statistic

2006-06-06 Thread Michael Abshoff
> > Here more numbers, with this setup: > > MSVC8 > Qt 4.1.2 release > lyx-qt4 release -O2 > AMD XP 1.1Ghz, 100 Mhz Ram > Where do I get one of those? :) > > Page down-key scrolling time of the User's Guide: > > 55s > > but when I disable all functions of QLPainter > (just

Re: scons-msvc adventure

2006-05-26 Thread Michael Abshoff
Let us start a new thread. Right now, I have told scons to build lyx, but it fails at the very first command: cl /ID:\zlib\include /Iboost /Isrc /c src\Bidi.C /Fodebug\common \Bidi.obj Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13.10.3077 for 80x86 Copyright (C) Microsoft

Re: scons-msvc adventure

2006-05-26 Thread Michael Abshoff
Thank you. This option works. Any idea how to get pid_t? I think it is in sys/types.h under linux, but msvc types.h may not have it. This causes problems in src/support/forkedcall.h etc. Bo Hey Bo, it should be defined in windows.h. Under

Re: scons-msvc adventure

2006-05-26 Thread Michael Abshoff
Adding /EHsc does not fix the problem. detail/is_function_ptr_tester.hpp is still needed, as well as other three boost files. Bo Well, yes since it is the missing header that caused the error. The obvious solution is to include the proper boost includes. If you already do it might be a

Re: scons-msvc adventure

2006-05-26 Thread Michael Abshoff
> Let us start a new thread. > > Right now, I have told scons to build lyx, but it fails at the very > first command: > > cl /ID:\zlib\include /Iboost /Isrc /c src\Bidi.C /Fodebug\common > \Bidi.obj > Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13.10.3077 for > 80x86 > Copyright (C)

Re: scons-msvc adventure

2006-05-26 Thread Michael Abshoff
> Thank you. This option works. > > Any idea how to get pid_t? I think it is in sys/types.h under linux, > but msvc types.h may not have it. This causes problems in > src/support/forkedcall.h etc. > > Bo > Hey Bo, it should be defined in windows.h. Under

Re: scons-msvc adventure

2006-05-26 Thread Michael Abshoff
> Adding /EHsc does not fix the problem. > detail/is_function_ptr_tester.hpp is still needed, as well as other > three boost files. > > Bo > Well, yes since it is the missing header that caused the error. The obvious solution is to include the proper boost includes. If you already do it might be

Re: cmake support

2006-05-25 Thread Michael Abshoff
SNIP Another rumor is that free qt is *only* designed for mingw and you will need a commercial qt version to work with vc. If this is true, I guess you are out of luck. Cheers, Bo It is not only a rumor but fact. On Windows the gpled version of qt works only with mingw. Cheers, Michael

Re: cmake support

2006-05-25 Thread Michael Abshoff
> > Another rumor is that free qt is *only* designed for mingw and you > will need a commercial qt version to work with vc. If this is true, I > guess you are out of luck. > > Cheers, > Bo > It is not only a rumor but fact. On Windows the gpled version of qt works only with mingw. Cheers,

Re: Compiling LyX for Windows - free MSVC available

2006-02-05 Thread Michael Abshoff
(students will little money, etc.) to migrate away from free C/C++ compilers/environments like MinGW/Cygwin they need to learn how to ship uncrippeld free stuff/rant Michael Abshoff PS: Sorry for the rant, but I couldn't resist :) -- Enrico

Re: Compiling LyX for Windows - free MSVC available

2006-02-05 Thread Michael Abshoff
SNIP ;-) I share much of your rumblings, however you can download nmake 1.5 directly from Microsoft: http://support.microsoft.com/default.aspx?scid=kb;en-us;Q132084 and lib can be simulated by link.exe /lib. Thanks, I didn't know that. The free MSVC is not completely useless, indeed I

Re: Compiling LyX for Windows - free MSVC available

2006-02-05 Thread Michael Abshoff
ghly 550MB. Well, if Microsoft wants certain classes of developers (students will little money, etc.) to migrate away from free C/C++ compilers/environments like MinGW/Cygwin they need to learn how to ship uncrippeld "free stuff" Michael Abshoff PS: Sorry for the rant, but I couldn't resist :) > > -- > Enrico >

Re: Compiling LyX for Windows - free MSVC available

2006-02-05 Thread Michael Abshoff
> > ;-) > > I share much of your rumblings, however you can download nmake 1.5 > directly from Microsoft: > http://support.microsoft.com/default.aspx?scid=kb;en-us;Q132084 > and lib can be simulated by "link.exe /lib". Thanks, I didn't know that. > > The free MSVC is not completely useless,

Re: Mac, gcc-4.0 compile error

2005-11-10 Thread Michael Abshoff
Bennett Helm wrote: I've normally been compiling lyx-140 on Mac OS X with gcc 3.3 for backwards compatibility, and everything works fine. However, looking forward to supporting Intel-based Macs will require gcc-4.0. When I try, however, I get the error copied below. Any suggestions on a

Re: Mac, gcc-4.0 compile error

2005-11-10 Thread Michael Abshoff
On Nov 10, 2005, at 1:49 PM, Hammer Armin wrote: Hi Michael, SNIP Michael, is this what you intended: the difference between the original gcc-4.0 build 4061 and the gcc-4.0 build 5026 I have? Correct. As it appears that doesn't fix your problem. Have you tried compiling a gcc 4.0.2

Re: Mac, gcc-4.0 compile error

2005-11-10 Thread Michael Abshoff
On Nov 10, 2005, at 3:47 PM, Michael Abshoff wrote: Wouldn't you know it: Xcode 2.2 has just shown up on Apple's server, containing gcc-4.0.1. At 833MB, it'll take a while for me to download; I'll test tomorrow. Bennett Hello Bennett, thanks for the tip. I just downloaded and installed

Re: Mac, gcc-4.0 compile error

2005-11-10 Thread Michael Abshoff
> Bennett Helm wrote: > >> I've normally been compiling lyx-140 on Mac OS X with gcc 3.3 for >> backwards compatibility, and everything works fine. However, looking >> forward to supporting Intel-based Macs will require gcc-4.0. When I >> try, however, I get the error copied below. >> >> Any

Re: Mac, gcc-4.0 compile error

2005-11-10 Thread Michael Abshoff
> On Nov 10, 2005, at 1:49 PM, Hammer Armin wrote: > >> Hi Michael, > > Michael, is this what you intended: the difference between the > original gcc-4.0 build 4061 and the gcc-4.0 build 5026 I have? > Correct. As it appears that doesn't fix your problem. Have you tried compiling a gcc 4.0.2

Re: Mac, gcc-4.0 compile error

2005-11-10 Thread Michael Abshoff
> On Nov 10, 2005, at 3:47 PM, Michael Abshoff wrote: > > Wouldn't you know it: Xcode 2.2 has just shown up on Apple's server, > containing gcc-4.0.1. At 833MB, it'll take a while for me to > download; I'll test tomorrow. > > Bennett > Hello Bennett, thanks for th

Re: QT-Frontend Buglet

2003-03-10 Thread Michael Abshoff
John Levon wrote: Good spotting, fixed now. thanks john I just checked cvs and as far as I can tell the patch made it into lyx-devel, but not into the 1_3_X-branch. I think that the patch should go in before 1.3.1. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755

Re: QT-Frontend Buglet

2003-03-10 Thread Michael Abshoff
John Levon wrote: Good spotting, fixed now. thanks john I just checked cvs and as far as I can tell the patch made it into lyx-devel, but not into the 1_3_X-branch. I think that the patch should go in before 1.3.1. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755

QT-Frontend Buglet

2003-03-03 Thread Michael Abshoff
namename/name cstringlastfilesSB/cstring /property property stdset=1 namemaxValue/name number20/number ^^^ /property /widget Should I make a patch? Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want

QT-Frontend Buglet

2003-03-03 Thread Michael Abshoff
astfilesSB maxValue 20 ^^^ Should I make a patch? Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

BUG: --export ps broken in 1.3.0 qt

2003-02-10 Thread Michael Abshoff
-- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

BUG: --export ps broken in 1.3.0 qt

2003-02-10 Thread Michael Abshoff
-- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

BUG?: .lyxpip.{in,out} not deleted on exit

2003-02-08 Thread Michael Abshoff
an alpha ready in about 10 days. Are you guys interested? Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

Re: BUG?: .lyxpip.{in,out} not deleted on exit

2003-02-08 Thread Michael Abshoff
-- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

Re: BUG?: .lyxpip.{in,out} not deleted on exit

2003-02-08 Thread Michael Abshoff
a week (I use lyx at least 3-4 hours a day) 3) throwing garbage at the parser I will get back to you guys if I got more questions. Thanks, Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

BUG?: .lyxpip.{in,out} not deleted on exit

2003-02-08 Thread Michael Abshoff
will have an alpha ready in about 10 days. Are you guys interested? Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

Re: BUG?: .lyxpip.{in,out} not deleted on exit

2003-02-08 Thread Michael Abshoff
. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

Re: BUG?: .lyxpip.{in,out} not deleted on exit

2003-02-08 Thread Michael Abshoff
or twice a week (I use lyx at least 3-4 hours a day) 3) throwing garbage at the parser I will get back to you guys if I got more questions. Thanks, Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

BUG: lyx-1.3pre3 mangels optional argument on \xrightarrow

2003-01-31 Thread Michael Abshoff
appearant paramter take the '[' as parameter. Are there any clever ways besides writing a macro for xrigtharrow to fix that problem? Attached are a sample file, the imported document deom 1.3pre3 an the tex-export from 1.3pre3. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463

Re: BUG: lyx-1.3pre3 mangels optional argument on \xrightarrow

2003-01-31 Thread Michael Abshoff
Andre Poenitz wrote: On Fri, Jan 31, 2003 at 11:42:04AM +0100, Michael Abshoff wrote: up to lyx-1.1.6fix4 it was possible to specify an optional argument for xrightarrow, i.e. \xrightarrow[optinal]{blah}. Looks like this inset was forgotten at some point of time. Are there any

Re: BUG: lyx-1.3pre3 mangels optional argument on \xrightarrow

2003-01-31 Thread Michael Abshoff
Andre Poenitz wrote: On Fri, Jan 31, 2003 at 12:43:14PM +0100, Michael Abshoff wrote: Thanks. Could you also apply it to 1.2.x cvs? Possibly. But I guess there won't be 1.2.x releases anymore. Andre' That might be so. When I look at the different versions of lyx in the major

Re: BUG: lyx-1.3pre3 mangels optional argument on \xrightarrow

2003-01-31 Thread Michael Abshoff
that in the obviously correct corner. It fixes the problem in the file Michael sent us] Andre' I will give it a shot this afternoon and report back. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

BUG: lyx-1.3pre3 mangels optional argument on \xrightarrow

2003-01-31 Thread Michael Abshoff
appearant paramter take the '[' as parameter. Are there any clever ways besides writing a macro for xrigtharrow to fix that problem? Attached are a sample file, the imported document deom 1.3pre3 an the tex-export from 1.3pre3. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463

Re: BUG: lyx-1.3pre3 mangels optional argument on \xrightarrow

2003-01-31 Thread Michael Abshoff
Andre Poenitz wrote: On Fri, Jan 31, 2003 at 11:42:04AM +0100, Michael Abshoff wrote: up to lyx-1.1.6fix4 it was possible to specify an optional argument for xrightarrow, i.e. \xrightarrow[optinal]{blah}. Looks like this inset was forgotten at some point of time. Are there any

Re: BUG: lyx-1.3pre3 mangels optional argument on \xrightarrow

2003-01-31 Thread Michael Abshoff
Andre Poenitz wrote: On Fri, Jan 31, 2003 at 12:43:14PM +0100, Michael Abshoff wrote: Thanks. Could you also apply it to 1.2.x cvs? Possibly. But I guess there won't be 1.2.x releases anymore. Andre' That might be so. When I look at the different versions of lyx in the major

Re: BUG: lyx-1.3pre3 mangels optional argument on \xrightarrow

2003-01-31 Thread Michael Abshoff
that in the "obviously correct" corner. It fixes the problem in the file Michael sent us] Andre' I will give it a shot this afternoon and report back. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

BUG: choice-dialog in 1.3pre3

2003-01-30 Thread Michael Abshoff
with the cursor highlightning the cancel button. Pressing Y, N or C results in cancellation and the menu ist closed. If the cursor is not over the cancel button pressing Y, N or C has no effect. Using the mouse works. Keep up the good work, Michael -- Michael Abshoff - MRB - Universität Dortmund

1.2.X CVS access

2003-01-30 Thread Michael Abshoff
Hello, the anoncvs-server doesn't seem to give access to the lyx-1.2.x branch. I am stupid today or is that branch limited to the developers-CVS? Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

BUG: Preview - cursor interaction in 1.3pre3

2003-01-30 Thread Michael Abshoff
easily visible. 2. Clich on formula, that is in preview-mode - Formula is displayed in Editing-Mode 3. Click outside of formula - now everything from the cursor to the formula previously selected is marked in blue. Cheers, Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463

BUG: extra braces displayed when using atop

2003-01-30 Thread Michael Abshoff
of a cosmetic bug. IIRC there was a discussion roughly six months ago when lyx 1.2 was released about it eating braces when importing documents from 1.1.6. 1.2.3 shows the same behavior. Cheers, Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want

BUG: choice-dialog in 1.3pre3

2003-01-30 Thread Michael Abshoff
with the cursor highlightning the "cancel" button. Pressing "Y", "N" or "C" results in cancellation and the menu ist closed. If the cursor is not over the cancel button pressing "Y", "N" or "C" has no effect. Using the mo

1.2.X CVS access

2003-01-30 Thread Michael Abshoff
Hello, the anoncvs-server doesn't seem to give access to the lyx-1.2.x branch. I am stupid today or is that branch limited to the developers-CVS? Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

BUG: Preview <-> cursor interaction in 1.3pre3

2003-01-30 Thread Michael Abshoff
easily visible. 2. Clich on formula, that is in "preview-mode" -> Formula is displayed in "Editing-Mode" 3. Click outside of formula - now everything from the cursor to the formula previously selected is marked in blue. Cheers, Michael -- Michael Abshoff - MRB - Universität

BUG: extra braces displayed when using atop

2003-01-30 Thread Michael Abshoff
of a cosmetic bug. IIRC there was a discussion roughly six months ago when lyx 1.2 was released about it eating braces when importing documents from 1.1.6. 1.2.3 shows the same behavior. Cheers, Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want

Re: Bug in Qt frontend in CVS lyx?

2003-01-15 Thread Michael Abshoff
. or do xset +fp /usr/local/share/lyx-1.2.3/xfonts before you start lyx. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

Re: Bug in Qt frontend in CVS lyx?

2003-01-15 Thread Michael Abshoff
. or do xset +fp /usr/local/share/lyx-1.2.3/xfonts before you start lyx. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

Re: Prerelease #2 of LyX 1.3.0

2003-01-14 Thread Michael Abshoff
this one out. Hello, I just did a cvs update from anoncvs.us.lyx.org. I don't get a splash-screen proclaiming lyx 1.3pre2 and the version-info still shows 1.3pre1. Do you guys use another cvs-server or is this an oversight? Michael -- Michael Abshoff - MRB - Universität Dortmund

Re: Prerelease #2 of LyX 1.3.0

2003-01-14 Thread Michael Abshoff
this one out. Hello, I just did a cvs update from anoncvs.us.lyx.org. I don't get a splash-screen proclaiming lyx 1.3pre2 and the version-info still shows 1.3pre1. Do you guys use another cvs-server or is this an oversight? Michael -- Michael Abshoff - MRB - Universität Dortmund

Re: [WARNING] Bad bug in lyx 1.2.2 configure script

2003-01-09 Thread Michael Abshoff
be used. Are you guys still interested in bugreports fpr lyx 1.2.2? I am compiling a list of oddities and unexpected behaviours, but I won't be done till late friday. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

Re: [WARNING] Bad bug in lyx 1.2.2 configure script

2003-01-09 Thread Michael Abshoff
be used. Are you guys still interested in bugreports fpr lyx 1.2.2? I am compiling a list of oddities and unexpected behaviours, but I won't be done till late friday. Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) Where do you want to RTFM today?

Re: [WARNING] Bad bug in lyx 1.2.2 configure script

2003-01-08 Thread Michael Abshoff
, On my RedHat 8.0 machine /dev/null is a character device with major mode 1, minor mode 3 and mode a+rw - use mknod to make a new one. On Solaris, it's a soft link to /devices/pseudo/mm@0:null - use ln to recreate. Bill. -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern

Re: [WARNING] Bad bug in lyx 1.2.2 configure script

2003-01-08 Thread Michael Abshoff
, On my RedHat 8.0 machine /dev/null is a character device with major mode 1, minor mode 3 and mode a+rw - use mknod to make a new one. On Solaris, it's a soft link to /devices/pseudo/mm@0:null - use ln to recreate. Bill. -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern

Footnote Bug in Math-Environment

2002-09-09 Thread Michael Abshoff
in my case. Cheers, keep the good work up, Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) #LyX 1.1 created this file. For more info see http://www.lyx.org/ \lyxformat 218 \textclass article \begin_preamble \newcommand{\ds}{\displaystyle} \usepackage{tocloft

Footnote Bug in Math-Environment

2002-09-09 Thread Michael Abshoff
but I like the double-$-version much better - it makes it much more readable in my case. Cheers, keep the good work up, Michael -- Michael Abshoff - MRB - Universität Dortmund - Telefon 755-3463 (intern) #LyX 1.1 created this file. For more info see http://www.lyx.org/ \lyxformat 218 \textclass

Reporting Bugs

2002-06-14 Thread Michael Abshoff
-- Michael Abshoff - MRB - Uni Dortmund - 0231-755-3463

Reporting Bugs

2002-06-14 Thread Michael Abshoff
-- Michael Abshoff - MRB - Uni Dortmund - 0231-755-3463

2 new Bugs

2001-06-18 Thread Michael Abshoff
in mathmode in the index-entry , when makeindex pucks. You get around this bug buy turning of bold just before adding an index entry. Attached are two short LyX-File plus their latex Export to document these behaviours. Michael Abshoff %% LyX 1.1 created this file. For more info, see http

2 new Bugs

2001-06-18 Thread Michael Abshoff
in mathmode in the index-entry , when makeindex pucks. You get around this bug buy turning of bold just before adding an index entry. Attached are two short LyX-File plus their latex Export to document these behaviours. Michael Abshoff %% LyX 1.1 created this file. For more info, see http