Find and replace http://freecad.org to https://freecad.org
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:
@@ -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);
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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>"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user