replace links to bugzilla with links to trac

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32469 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2009-12-11 00:59:10 +00:00
parent 19bec6e8bc
commit 83b1c48846
10 changed files with 20 additions and 12 deletions

View File

@ -1056,7 +1056,7 @@ void BufferParams::validate(LaTeXFeatures & features) const
features.require("hyperref");
// due to interferences with babel and hyperref, the color package has to
// be loaded after hyperref when hyperref is used with the colorlinks
// option, see http://bugzilla.lyx.org/show_bug.cgi?id=5291
// option, see http://www.lyx.org/trac/ticket/5291
if (pdfoptions().colorlinks)
features.require("color");
}
@ -1173,7 +1173,7 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
size_t mongo = language_options.str().find("mongolian");
// if Japanese is used, babel must directly be loaded
// with language options, not in the class options, see
// http://bugzilla.lyx.org/show_bug.cgi?id=4597#c4
// http://www.lyx.org/trac/ticket/4597#c4
size_t japan = language_options.str().find("japanese");
if (lyxrc.language_global_options && !language_options.str().empty()
&& viet == string::npos && japan == string::npos
@ -1441,7 +1441,7 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
// due to interferences with babel and hyperref, the color package has to
// be loaded (when it is not already loaded) before babel when hyperref
// is used with the colorlinks option, see
// http://bugzilla.lyx.org/show_bug.cgi?id=5291
// http://www.lyx.org/trac/ticket/5291
// we decided therefore to load color always before babel, see
// http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg144349.html
lyxpreamble += from_ascii(features.getColorOptions());
@ -2016,7 +2016,7 @@ string BufferParams::babelCall(string const & lang_opts) const
size_t mongo = lang_opts.find("mongolian");
// If Japanese is used, babel must directly be loaded with the
// language options, see
// http://bugzilla.lyx.org/show_bug.cgi?id=4597#c4
// http://www.lyx.org/trac/ticket/4597#c4
size_t japan = lang_opts.find("japanese");
if (!lyxrc.language_global_options || viet != string::npos
|| japan != string::npos || latvian != string::npos

View File

@ -111,7 +111,7 @@ Inset * DocIterator::prevInset() const
if (cell().empty())
// FIXME: this should not happen but it does.
// See bug 3189
// http://bugzilla.lyx.org/show_bug.cgi?id=3189
// http://www.lyx.org/trac/ticket/3189
return 0;
else
return prevAtom().nucleus();

View File

@ -640,7 +640,7 @@ string const LaTeXFeatures::getPackages() const
// the document does not contain integrals (then isRequired("esint")
// is false) or if esint is used, since esint redefines all relevant
// integral symbols from wasysym and amsmath.
// See http://bugzilla.lyx.org/show_bug.cgi?id=1942
// See http://www.lyx.org/trac/ticket/1942
if (mustProvide("wasysym") &&
(params_.use_esint != BufferParams::package_off || !isRequired("esint")))
packages << "\\usepackage{wasysym}\n";

View File

@ -142,7 +142,7 @@ void LyXFunc::gotoBookmark(unsigned int idx, bool openFile, bool switchToBuffer)
int new_id = cur.paragraph().id();
// if bottom_pit, bottom_pos or top_id has been changed, update bookmark
// see http://bugzilla.lyx.org/show_bug.cgi?id=3092
// see http://www.lyx.org/trac/ticket/3092
if (bm.bottom_pit != new_pit || bm.bottom_pos != new_pos
|| bm.top_id != new_id) {
const_cast<BookmarksSection::Bookmark &>(bm).updatePos(

View File

@ -1057,7 +1057,7 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
if (inset) {
// FIXME (Abdel 01/02/2006):
// What follows would be a partial fix for bug 2154:
// http://bugzilla.lyx.org/show_bug.cgi?id=2154
// http://www.lyx.org/trac/ticket/2154
// This automatically put the label inset _after_ a
// numbered section. It should be possible to extend the mechanism
// to any kind of LateX environement.

View File

@ -31,7 +31,7 @@
* parameters);
* - with Qt/Mac or Qt/Win, the dialogs native to the environment are used.
* - with Qt/Win and Qt <= 4.3.0, there was a number of bugs with our own
* file dialog (http://bugzilla.lyx.org/show_bug.cgi?id=3907).
* file dialog (http://www.lyx.org/trac/ticket/3907).
*
* Therefore there is a tradeoff in enabling or disabling this (JMarc)
*/

View File

@ -262,7 +262,7 @@ GuiFontInfo::GuiFontInfo(FontInfo const & f)
font.setFamily(family);
#ifdef Q_WS_MACX
#if QT_VERSION >= 0x040300
// Workaround for a Qt bug, see http://bugzilla.lyx.org/show_bug.cgi?id=3684
// Workaround for a Qt bug, see http://www.lyx.org/trac/ticket/3684
// It is reported to Trolltech at 02/06/07 against 4.3 final.
// FIXME: Add an upper version limit as soon as the bug is fixed in Qt.
if (family == "Times" && !font.exactMatch())

View File

@ -30,7 +30,7 @@ class TocItem;
namespace frontend {
/// A QStandardItemModel that gives access to the reset method.
/// This is needed in order to fix http://bugzilla.lyx.org/show_bug.cgi?id=3740
/// This is needed in order to fix http://www.lyx.org/trac/ticket/3740
class TocTypeModel : public QStandardItemModel
{
public:

View File

@ -174,6 +174,14 @@ bool InsetCaption::insetAllowed(InsetCode code) const
case CAPTION_CODE:
case NEWPAGE_CODE:
case MATHMACRO_CODE:
case MATH_AMSARRAY_CODE:
case MATH_BOX_CODE:
case MATH_ENV_CODE:
case MATH_MATRIX_CODE:
case MATH_OVERSET_CODE:
case MATH_SUBSTACK_CODE:
case MATH_UNDERSET_CODE:
case MATH_XYMATRIX_CODE:
return false;
default:
return InsetText::insetAllowed(code);

View File

@ -504,7 +504,7 @@ unsigned long FileName::checksum() const
#if QT_VERSION >= 0x999999
// First version of checksum uses Qt4.4 mmap support.
// FIXME: This code is not ready with Qt4.4.2,
// see http://bugzilla.lyx.org/show_bug.cgi?id=5293
// see http://www.lyx.org/trac/ticket/5293
// FIXME: should we check if the MapExtension extension is supported?
// see QAbstractFileEngine::supportsExtension() and
// QAbstractFileEngine::MapExtension)