]> git.lyx.org Git - features.git/commitdiff
replace links to bugzilla with links to trac
authorUwe Stöhr <uwestoehr@web.de>
Fri, 11 Dec 2009 00:59:10 +0000 (00:59 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Fri, 11 Dec 2009 00:59:10 +0000 (00:59 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32469 a592a061-630c-0410-9148-cb99ea01b6c8

src/BufferParams.cpp
src/DocIterator.cpp
src/LaTeXFeatures.cpp
src/LyXFunc.cpp
src/Text3.cpp
src/frontends/qt4/FileDialog.cpp
src/frontends/qt4/GuiFontLoader.cpp
src/frontends/qt4/TocModel.h
src/insets/InsetCaption.cpp
src/support/FileName.cpp

index 8c62dcf4ab7710d97c983b640e05ba8ab7b294ec..cfc893bbf6cf59854ca1afd10ca560c91590a8de 100644 (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
index ecf121582886c6a70ac810491d8570c3a7eb25fc..425c6d6d5edc737e0726657a5e71e55b275cf217 100644 (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();
index 47b549a440138a6c211f862fa340bc352e0b8b73..457029319b8109da841cf89bfac087c1840ee31e 100644 (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";
index e5db6106bcaf4a4fc19a5207140cff01ed29da05..b3f25f5353dbd63886475ccb7959ccf6c5d0931a 100644 (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(
index 18adc7d4317dd5bb0791d8b6eb789d6796465b3e..1f9e355812da1a59d29fd03e8564b9fe39c843e7 100644 (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.
index 40105c67b99b52a45ee8f2c82278d437e0bead24..51e49917cfa136191b709c7eedac2ebbb212d21a 100644 (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)
  */
index dac59a6ad2f2a8cbe5b9063400693dd7001efd1f..ff3fe53675c1bdaf1b0a2f632d72b0278afab574 100644 (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())
index bc479c7de13044be924952f0dae059c2c1e3682c..7475416160198a57ac531b2341acaeee25b3f959 100644 (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:
index 7f96e35433c894d804b33572fbfef44c474c8666..48251d0448f0c66600c4c28812eec19a65694f8c 100644 (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);
index ffe14c4f886ec98181a616c860047588ec314e65..e79772e0ec3f954a402e9280b040c57d209c2d5d 100644 (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)