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:
@@ -35,7 +35,7 @@ else:
|
||||
|
||||
__title__="FreeCAD CutPlane"
|
||||
__author__ = "Jonathan Wiedemann"
|
||||
__url__ = "http://www.freecad.org"
|
||||
__url__ = "https://www.freecad.org"
|
||||
|
||||
## @package ArchCutPlane
|
||||
# \ingroup ARCH
|
||||
|
||||
@@ -36,7 +36,7 @@ else:
|
||||
|
||||
__title__ = "Arch Material Management"
|
||||
__author__ = "Yorik van Havre"
|
||||
__url__ = "http://www.freecad.org"
|
||||
__url__ = "https://www.freecad.org"
|
||||
|
||||
## @package ArchMaterial
|
||||
# \ingroup ARCH
|
||||
|
||||
@@ -633,7 +633,7 @@ def buildGuiDocumentFromColors(document,colors,camera=None):
|
||||
|
||||
guidoc = "<?xml version='1.0' encoding='utf-8'?>\n"
|
||||
guidoc += "<!--\n"
|
||||
guidoc += " FreeCAD Document, see http://www.freecad.org for more information...\n"
|
||||
guidoc += " FreeCAD Document, see https://www.freecad.org for more information...\n"
|
||||
guidoc += "-->\n"
|
||||
guidoc += "<Document SchemaVersion=\"1\">\n"
|
||||
|
||||
@@ -712,7 +712,7 @@ def buildGuiDocumentFromGuiData(document,guidata):
|
||||
|
||||
guidoc = "<?xml version='1.0' encoding='utf-8'?>\n"
|
||||
guidoc += "<!--\n"
|
||||
guidoc += " FreeCAD Document, see http://www.freecad.org for more information...\n"
|
||||
guidoc += " FreeCAD Document, see https://www.freecad.org for more information...\n"
|
||||
guidoc += "-->\n"
|
||||
guidoc += "<Document SchemaVersion=\"1\">\n"
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ from draftutils.translate import translate
|
||||
|
||||
__title__="FreeCAD IFC importer"
|
||||
__author__ = "Yorik van Havre"
|
||||
__url__ = "http://www.freecad.org"
|
||||
__url__ = "https://www.freecad.org"
|
||||
|
||||
# config
|
||||
subtractiveTypes = ["IfcOpeningElement"] # elements that must be subtracted from their parents
|
||||
|
||||
@@ -146,7 +146,7 @@ def export(exportList,filename,colors=None):
|
||||
outfile = codecs.open(filename,"wb",encoding="utf8")
|
||||
ver = FreeCAD.Version()
|
||||
outfile.write("# FreeCAD v" + ver[0] + "." + ver[1] + " build" + ver[2] + " Arch module\n")
|
||||
outfile.write("# http://www.freecad.org\n")
|
||||
outfile.write("# https://www.freecad.org\n")
|
||||
offsetv = 1
|
||||
offsetvn = 1
|
||||
objectslist = Draft.get_group_contents(exportList, walls=True,
|
||||
|
||||
Reference in New Issue
Block a user