summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2016-08-28 03:45:38 +0000
committerMartin Owens <doctormo@gmail.com>2016-08-28 03:45:38 +0000
commitac0e81e5f68f50a89d8fdc2f5401c205a42513a0 (patch)
tree23a135a5d0c0d1c81a6a8d7dc263143da0424008 /share
parent[Bug #1586568] Interpolate extension creates wrong stroke width. (diff)
downloadinkscape-ac0e81e5f68f50a89d8fdc2f5401c205a42513a0.tar.gz
inkscape-ac0e81e5f68f50a89d8fdc2f5401c205a42513a0.zip
Use new website link which allows us to control the answers provider
(bzr r15082)
Diffstat (limited to 'share')
-rw-r--r--share/extensions/inkscape_help_askaquestion.inx22
-rwxr-xr-xshare/extensions/launch_webbrowser.py2
2 files changed, 12 insertions, 12 deletions
diff --git a/share/extensions/inkscape_help_askaquestion.inx b/share/extensions/inkscape_help_askaquestion.inx
index 74462bf07..b093558cb 100644
--- a/share/extensions/inkscape_help_askaquestion.inx
+++ b/share/extensions/inkscape_help_askaquestion.inx
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
- <_name>Ask Us a Question</_name>
- <id>org.inkscape.help.askaquestion</id>
- <dependency type="executable" location="extensions">launch_webbrowser.py</dependency>
- <param name="url" gui-hidden="true" type="string">http://answers.launchpad.net/inkscape/+addquestion</param>
- <effect needs-document="false">
- <object-type>all</object-type>
- <effects-menu hidden="true"/>
- </effect>
- <script>
- <command reldir="extensions" interpreter="python">launch_webbrowser.py</command>
- </script>
+ <_name>Ask Us a Question</_name>
+ <id>org.inkscape.help.askaquestion</id>
+ <dependency type="executable" location="extensions">launch_webbrowser.py</dependency>
+ <_param name="url" gui-hidden="true" type="string">https://inkscape.org/en/ask/</_param>
+ <effect needs-document="false">
+ <object-type>all</object-type>
+ <effects-menu hidden="true"/>
+ </effect>
+ <script>
+ <command reldir="extensions" interpreter="python">launch_webbrowser.py</command>
+ </script>
</inkscape-extension>
diff --git a/share/extensions/launch_webbrowser.py b/share/extensions/launch_webbrowser.py
index 225484393..fb2ccfd87 100755
--- a/share/extensions/launch_webbrowser.py
+++ b/share/extensions/launch_webbrowser.py
@@ -11,7 +11,7 @@ class VisitWebSiteWithoutLockingInkscape(threading.Thread):
threading.Thread.__init__ (self)
parser = OptionParser()
parser.add_option("-u", "--url", action="store", type="string",
- default="http://www.inkscape.org/",
+ default="https://www.inkscape.org/",
dest="url", help="The URL to open in web browser")
(self.options, args) = parser.parse_args()