From: Jean-Marc Lasgouttes Date: Thu, 14 Sep 2000 13:50:47 +0000 (+0000) Subject: Update to hollywood; tweak to lyxlex debug messages X-Git-Tag: 1.6.10~21996 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=43b967349298437e051e9a783fbcde4f2c46d945;p=features.git Update to hollywood; tweak to lyxlex debug messages git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1017 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/ChangeLog b/ChangeLog index 241e1a5fb5..66ada6d24e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2000-09-14 Garst Reese + + * lib/tex/hollywood.cls changed length of parenthicals to 1.5in + moved usepackage{xxx}'s to beginning of file. Changed left margin + to 1.5in, right margin to 1in. Forced headrulewidth to 0, removed + underlining from title. Thanks to John Culleton for useful suggestions. + +2000-09-13 Jean-Marc Lasgouttes + + * src/lyxlex_pimpl.C (setFile): change error message to debug + message. + 2000-09-13 Juergen Vigna * src/frontends/xforms/FormDocument.C: implemented choice_class diff --git a/lib/tex/hollywood.cls b/lib/tex/hollywood.cls index 8421dd868c..37fe8d111f 100644 --- a/lib/tex/hollywood.cls +++ b/lib/tex/hollywood.cls @@ -6,6 +6,11 @@ %% that could be deleted. \NeedsTeXFormat{LaTeX2e} \ProvidesClass{hollywood} [1998/10/27 v1.0 uses hollywood.layout] +\usepackage{fancyhdr} +\usepackage{extramarks} +\usepackage{ifthen} +\usepackage{lastpage} +\pagestyle{fancy} \renewcommand{\ref}[1]{#1} \newcommand\@ptsize{} \newif\if@restonecol @@ -42,7 +47,7 @@ \@medpenalty 151 \@highpenalty 301 \setcounter{topnumber}{2} -% \renewcommand{\headrulewidth}{0pt} +\renewcommand{\headrulewidth}{0pt} \renewcommand\topfraction{.7} \setcounter{bottomnumber}{1} \renewcommand\bottomfraction{.3} @@ -73,7 +78,8 @@ \null\vfil \vskip 60\p@ \begin{center}% - { \underline{\@title} \par}% +%% { \underline{\@title} \par}% + { \@title \par}% \vskip 3em% {\lineskip .75em% \begin{tabular}[t]{c}% @@ -155,11 +161,6 @@ \else \onecolumn \fi -\usepackage{fancyhdr} -\usepackage{extramarks} -\usepackage{ifthen} -\usepackage{lastpage} -\pagestyle{fancy} % This stuff is for a shooting script % \lhead{\ifthenelse{ \not \value{page} = 1}{CONTINUED:}{}} % \rfoot{\ifthenelse{ \not \value{page}=\pageref{LastPage}}{(CONT'D)} @@ -169,7 +170,6 @@ % This is what we want for a spec script \rhead{\thepage.} \cfoot{} -% \renewcommand{\headrulewitdh}{0pt} % This one is needed to get real adobe courier, but you can use % cmtt which is also correct \renewcommand{\familydefault}{pcr} @@ -210,7 +210,7 @@ \newcommand{\parenthetical}[1]% {\raggedright \hspace{1.75in} -\parbox{3in}{(#1)} +\parbox{1.5in}{(#1)} \vspace{6pt}} \endinput diff --git a/po/POTFILES.in b/po/POTFILES.in index f4fe983d11..a70f1b39b2 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -36,6 +36,8 @@ src/frontends/kde/formcitationdialog.C src/frontends/kde/FormCopyright.C src/frontends/kde/FormIndex.C src/frontends/kde/formindexdialog.C +src/frontends/kde/FormRef.C +src/frontends/kde/formrefdialog.C src/frontends/kde/FormToc.C src/frontends/kde/formtocdialog.C src/frontends/kde/FormUrl.C diff --git a/src/lyxlex_pimpl.C b/src/lyxlex_pimpl.C index cc0c0d537e..ba0d7d2aab 100644 --- a/src/lyxlex_pimpl.C +++ b/src/lyxlex_pimpl.C @@ -107,8 +107,11 @@ void LyXLex::Pimpl::popTable() bool LyXLex::Pimpl::setFile(string const & filename) { + // The check only outputs a debug message, because it triggers + // a bug in compaq cxx 6.2, where is_open() returns 'true' for a + // fresh new filebuf. (JMarc) if (fb__.is_open() || is.tellg() > 0) - lyxerr << "Error in LyXLex::setFile: " + lyxerr[Debug::LYXLEX] << "Error in LyXLex::setFile: " "file or stream already set." << endl; fb__.open(filename.c_str(), ios::in); is.rdbuf(&fb__); @@ -121,7 +124,7 @@ bool LyXLex::Pimpl::setFile(string const & filename) void LyXLex::Pimpl::setStream(istream & i) { if (fb__.is_open() || is.tellg() > 0) - lyxerr << "Error in LyXLex::setStream: " + lyxerr[Debug::LYXLEX] << "Error in LyXLex::setStream: " "file or stream already set." << endl; is.rdbuf(i.rdbuf()); lineno = 0;