Files
gimp/plug-ins/script-fu/scripts/web-browser.scm
Kevin Cozens 6239dddda3 With this commit we finally say goodbye to SIOD. This large set of changes
2006-10-15  Kevin Cozens  <kcozens@cvs.gnome.org>

	With this commit we finally say goodbye to SIOD. This large set of
	changes updates the Script-Fu plug-in to use the TinyScheme Scheme
	interpreter. These changes originated with changes originally made
	to Script-Fu which created Tiny-Fu (aka. the gimp-tiny-fu module).

	* plug-ins/script-fu/Makefile.am
	* plug-ins/script-fu/script-fu-console.c
	* plug-ins/script-fu/script-fu-interface.c
	* plug-ins/script-fu/script-fu-scripts.c
	* plug-ins/script-fu/script-fu-scripts.h
	* plug-ins/script-fu/script-fu-server.c
	* plug-ins/script-fu/script-fu-text-console.c
	* plug-ins/script-fu/script-fu.c: Updated with the changes made to
	these files as part of the work on the Tiny-Fu project.

	* plug-ins/script-fu/scheme-wrapper.c
	* plug-ins/script-fu/scheme-wrapper.h: Renamed from siod-wrapper.[ch]
	and updated based on differences to ts-wrapper.[ch] from gimp-tiny-fu.

	* plug-ins/script-fu/ftx/*
	* plug-ins/script-fu/re/*
	* plug-ins/script-fu/tinyscheme/*
	* plug-ins/script-fu/scripts/script-fu.init
	* plug-ins/script-fu/scripts/script-fu-compat.init
	* plug-ins/script-fu/scripts/contactsheet.scm
	* plug-ins/script-fu/scripts/script-fu-set-cmap.scm
	* plug-ins/script-fu/scripts/script-fu-util-setpt.scm
	* plug-ins/script-fu/scripts/ts-helloworld.scm: Added all of these
	files and directories from Tiny-Fu. Updated the Makefile.am files
	of ftx, re, and tinyscheme now they are in the GIMP source tree.

	* plug-ins/script-fu/scripts/*.scm: All scripts have been updated as
	needed to ensure they will work with the TinyScheme interpreter. Most
	of the files have been reformatted making it easier to see the syntax
	of Scheme and making them easier to read.

	* plug-ins/script-fu/scripts/Makefile.am: Updated script file lists.

	* plug-ins/script-fu/siod-wrapper.c
	* plug-ins/script-fu/siod-wrapper.h
	* plug-ins/script-fu/siod/*: Removed obsolete files.

	* configure.in: Updated list of files in AC_CONFIG_FILES. Changed
	--disable-script-fu to --without-script-fu which it should have
	been when originally added.

	* INSTALL: Updated to show change to --without-script-fu.
2006-10-16 01:08:54 +00:00

204 lines
5.6 KiB
Scheme

; The GIMP -- an image manipulation program
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
;
; gimp-online.scm
; Copyright (C) 2003 Henrik Brix Andersen <brix@gimp.org>
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 2 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
(define (gimp-online-docs-web-site)
(plug-in-web-browser "http://docs.gimp.org")
)
(define (gimp-help-2-concepts-usage)
(gimp-help "" "gimp-concepts-usage")
)
(define (gimp-help-2-using-docks)
(gimp-help "" "gimp-using-docks")
)
(define (gimp-help-2-using-simpleobjects)
(gimp-help "" "gimp-using-simpleobjects")
)
(define (gimp-help-2-using-selections)
(gimp-help "" "gimp-using-selections")
)
(define (gimp-help-2-using-fileformats)
(gimp-help "" "gimp-using-fileformats")
)
(define (gimp-help-2-using-photography)
(gimp-help "" "gimp-using-photography")
)
(define (gimp-help-2-using-web)
(gimp-help "" "gimp-using-web")
)
(define (gimp-help-2-concepts-paths)
(gimp-help "" "gimp-concepts-paths")
)
; shortcuts to help topics
(script-fu-register "gimp-help-2-concepts-paths"
_"Using _Paths"
"Bookmark to gimp-concepts-paths"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-2-concepts-paths"
"<Toolbox>/Help/User Manual")
(script-fu-register "gimp-help-2-using-web"
_"_Preparing your Images for the Web"
"Bookmark to gimp-using-web"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-2-using-web"
"<Toolbox>/Help/User Manual")
(script-fu-register "gimp-help-2-using-photography"
_"_Working with Digital Camera Photos"
"Bookmark to gimp-using-photography"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-2-using-photography"
"<Toolbox>/Help/User Manual")
(script-fu-register "gimp-help-2-using-fileformats"
_"Create, Open and Save _Files"
"Bookmark to gimp-using-fileformats."
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-2-using-fileformats"
"<Toolbox>/Help/User Manual")
(script-fu-register "gimp-help-2-concepts-usage"
_"_Basic Concepts"
"Bookmark to gimp-concepts-usage."
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-2-concepts-usage"
"<Toolbox>/Help/User Manual")
(script-fu-register "gimp-help-2-using-docks"
_"How to Use _Dialogs"
"Bookmark to gimp-using-docks"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-2-using-docks"
"<Toolbox>/Help/User Manual")
(script-fu-register "gimp-help-2-using-simpleobjects"
_"Drawing _Simple Objects"
"Bookmark to gimp-using-simpleobjects"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-2-using-simpleobjects"
"<Toolbox>/Help/User Manual")
(script-fu-register "gimp-help-2-using-selections"
_"Create and Use _Selections"
"Bookmark to gimp-using-selections"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-2-using-simpleobjects"
"<Toolbox>/Help/User Manual")
;; Links to GIMP related web sites
(define (gimp-online-main-web-site)
(plug-in-web-browser "http://www.gimp.org/")
)
(define (gimp-online-developer-web-site)
(plug-in-web-browser "http://developer.gimp.org/")
)
(define (gimp-online-plug-in-web-site)
(plug-in-web-browser "http://registry.gimp.org/")
)
(script-fu-register "gimp-online-main-web-site"
_"_Main Web Site"
"Link to http://www.gimp.org/"
"Henrik Brix Andersen <brix@gimp.org>"
"Henrik Brix Andersen <brix@gimp.org>"
"2003"
""
)
(script-fu-menu-register "gimp-online-main-web-site"
"<Toolbox>/Help/GIMP Online")
(script-fu-register "gimp-online-developer-web-site"
_"_Developer Web Site"
"Link to http://www.gimp.org/"
"Henrik Brix Andersen <brix@gimp.org>"
"Henrik Brix Andersen <brix@gimp.org>"
"2003"
""
)
(script-fu-menu-register "gimp-online-developer-web-site"
"<Toolbox>/Help/GIMP Online")
(script-fu-register "gimp-online-docs-web-site"
_"_User Manual Web Site"
"Link to http://docs.gimp.org"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-register "gimp-online-plug-in-web-site"
_"Plug-in _Registry"
"Link to http://www.gimp.org/"
"Henrik Brix Andersen <brix@gimp.org>"
"Henrik Brix Andersen <brix@gimp.org>"
"2003"
""
)
(script-fu-menu-register "gimp-online-plug-in-web-site"
"<Toolbox>/Help/GIMP Online")