summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-10-09 23:14:53 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-10-09 23:14:53 +0000
commita9bab97f0ee67193eb90852044dc249428454587 (patch)
tree0e0e0cb788690dd377d4c45d764ac43282996202 /share
parentUpdate, still some strings missing. (diff)
downloadinkscape-a9bab97f0ee67193eb90852044dc249428454587.tar.gz
inkscape-a9bab97f0ee67193eb90852044dc249428454587.zip
add webbrowser extensions
(bzr r1788)
Diffstat (limited to 'share')
-rw-r--r--share/extensions/Makefile.am16
-rw-r--r--share/extensions/inkscape_help_manual.inx12
-rw-r--r--share/extensions/inkscape_help_relnotes.inx12
-rw-r--r--share/extensions/inkscape_help_reportabug.inx12
-rw-r--r--share/extensions/inkscape_help_svgspec.inx12
-rwxr-xr-xshare/extensions/webbrowser_manual.py3
-rwxr-xr-xshare/extensions/webbrowser_relnotes.py3
-rwxr-xr-xshare/extensions/webbrowser_reportabug.py3
-rwxr-xr-xshare/extensions/webbrowser_svgspec.py3
9 files changed, 72 insertions, 4 deletions
diff --git a/share/extensions/Makefile.am b/share/extensions/Makefile.am
index 87e4e5da3..27deeffb2 100644
--- a/share/extensions/Makefile.am
+++ b/share/extensions/Makefile.am
@@ -57,7 +57,11 @@ extensions = \
gimp_xcf.py \
eqtexsvg.py \
markers_strokepaint.py \
- lorem_ipsum.py
+ lorem_ipsum.py \
+ webbrowser_manual.py \
+ webbrowser_relnotes.py \
+ webbrowser_reportabug.py \
+ webbrowser_svgspec.py
otherstuff = \
aisvg.xslt
@@ -108,11 +112,15 @@ modules = \
flatten.inx \
measure.inx \
gimp_xcf.inx \
- randompnt.inx \
- randompos.inx \
+ randompnt.inx \
+ randompos.inx \
eqtexsvg.inx \
markers_strokepaint.inx \
- lorem_ipsum.inx
+ lorem_ipsum.inx \
+ inkscape_help_manual.inx \
+ inkscape_help_relnotes.inx \
+ inkscape_help_reportabug.inx \
+ inkscape_help_svgspec.inx
extension_SCRIPTS = \
diff --git a/share/extensions/inkscape_help_manual.inx b/share/extensions/inkscape_help_manual.inx
new file mode 100644
index 000000000..5fd0e9141
--- /dev/null
+++ b/share/extensions/inkscape_help_manual.inx
@@ -0,0 +1,12 @@
+<inkscape-extension>
+ <_name>Inkscape Manual</_name>
+ <id>org.inkscape.help.manual</id>
+ <dependency type="executable" location="extensions">webbrowser_manual.py</dependency>
+ <effect>
+ <object-type>all</object-type>
+ <effects-menu hidden="yes"/>
+ </effect>
+ <script>
+ <command reldir="extensions" interpreter="python">webbrowser_manual.py</command>
+ </script>
+</inkscape-extension>
diff --git a/share/extensions/inkscape_help_relnotes.inx b/share/extensions/inkscape_help_relnotes.inx
new file mode 100644
index 000000000..8fc3ff120
--- /dev/null
+++ b/share/extensions/inkscape_help_relnotes.inx
@@ -0,0 +1,12 @@
+<inkscape-extension>
+ <_name>New in This Version</_name>
+ <id>org.inkscape.help.relnotes</id>
+ <dependency type="executable" location="extensions">webbrowser_relnotes.py</dependency>
+ <effect>
+ <object-type>all</object-type>
+ <effects-menu hidden="yes"/>
+ </effect>
+ <script>
+ <command reldir="extensions" interpreter="python">webbrowser_relnotes.py</command>
+ </script>
+</inkscape-extension>
diff --git a/share/extensions/inkscape_help_reportabug.inx b/share/extensions/inkscape_help_reportabug.inx
new file mode 100644
index 000000000..47cc19cc5
--- /dev/null
+++ b/share/extensions/inkscape_help_reportabug.inx
@@ -0,0 +1,12 @@
+<inkscape-extension>
+ <_name>Report a Bug</_name>
+ <id>org.inkscape.help.reportabug</id>
+ <dependency type="executable" location="extensions">webbrowser_reportabug.py</dependency>
+ <effect>
+ <object-type>all</object-type>
+ <effects-menu hidden="yes"/>
+ </effect>
+ <script>
+ <command reldir="extensions" interpreter="python">webbrowser_reportabug.py</command>
+ </script>
+</inkscape-extension>
diff --git a/share/extensions/inkscape_help_svgspec.inx b/share/extensions/inkscape_help_svgspec.inx
new file mode 100644
index 000000000..1da3288e3
--- /dev/null
+++ b/share/extensions/inkscape_help_svgspec.inx
@@ -0,0 +1,12 @@
+<inkscape-extension>
+ <_name>SVG 1.1 Specification</_name>
+ <id>org.inkscape.help.svgspec</id>
+ <dependency type="executable" location="extensions">webbrowser_svgspec.py</dependency>
+ <effect>
+ <object-type>all</object-type>
+ <effects-menu hidden="yes"/>
+ </effect>
+ <script>
+ <command reldir="extensions" interpreter="python">webbrowser_svgspec.py</command>
+ </script>
+</inkscape-extension>
diff --git a/share/extensions/webbrowser_manual.py b/share/extensions/webbrowser_manual.py
new file mode 100755
index 000000000..daa2e149e
--- /dev/null
+++ b/share/extensions/webbrowser_manual.py
@@ -0,0 +1,3 @@
+#!/usr/bin/env python
+import webbrowser
+webbrowser.open("http://tavmjong.free.fr/INKSCAPE/MANUAL/html/index.php")
diff --git a/share/extensions/webbrowser_relnotes.py b/share/extensions/webbrowser_relnotes.py
new file mode 100755
index 000000000..d630251b4
--- /dev/null
+++ b/share/extensions/webbrowser_relnotes.py
@@ -0,0 +1,3 @@
+#!/usr/bin/env python
+import webbrowser
+webbrowser.open("http://wiki.inkscape.org/wiki/index.php/ReleaseNotes045")
diff --git a/share/extensions/webbrowser_reportabug.py b/share/extensions/webbrowser_reportabug.py
new file mode 100755
index 000000000..cec55a435
--- /dev/null
+++ b/share/extensions/webbrowser_reportabug.py
@@ -0,0 +1,3 @@
+#!/usr/bin/env python
+import webbrowser
+webbrowser.open("http://inkscape.org/report_bugs.php")
diff --git a/share/extensions/webbrowser_svgspec.py b/share/extensions/webbrowser_svgspec.py
new file mode 100755
index 000000000..9ea131e4b
--- /dev/null
+++ b/share/extensions/webbrowser_svgspec.py
@@ -0,0 +1,3 @@
+#!/usr/bin/env python
+import webbrowser
+webbrowser.open("http://www.w3.org/TR/SVG11/")