diff options
author | dennisroczek <dennisroczek@libreoffice.org> | 2018-04-01 14:32:19 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-01 22:23:54 +0200 |
commit | 783bc62734534b3f01339c9922ff354adec05165 (patch) | |
tree | 7c71dc58ad58155a433935c3d1ea1d5b9e6e3392 | |
parent | 6e7f6dd20aa58cb4c9ab66260a62d71a53002b9b (diff) |
fix some openoffice bugzilla links
* remove redirects
* use https links
* replace old attchment links with working ones
Change-Id: Ic9a154f46e142138f0adea7d7b8be3b6cfe8af18
Reviewed-on: https://gerrit.libreoffice.org/52224
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | chart2/source/tools/ThreeDHelper.cxx | 8 | ||||
-rw-r--r-- | connectivity/source/parse/sqlnode.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/core/dataaccess/documentevents.cxx | 4 | ||||
-rw-r--r-- | dbaccess/source/ui/app/AppController.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/QueryDesignView.cxx | 2 | ||||
-rw-r--r-- | forms/qa/integration/forms/MasterDetailForms.java | 2 | ||||
-rw-r--r-- | fpicker/source/aqua/SalAquaFilePicker.mm | 2 | ||||
-rw-r--r-- | i18npool/source/inputchecker/inputsequencechecker_th.cxx | 2 | ||||
-rw-r--r-- | scaddins/source/analysis/bessel.cxx | 4 | ||||
-rw-r--r-- | sfx2/qa/complex/sfx2/UndoManager.java | 2 | ||||
-rw-r--r-- | svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx | 18 | ||||
-rw-r--r-- | svx/source/unodraw/unoshape.cxx | 2 | ||||
-rw-r--r-- | sw/source/filter/inc/msfilter.hxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/README-rtf.txt | 22 | ||||
-rw-r--r-- | sw/source/filter/ww8/fields.hxx | 2 |
15 files changed, 38 insertions, 38 deletions
diff --git a/chart2/source/tools/ThreeDHelper.cxx b/chart2/source/tools/ThreeDHelper.cxx index facec9710c8e..764598c66de3 100644 --- a/chart2/source/tools/ThreeDHelper.cxx +++ b/chart2/source/tools/ThreeDHelper.cxx @@ -408,8 +408,8 @@ void ThreeDHelper::convertElevationRotationDegToXYZAngleRad( double& rfXAngleRad, double& rfYAngleRad, double& rfZAngleRad) { // for a description of the algorithm see issue 72994 - //http://www.openoffice.org/issues/show_bug.cgi?id=72994 - //http://www.openoffice.org/nonav/issues/showattachment.cgi/50608/DescriptionCorrected.odt + //https://bz.apache.org/ooo/show_bug.cgi?id=72994 + //https://bz.apache.org/ooo/attachment.cgi?id=50608 lcl_shiftAngleToIntervalZeroTo360( nElevationDeg ); lcl_shiftAngleToIntervalZeroTo360( nRotationDeg ); @@ -590,8 +590,8 @@ void ThreeDHelper::convertXYZAngleRadToElevationRotationDeg( double fXRad, double fYRad, double fZRad) { // for a description of the algorithm see issue 72994 - //http://www.openoffice.org/issues/show_bug.cgi?id=72994 - //http://www.openoffice.org/nonav/issues/showattachment.cgi/50608/DescriptionCorrected.odt + //https://bz.apache.org/ooo/show_bug.cgi?id=72994 + //https://bz.apache.org/ooo/attachment.cgi?id=50608 double R = 0.0; //Rotation in Rad double E = 0.0; //Elevation in Rad diff --git a/connectivity/source/parse/sqlnode.cxx b/connectivity/source/parse/sqlnode.cxx index cdd78496ad6c..e5349c7feded 100644 --- a/connectivity/source/parse/sqlnode.cxx +++ b/connectivity/source/parse/sqlnode.cxx @@ -725,7 +725,7 @@ void OSQLParseNode::impl_parseLikeNodeToString_throw( OUStringBuffer& rString, c const OSQLParseNode* pParaNode = nullptr; SQLParseNodeParameter aNewParam(rParam); - //aNewParam.bQuote = sal_True; // why setting this to true? @see http://www.openoffice.org/issues/show_bug.cgi?id=75557 + //aNewParam.bQuote = sal_True; // why setting this to true? @see https://bz.apache.org/ooo/show_bug.cgi?id=75557 if ( !(bSimple && rParam.bPredicate && rParam.xField.is() && SQL_ISRULE(m_aChildren[0],column_ref) && columnMatchP(m_aChildren[0].get(), rParam)) ) m_aChildren[0]->impl_parseNodeToString_throw( rString, aNewParam, bSimple ); diff --git a/dbaccess/source/core/dataaccess/documentevents.cxx b/dbaccess/source/core/dataaccess/documentevents.cxx index 2c1a161a5f4c..95c6c42634bd 100644 --- a/dbaccess/source/core/dataaccess/documentevents.cxx +++ b/dbaccess/source/core/dataaccess/documentevents.cxx @@ -72,8 +72,8 @@ namespace dbaccess static const DocumentEventData s_aData[] = { { "OnCreate", true }, { "OnLoadFinished", true }, - { "OnNew", false }, // compatibility, see http://www.openoffice.org/issues/show_bug.cgi?id=46484 - { "OnLoad", false }, // compatibility, see http://www.openoffice.org/issues/show_bug.cgi?id=46484 + { "OnNew", false }, // compatibility, see https://bz.apache.org/ooo/show_bug.cgi?id=46484 + { "OnLoad", false }, // compatibility, see https://bz.apache.org/ooo/show_bug.cgi?id=46484 { "OnSaveAs", true }, { "OnSaveAsDone", false }, { "OnSaveAsFailed", false }, diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx index b20b68d734a1..8dcdc3d876f2 100644 --- a/dbaccess/source/ui/app/AppController.cxx +++ b/dbaccess/source/ui/app/AppController.cxx @@ -1768,7 +1768,7 @@ Reference< XComponent > OApplicationController::openElementWithArguments( const Reference< XComponent > xRet; if ( _eOpenMode == E_OPEN_DESIGN ) { - // OJ: http://www.openoffice.org/issues/show_bug.cgi?id=30382 + // https://bz.apache.org/ooo/show_bug.cgi?id=30382 getContainer()->showPreview(nullptr); } diff --git a/dbaccess/source/ui/querydesign/QueryDesignView.cxx b/dbaccess/source/ui/querydesign/QueryDesignView.cxx index ece234f9eeee..f18129a85a18 100644 --- a/dbaccess/source/ui/querydesign/QueryDesignView.cxx +++ b/dbaccess/source/ui/querydesign/QueryDesignView.cxx @@ -1197,7 +1197,7 @@ namespace pNodeTmp = pNode->getChild(1); ::connectivity::OSQLParseNode::absorptions(pNodeTmp); pNodeTmp = pNode->getChild(1); - // compress sort the criteria @see http://www.openoffice.org/issues/show_bug.cgi?id=24079 + // compress sort the criteria @see https://bz.apache.org/ooo/show_bug.cgi?id=24079 OSQLParseNode::compress(pNodeTmp); pNodeTmp = pNode->getChild(1); diff --git a/forms/qa/integration/forms/MasterDetailForms.java b/forms/qa/integration/forms/MasterDetailForms.java index e13da5d575da..4b448fe04b93 100644 --- a/forms/qa/integration/forms/MasterDetailForms.java +++ b/forms/qa/integration/forms/MasterDetailForms.java @@ -265,7 +265,7 @@ public class MasterDetailForms extends complexlib.ComplexTestCase implements com impl_waitForLoadedEvent(); // now that we set up this, do the actual tests - // First, http://www.openoffice.org/issues/show_bug.cgi?id=105235 described the problem + // First, https://bz.apache.org/ooo/show_bug.cgi?id=105235 described the problem // that default values in the sub form didn't work when the master form was navigated to a row // for which no detail records were present, and the default of the column/control is the same // as the last known value. diff --git a/fpicker/source/aqua/SalAquaFilePicker.mm b/fpicker/source/aqua/SalAquaFilePicker.mm index e76a30b67203..32c56c6ca635 100644 --- a/fpicker/source/aqua/SalAquaFilePicker.mm +++ b/fpicker/source/aqua/SalAquaFilePicker.mm @@ -122,7 +122,7 @@ sal_Int16 SAL_CALL SalAquaFilePicker::execute() implInitialize(); // if m_pDialog is nil after initialization, something must have gone wrong before - // or there was no initialization (see issue http://www.openoffice.org/issues/show_bug.cgi?id=100214) + // or there was no initialization (see issue https://bz.apache.org/ooo/show_bug.cgi?id=100214) if (m_pDialog == nil) { m_nDialogType = NAVIGATIONSERVICES_OPEN; } diff --git a/i18npool/source/inputchecker/inputsequencechecker_th.cxx b/i18npool/source/inputchecker/inputsequencechecker_th.cxx index c01d4ff35089..0aa2074d77a0 100644 --- a/i18npool/source/inputchecker/inputsequencechecker_th.cxx +++ b/i18npool/source/inputchecker/inputsequencechecker_th.cxx @@ -91,7 +91,7 @@ InputSequenceChecker_th::correctInputSequence(OUString& Text, { /* 9 rules for input sequence correction, see issue i42661 for detail, -http://www.openoffice.org/issues/show_bug.cgi?id=42661 +https://bz.apache.org/ooo/show_bug.cgi?id=42661 <abv> = <av1>|<av2>|<av3>|<bv1>|<bv2> <abv1> = <av1>|<bv1> diff --git a/scaddins/source/analysis/bessel.cxx b/scaddins/source/analysis/bessel.cxx index ee41ce07b8a3..31c092e20c99 100644 --- a/scaddins/source/analysis/bessel.cxx +++ b/scaddins/source/analysis/bessel.cxx @@ -317,7 +317,7 @@ double BesselK( double fNum, sal_Int32 nOrder ) Chapter 6.3.2 , algorithm 6.24 The source is in German. See #i31656# for a commented version of the implementation, attachment #desc6 - http://www.openoffice.org/nonav/issues/showattachment.cgi/63609/Comments%20to%20the%20implementation%20of%20the%20Bessel%20functions.odt + https://bz.apache.org/ooo/attachment.cgi?id=63609 */ /// @throws IllegalArgumentException @@ -372,7 +372,7 @@ double Bessely0( double fX ) } // See #i31656# for a commented version of this implementation, attachment #desc6 -// http://www.openoffice.org/nonav/issues/showattachment.cgi/63609/Comments%20to%20the%20implementation%20of%20the%20Bessel%20functions.odt +// https://bz.apache.org/ooo/attachment.cgi?id=63609 /// @throws IllegalArgumentException /// @throws NoConvergenceException double Bessely1( double fX ) diff --git a/sfx2/qa/complex/sfx2/UndoManager.java b/sfx2/qa/complex/sfx2/UndoManager.java index a8e6bcdba861..838958fc1ebf 100644 --- a/sfx2/qa/complex/sfx2/UndoManager.java +++ b/sfx2/qa/complex/sfx2/UndoManager.java @@ -224,7 +224,7 @@ public class UndoManager }; events.replaceByName( "OnViewCreated", scriptDescriptor ); - // The below doesn't work: event notification is broken in m96, see http://www.openoffice.org/issues/show_bug.cgi?id=116313 + // The below doesn't work: event notification is broken in m96, see https://bz.apache.org/ooo/show_bug.cgi?id=116313 m_callbackCalled = false; m_currentDocument.getCurrentView().dispatch( ".uno:NewWindow" ); assertTrue( "triggering an event did not work as expected - basic script not called", m_callbackCalled ); diff --git a/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx b/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx index 5dd4c7abcf83..f949f0803ac4 100644 --- a/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx +++ b/svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx @@ -65,31 +65,31 @@ Below is a list of issues which existed in the past. Whenever you change code he verify those issues are still fixed. (Whenever you have some additional time, you're encouraged to write an automatic test for one or more of those issues for which this is possible :) -http://www.openoffice.org/issues/show_bug.cgi?id=105992 +https://bz.apache.org/ooo/show_bug.cgi?id=105992 zooming documents containing (alive) form controls improperly positions the controls -http://www.openoffice.org/issues/show_bug.cgi?id=104362 +https://bz.apache.org/ooo/show_bug.cgi?id=104362 crash when copy a control -http://www.openoffice.org/issues/show_bug.cgi?id=104544 +https://bz.apache.org/ooo/show_bug.cgi?id=104544 Gridcontrol duplicated after design view on/off -http://www.openoffice.org/issues/show_bug.cgi?id=102089 +https://bz.apache.org/ooo/show_bug.cgi?id=102089 print preview shows control elements with property printable=false -http://www.openoffice.org/issues/show_bug.cgi?id=102090 +https://bz.apache.org/ooo/show_bug.cgi?id=102090 problem with setVisible on TextControl -http://www.openoffice.org/issues/show_bug.cgi?id=103138 +https://bz.apache.org/ooo/show_bug.cgi?id=103138 loop when insert a control in draw -http://www.openoffice.org/issues/show_bug.cgi?id=101398 +https://bz.apache.org/ooo/show_bug.cgi?id=101398 initially-displaying a document with many controls is very slow -http://www.openoffice.org/issues/show_bug.cgi?id=72429 +https://bz.apache.org/ooo/show_bug.cgi?id=72429 repaint error in form wizard in bugdoc database -http://www.openoffice.org/issues/show_bug.cgi?id=72694 +https://bz.apache.org/ooo/show_bug.cgi?id=72694 form control artifacts when scrolling a text fast */ diff --git a/svx/source/unodraw/unoshape.cxx b/svx/source/unodraw/unoshape.cxx index 550c897e5a17..572b31c44313 100644 --- a/svx/source/unodraw/unoshape.cxx +++ b/svx/source/unodraw/unoshape.cxx @@ -1217,7 +1217,7 @@ void SAL_CALL SvxShape::setSize( const awt::Size& rSize ) } else { - //aRect.SetSize(aLocalSize); // this call subtract 1 // http://www.openoffice.org/issues/show_bug.cgi?id=83193 + //aRect.SetSize(aLocalSize); // this call subtract 1 // https://bz.apache.org/ooo/show_bug.cgi?id=83193 if ( !aLocalSize.Width() ) { aRect.SetWidthEmpty(); diff --git a/sw/source/filter/inc/msfilter.hxx b/sw/source/filter/inc/msfilter.hxx index ea4ede102581..c9c1a142aadf 100644 --- a/sw/source/filter/inc/msfilter.hxx +++ b/sw/source/filter/inc/msfilter.hxx @@ -117,7 +117,7 @@ namespace sw this captures such ones and clips them to values which are still outside the document, but of a value that doesn't cause problems for writer's layout, e.g. see - http://www.openoffice.org/issues/show_bug.cgi?id=i9245 + https://bz.apache.org/ooo/show_bug.cgi?id=i9245 @param nIn diff --git a/sw/source/filter/ww8/README-rtf.txt b/sw/source/filter/ww8/README-rtf.txt index bc2b1e0866ec..c09e17547a03 100644 --- a/sw/source/filter/ww8/README-rtf.txt +++ b/sw/source/filter/ww8/README-rtf.txt @@ -93,26 +93,26 @@ the bug will pop up less frequently. --------------------------------------------------------------------- - * http://www.openoffice.org/issues/show_bug.cgi?id=51469 postit + * https://bz.apache.org/ooo/show_bug.cgi?id=51469 postit fields - * http://www.openoffice.org/issues/show_bug.cgi?id=66619 page + * https://bz.apache.org/ooo/show_bug.cgi?id=66619 page margins - * http://www.openoffice.org/issues/show_bug.cgi?id=69856 page + * https://bz.apache.org/ooo/show_bug.cgi?id=69856 page numbers - * http://www.openoffice.org/issues/show_bug.cgi?id=81569 { and } in + * https://bz.apache.org/ooo/show_bug.cgi?id=81569 { and } in document title - * http://www.openoffice.org/issues/show_bug.cgi?id=84703 redlines - * http://www.openoffice.org/issues/show_bug.cgi?id=91166 russian + * https://bz.apache.org/ooo/show_bug.cgi?id=84703 redlines + * https://bz.apache.org/ooo/show_bug.cgi?id=91166 russian chars - * http://www.openoffice.org/issues/show_bug.cgi?id=92673 bookmarks + * https://bz.apache.org/ooo/show_bug.cgi?id=92673 bookmarks across tables - * http://www.openoffice.org/issues/show_bug.cgi?id=100507 ole + * https://bz.apache.org/ooo/show_bug.cgi?id=100507 ole object export - * http://www.openoffice.org/issues/show_bug.cgi?id=103993 same as # + * https://bz.apache.org/ooo/show_bug.cgi?id=103993 same as # 81569 just for doc comments - * http://www.openoffice.org/issues/show_bug.cgi?id=106677 + * https://bz.apache.org/ooo/show_bug.cgi?id=106677 listoverride index starts at zero - * http://www.openoffice.org/issues/show_bug.cgi?id=38344 enhanced + * https://bz.apache.org/ooo/show_bug.cgi?id=38344 enhanced character space diff --git a/sw/source/filter/ww8/fields.hxx b/sw/source/filter/ww8/fields.hxx index ae0266ca6614..4bdd5641d8c4 100644 --- a/sw/source/filter/ww8/fields.hxx +++ b/sw/source/filter/ww8/fields.hxx @@ -130,7 +130,7 @@ namespace ww /** Find the English Field Name from a winword index See OpenOffice.org issue 12831 - (http://www.openoffice.org/issues/show_bug.cgi?id=12831) and MS + (https://bz.apache.org/ooo/show_bug.cgi?id=12831) and MS Knowledge Base article 268717 (http://support.microsoft.com/default.aspx?scid=kb;en-us;268717) for details of why to use english field names and not localized ones since |