Find and replace:
http:\/\/(.{0,10})freecad
https://$1freecad
Done in all remaining files (after doing it in SVGs in the last commit)
This commit is contained in:
DeflateAwning
2023-10-29 22:39:22 -06:00
parent c847a3d516
commit 8de6db3e97
143 changed files with 207 additions and 207 deletions

View File

@@ -152,7 +152,7 @@ protected:
/// Annoying helper - keep in sync with DrawProjGroupItem::TypeEnums
/*!
* \todo {See note regarding App::PropertyEnumeration on my wiki page http://freecad.org/wiki/User:Ian.rees}
* \todo {See note regarding App::PropertyEnumeration on my wiki page https://freecad.org/wiki/User:Ian.rees}
* \return true iff 'in' is a valid name for an orthographic/isometric view
*/
bool checkViewProjType(const char *in);

View File

@@ -56,7 +56,7 @@
#define VECTORTOLERANCE (Precision::Confusion())
#define SVG_NS_URI "http://www.w3.org/2000/svg"
#define FREECAD_SVG_NS_URI "http://www.freecad.org/wiki/index.php?title=Svg_Namespace"
#define FREECAD_SVG_NS_URI "https://www.freecad.org/wiki/index.php?title=Svg_Namespace"
//some shapes are being passed in where edges that should be connected are in fact
//separated by more than 2*Precision::Confusion (expected tolerance for 2 TopoDS_Vertex)

View File

@@ -142,7 +142,7 @@ std::string DrawViewArch::getSVGHead()
{
return std::string("<svg\\n") +
std::string(" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\"\\n") +
std::string(" xmlns:freecad=\"http://www.freecad.org/wiki/index.php?title=Svg_Namespace\">\\n");
std::string(" xmlns:freecad=\"https://www.freecad.org/wiki/index.php?title=Svg_Namespace\">\\n");
}
std::string DrawViewArch::getSVGTail()

View File

@@ -126,7 +126,7 @@ std::string DrawViewDraft::getSVGHead()
{
return std::string("<svg\\n") +
std::string(" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\"\\n") +
std::string(" xmlns:freecad=\"http://www.freecad.org/wiki/index.php?title=Svg_Namespace\">\\n");
std::string(" xmlns:freecad=\"https://www.freecad.org/wiki/index.php?title=Svg_Namespace\">\\n");
}
std::string DrawViewDraft::getSVGTail()

View File

@@ -129,7 +129,7 @@ std::string DrawViewSpreadsheet::getSVGHead()
{
return std::string("<svg\n") +
std::string(" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\"\n") +
std::string(" xmlns:freecad=\"http://www.freecad.org/wiki/index.php?title=Svg_Namespace\">\n");
std::string(" xmlns:freecad=\"https://www.freecad.org/wiki/index.php?title=Svg_Namespace\">\n");
}
std::string DrawViewSpreadsheet::getSVGTail()

View File

@@ -34,7 +34,7 @@ import FreeCADGui
svgHead = (
"<svg\n"
+ ' xmlns="http://www.w3.org/2000/svg" version="1.1"\n'
+ ' xmlns:freecad="http://www.freecad.org/wiki/index.php?title=Svg_Namespace">\n'
+ ' xmlns:freecad="https://www.freecad.org/wiki/index.php?title=Svg_Namespace">\n'
)
svgTail = "\n</svg>"