fix to texinfo; fix to genenration of relyx/noweb2lyx

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@6282 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2003-02-26 15:19:16 +00:00
parent 2af50c3a7d
commit 998382f263
5 changed files with 39 additions and 30 deletions

View File

@ -1,3 +1,8 @@
2003-02-26 Albert Chin <china@thewrittenword.com>
* relyx_configure.ac: fix application of `chmod' to the reLyX and
noweb2lyx scripts
2003-02-20 Kayvan A. Sylvan <kayvan@sylvan.com>
* configure.ac, configure.in: add RPM_FRONTEND stuff to

View File

@ -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

View File

@ -1,3 +1,8 @@
2003-02-17 Rob Lahaye <lahaye@snu.ac.kr>
* FormTexinfo.C: fix full filename lookup when showing
file without fullpath.
2003-02-16 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* FormPreferences.C (apply): when changing font_norm, call

View File

@ -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<string>::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);
}

View File

@ -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.