diff --git a/config/ChangeLog b/config/ChangeLog index ee036873d8..7e2cb08a20 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,8 @@ +2003-02-26 Albert Chin + + * relyx_configure.ac: fix application of `chmod' to the reLyX and + noweb2lyx scripts + 2003-02-20 Kayvan A. Sylvan * configure.ac, configure.in: add RPM_FRONTEND stuff to diff --git a/config/relyx_configure.ac b/config/relyx_configure.ac index d5095132a9..4e0c64a5af 100644 --- a/config/relyx_configure.ac +++ b/config/relyx_configure.ac @@ -38,7 +38,9 @@ AC_PROG_INSTALL RELYX_CHECK_PERL dnl Finish the work -AC_CONFIG_FILES(Makefile reLyX noweb2lyx, chmod 755 reLyX noweb2lyx) +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([reLyX], [chmod 755 reLyX]) +AC_CONFIG_FILES([noweb2lyx], [chmod 755 noweb2lyx]) AC_OUTPUT RELYX_CHECK_ERRORS diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index 775376c361..d9ba05e53a 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,3 +1,8 @@ +2003-02-17 Rob Lahaye + + * FormTexinfo.C: fix full filename lookup when showing + file without fullpath. + 2003-02-16 Jean-Marc Lasgouttes * FormPreferences.C (apply): when changing font_norm, call diff --git a/src/frontends/xforms/FormTexinfo.C b/src/frontends/xforms/FormTexinfo.C index 5aad9070b2..8c04d0dc57 100644 --- a/src/frontends/xforms/FormTexinfo.C +++ b/src/frontends/xforms/FormTexinfo.C @@ -83,11 +83,8 @@ ButtonPolicy::SMInput FormTexinfo::input(FL_OBJECT * ob, long ob_value) { } else if (ob == dialog_->browser && ob_value == 2) { // double click in browser: view selected file - string selection = string(); - if (fl_get_button(dialog_->check_fullpath)) { - // contents in browser has full path - selection = getString(dialog_->browser); - } else { + string selection = getString(dialog_->browser); + if (!fl_get_button(dialog_->check_fullpath)) { // contents in browser has filenames without path // reconstruct path from controller getContents string const files = controller().getContents(activeStyle, true); @@ -95,12 +92,13 @@ ButtonPolicy::SMInput FormTexinfo::input(FL_OBJECT * ob, long ob_value) { // find line in files vector vector::const_iterator it = vec.begin(); - int const line = fl_get_browser(dialog_->browser); - for (int i = line; it != vec.end() && i > 0; ++it, --i) { - if (i == 1) selection = *it; + for (; it != vec.end(); ++it) { + if ((*it).find(selection) != string::npos) { + selection = *it; + break; + } } } - if (!selection.empty()) { controller().viewFile(selection); } diff --git a/status.13x b/status.13x index e1ab1621b3..30ac33f028 100644 --- a/status.13x +++ b/status.13x @@ -43,18 +43,26 @@ What's new - fix mathed bug where curly brackets in, e.g. {a^b}^c, would get lost and cause TeX errors -- graphics that have been set to not display in LyX are no longer - converted [bug #920] - - delete lyxserver pipes on exit [bug #865, Qt only] - fix bug where "lyx -e" would refuse to work [bug #788, Qt only] -- some tab-navigation problems in dialogs fixed [Qt only] +- graphics that have been set to not display in LyX are no longer + converted [bug #920] + +- squash a potential bug in the PreviewLoader before it bites. + +- don't cause a warning message to complain about starting an already running + timer. Just don't start it ;-) + +- prevent incorrect warning message about failing to find a graphics file to + load when all is actually fine and dandy. - The printer parameter preferences for "spool command" and "file extension" were accidentally made the same [Qt only] +- Update the language of the text after changing the document language. + - fix display of right quote inset - fix off-by-one error in placement of error insets @@ -67,6 +75,8 @@ What's new - duplicate 'i' shortcut in paragraph dialog fixed [bug #918, Qt only] +- some tab-navigation problems in dialogs fixed [Qt only] + - in the BibTeX dialog, fix the browsing mechanism of *.sty files and remove the unused Update button [bug #773, Qt only] @@ -76,40 +86,29 @@ What's new - duplicate 'a' shortcut in graphics dialog fixed [XForms only] -- revert is now disabled for an unchanged or unsaved document [bug #783] - - fix bug where changing encoding of screen fonts would not work immediately [XForms only] - in the dialogs, replace LaTeX font size names by LyX names for consistency reasons and to resolve a translation conflict -- fix detection of fax programs +- revert is now disabled for an unchanged or unsaved document [bug #783] - enable the debug level to be set in lyx2lyx -- fix strerror() build problem with some gcc/glibc versions [bug #874] +- fix detection of fax programs -- revert is now disabled for an unchanged or unsaved document [bug #783] +- fix strerror() build problem with some gcc/glibc versions [bug #874] - fix compilation on OpenBSD - mention in INSTALL file that the qt frontend is selected using --with-frontend=qt +- fix problem in generation of the reLyX and noweb2lyx scripts + - add a few autoconf-related files that were missing from the distribution - improve the lyx.spec file used to produce rpms -- enable the lyx2lyx debug level to be set - -- squash a potential bug in the PreviewLoader before it bites. - -- don't cause a warning message to complain about starting an already running - timer. Just don't start it ;-) - -- prevent incorrect warning message about failing to find a graphics file to - load when all is actually fine and dandy. - -- Update the language of the text after changing the document language.