[csw-devel] SF.net SVN: gar:[10372] csw/mgar/pkg

theferret at users.sourceforge.net theferret at users.sourceforge.net
Mon Jun 28 19:28:58 CEST 2010


Revision: 10372
          http://gar.svn.sourceforge.net/gar/?rev=10372&view=rev
Author:   theferret
Date:     2010-06-28 17:28:57 +0000 (Mon, 28 Jun 2010)

Log Message:
-----------
gimp_help: 'new' package

Added Paths:
-----------
    csw/mgar/pkg/gimp_help/
    csw/mgar/pkg/gimp_help/Makefile
    csw/mgar/pkg/gimp_help/trunk/
    csw/mgar/pkg/gimp_help/trunk/Makefile
    csw/mgar/pkg/gimp_help/trunk/README
    csw/mgar/pkg/gimp_help/trunk/copyright
    csw/mgar/pkg/gimp_help/trunk/pkginfo
    csw/mgar/pkg/gimp_help/trunk/prototype

Added: csw/mgar/pkg/gimp_help/Makefile
===================================================================
--- csw/mgar/pkg/gimp_help/Makefile	                        (rev 0)
+++ csw/mgar/pkg/gimp_help/Makefile	2010-06-28 17:28:57 UTC (rev 10372)
@@ -0,0 +1,15 @@
+
+# This is somewhat of a "stub" Makefile, for 
+# directories managed by the "createpkg" TEMPLATES.
+#
+# Not all of targets listed here may actualy be supported by
+# the subdir in question. But they are a goal
+
+DEFAULT_DIR=trunk
+
+
+# The -C means you must use gmake, unfortunately.
+
+all package build garchive extract configure clean distclean reallyclean :
+	@echo Going to make $@ in $(DEFAULT_DIR)
+	$(MAKE) -C  $(DEFAULT_DIR) $@


Property changes on: csw/mgar/pkg/gimp_help/trunk
___________________________________________________________________
Added: svn:ignore
   + cookies
download
work
cswstage
build


Added: csw/mgar/pkg/gimp_help/trunk/Makefile
===================================================================
--- csw/mgar/pkg/gimp_help/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/gimp_help/trunk/Makefile	2010-06-28 17:28:57 UTC (rev 10372)
@@ -0,0 +1,75 @@
+# This file loosely based Makefiles in TEMPLATES/createpkg
+# But highly customized.
+# You MUST build this with gnu make, unfortunately.
+# Mainly just because of the ARCH expansion, but also for "?="
+
+# Customize your prototype file(s) as needed
+
+# Organization: variable defintions up top,
+# targets in second half.
+# Note that assignments with "?=" mean "assign if not already assigned.
+
+# Where do we keep local downloads of software src files
+ARCHIVEDIR ?= /home/src
+ARCHIVENAME ?= gimp-help-2.6.0-html-en.tar.bz2
+EXTRACTPROG ?= /usr/sfw/bin/gtar jfx
+
+# Only use ONE here. The name is used for compat with 'gar'.
+MASTER_SITES ?= ftp://ftp.gimp.org/pub/gimp/help
+SRCDIR= build/*
+
+
+CREATEPKG=createpkg -b `pwd`/build/*
+
+all:	build/.extract.done package
+
+
+extract:	build/.extract.done
+
+build/.extract.done:
+	test -d build || mkdir build
+	@if test -f  $(ARCHIVEDIR)/$(ARCHIVENAME) ; then \
+		echo Extracting $(ARCHIVENAME) under build dir... ;\
+		( cd build && $(EXTRACTPROG) $(ARCHIVEDIR)/$(ARCHIVENAME) ) ; \
+	else echo Cannot extract - $(ARCHIVEDIR)/$(ARCHIVENAME) does not exist ;\
+		exit 1; \
+	fi
+	touch build/.extract.done
+	
+
+clean distclean:
+
+
+reallyclean:	distclean
+	@echo Removing any milestone files in build as well...
+	@rm -f build/.??*
+	@echo '(However, leaving src tree intact, with any patches in it)'
+	@echo '(If you want, you could rm -r build, then make extract once more)'
+
+garchive:
+	@echo Call the fetch target instead: it does the same thing.
+
+
+# Downloads the source code to the common ARCHIVEDIR
+fetch:	$(ARCHIVEDIR)/$(ARCHIVENAME)
+	@echo fetch done
+
+$(ARCHIVEDIR)/$(ARCHIVENAME):
+	wget -P $(ARCHIVEDIR) $(MASTER_SITES)/$(ARCHIVENAME)
+
+patch:
+	@echo patch: patching is handled automatically as part of the configure phase.
+
+
+package:	copyright
+	$(CREATEPKG)
+
+
+configure build stage:
+	@echo no $@ needed
+
+
+pkgproto:
+	(echo "i pkginfo";echo "i copyright") >prototype
+	(cd $(SRCDIR); pkgproto html) |sed "s/ $$USER .*/ root bin/">>prototype
+	echo "f none COPYING 0644 root bin" >>prototype

Added: csw/mgar/pkg/gimp_help/trunk/README
===================================================================
--- csw/mgar/pkg/gimp_help/trunk/README	                        (rev 0)
+++ csw/mgar/pkg/gimp_help/trunk/README	2010-06-28 17:28:57 UTC (rev 10372)
@@ -0,0 +1,4 @@
+If I were nicer, I might attempt to rewrite the Makefile to fetch and 
+package up all the help for other non-"en" locales.
+But I'm rather worn out
+

Added: csw/mgar/pkg/gimp_help/trunk/copyright
===================================================================
--- csw/mgar/pkg/gimp_help/trunk/copyright	                        (rev 0)
+++ csw/mgar/pkg/gimp_help/trunk/copyright	2010-06-28 17:28:57 UTC (rev 10372)
@@ -0,0 +1,2 @@
+Please see the included COPYRIGING filePYING file for full license text.
+(GFDL)

Added: csw/mgar/pkg/gimp_help/trunk/pkginfo
===================================================================
--- csw/mgar/pkg/gimp_help/trunk/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/gimp_help/trunk/pkginfo	2010-06-28 17:28:57 UTC (rev 10372)
@@ -0,0 +1,9 @@
+PKG=CSWgimphelp
+NAME=gimp_help - HTML help files for gimp
+BASEDIR=/opt/csw/share/gimp/2.0/help
+VERSION=2.6.0,REV=2010.06.12
+CATEGORY=application
+VENDOR=http://www.gimp.org/ packaged for CSW by Philip Brown
+HOTLINE=http://www.opencsw.org/bugtrack/
+EMAIL=phil at opencsw.org
+OPENCSW_REPOSITORY=https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/pkg/gimp/branch-c

Added: csw/mgar/pkg/gimp_help/trunk/prototype
===================================================================
--- csw/mgar/pkg/gimp_help/trunk/prototype	                        (rev 0)
+++ csw/mgar/pkg/gimp_help/trunk/prototype	2010-06-28 17:28:57 UTC (rev 10372)
@@ -0,0 +1,2068 @@
+i pkginfo
+i copyright
+d none html 0755 root bin
+d none html/en 0755 root bin
+f none html/en/plug-in-nlfilt.html 0644 root bin
+f none html/en/gimp-concepts-gradients.html 0644 root bin
+f none html/en/plug-in-fractalexplorer.html 0644 root bin
+f none html/en/gimp-tool-perspective.html 0644 root bin
+f none html/en/gimp-layer-text-discard.html 0644 root bin
+f none html/en/script-fu-predator.html 0644 root bin
+f none html/en/plug-in-cml-explorer.html 0644 root bin
+f none html/en/script-fu-add-bevel.html 0644 root bin
+f none html/en/plug-in-papertile.html 0644 root bin
+f none html/en/filters-distort.html 0644 root bin
+f none html/en/plug-in-colormap-remap.html 0644 root bin
+f none html/en/filters-blur.html 0644 root bin
+f none html/en/plug-in-gimpressionist.html 0644 root bin
+f none html/en/gimp-concepts-setup.html 0644 root bin
+f none html/en/gimp-tool-ellipse-select.html 0644 root bin
+f none html/en/gimp-tutorial-straight-lines.html 0644 root bin
+f none html/en/plug-in-borderaverage.html 0644 root bin
+f none html/en/gimp-dialogs-structure.html 0644 root bin
+f none html/en/gimp-selection-to-path.html 0644 root bin
+f none html/en/gimp-select-menu.html 0644 root bin
+f none html/en/gimp-layer-alpha-semi-flatten.html 0644 root bin
+f none html/en/gimp-using-rectangular.html 0644 root bin
+f none html/en/plug-in-pixelize.html 0644 root bin
+f none html/en/gimp-tool-brightness-contrast.html 0644 root bin
+f none html/en/gimp-using-fonts.html 0644 root bin
+f none html/en/plug-in-convmatrix.html 0644 root bin
+f none html/en/filters-combine.html 0644 root bin
+f none html/en/script-fu-coffee-stain.html 0644 root bin
+f none html/en/filters-edge.html 0644 root bin
+f none html/en/plug-in-fractal-trace.html 0644 root bin
+f none html/en/script-fu-3d-outline-logo-alpha.html 0644 root bin
+f none html/en/gimp-image-combining.html 0644 root bin
+f none html/en/gimp-layer-lower-to-bottom.html 0644 root bin
+f none html/en/gimp-edit-paste-as.html 0644 root bin
+f none html/en/gimp-using-web-reducing-file-size.html 0644 root bin
+f none html/en/script-fu-gradient-bevel-logo-alpha.html 0644 root bin
+f none html/en/plug-in-mblur.html 0644 root bin
+f none html/en/gimp-image-convert-rgb.html 0644 root bin
+f none html/en/gimp-file-save-a-copy.html 0644 root bin
+f none html/en/plug-in-map-object.html 0644 root bin
+f none html/en/gimp-edit-fill-fg.html 0644 root bin
+f none html/en/gimp-layer-equalize.html 0644 root bin
+f none html/en/gimp-scripting.html 0644 root bin
+f none html/en/script-fu-cool-metal-logo-alpha.html 0644 root bin
+f none html/en/gimp-introduction-history-early-days.html 0644 root bin
+f none html/en/gimp-toolbox-image-area.html 0644 root bin
+f none html/en/gimp-indexed-palette-dialog.html 0644 root bin
+f none html/en/gimp-palette-dialog.html 0644 root bin
+f none html/en/gimp-imagewindow-menus-colors-info-histogram.html 0644 root bin
+f none html/en/plug-in-vpropagate.html 0644 root bin
+f none html/en/gimp-tool-eraser.html 0644 root bin
+f none html/en/gimp-concepts-text.html 0644 root bin
+f none html/en/gimp-selection-invert.html 0644 root bin
+f none html/en/plug-in-solid-noise.html 0644 root bin
+f none html/en/gimp-using-paths-and-text.html 0644 root bin
+f none html/en/gimp-image-scale.html 0644 root bin
+f none html/en/plug-in-bump-map.html 0644 root bin
+f none html/en/script-fu-chalk-logo-alpha.html 0644 root bin
+f none html/en/gimp-view-show-sample-points.html 0644 root bin
+f none html/en/gimp-using-script-fu-tutorial-first-script.html 0644 root bin
+f none html/en/gimp-using-grid.html 0644 root bin
+f none html/en/gfdl-8.html 0644 root bin
+f none html/en/plug-in-dbbrowser.html 0644 root bin
+f none html/en/plug-in-gradmap.html 0644 root bin
+f none html/en/gimp-tutorial-quickie-jpeg.html 0644 root bin
+f none html/en/gimp-selection-shrink.html 0644 root bin
+f none html/en/gimp-layer-new.html 0644 root bin
+f none html/en/gimp-layer-next.html 0644 root bin
+f none html/en/gimp-tools-color.html 0644 root bin
+f none html/en/gimp-file-close.html 0644 root bin
+f none html/en/plug-in-unsharp-mask.html 0644 root bin
+f none html/en/gimp-edit-paste.html 0644 root bin
+f none html/en/gimp-layer-mask-delete.html 0644 root bin
+f none html/en/script-fu-guides-from-selection.html 0644 root bin
+f none html/en/plug-in-unit-editor.html 0644 root bin
+f none html/en/gimp-images-out.html 0644 root bin
+f none html/en/plug-in-glasstile.html 0644 root bin
+f none html/en/plug-in-illusion.html 0644 root bin
+f none html/en/gfdl-4.html 0644 root bin
+f none html/en/filters-decor.html 0644 root bin
+f none html/en/gimp-tools-paint.html 0644 root bin
+f none html/en/plug-in-emboss.html 0644 root bin
+f none html/en/gimp-painting.html 0644 root bin
+f none html/en/gimp-edit-copy-visible.html 0644 root bin
+f none html/en/gimp-path-stroke.html 0644 root bin
+f none html/en/script-fu-chip-away-logo-alpha.html 0644 root bin
+f none html/en/gimp-tips-dialog.html 0644 root bin
+f none html/en/gimp-windows-open-recent-dock.html 0644 root bin
+f none html/en/script-fu-erase-rows.html 0644 root bin
+f none html/en/gimp-help.xml 0644 root bin
+f none html/en/plug-in-lens-distortion.html 0644 root bin
+f none html/en/gimp-layer-merge-down.html 0644 root bin
+f none html/en/plug-in-imagemap.html 0644 root bin
+f none html/en/script-fu-drop-shadow.html 0644 root bin
+f none html/en/gimp-file-close-all.html 0644 root bin
+f none html/en/gimp-tool-bucket-fill.html 0644 root bin
+f none html/en/gimp-image-merge-layers.html 0644 root bin
+f none html/en/gimp-tool-threshold.html 0644 root bin
+f none html/en/gimp-tool-move.html 0644 root bin
+f none html/en/gimp-imaging-color-management.html 0644 root bin
+f none html/en/gimp-function-reference.html 0644 root bin
+f none html/en/plug-in-laplace.html 0644 root bin
+d none html/en/images 0755 root bin
+d none html/en/images/misc 0755 root bin
+d none html/en/images/misc/bugzilla 0755 root bin
+f none html/en/images/misc/bugzilla/find-specific-bug.png 0644 root bin
+f none html/en/images/misc/bugzilla/enter-bug.png 0644 root bin
+f none html/en/images/misc/bugzilla/advanced-search.png 0644 root bin
+d none html/en/images/dialogs 0755 root bin
+f none html/en/images/dialogs/patterns-dialog.png 0644 root bin
+f none html/en/images/dialogs/wilber-channels-red.png 0644 root bin
+f none html/en/images/dialogs/gradient-dialog.png 0644 root bin
+f none html/en/images/dialogs/dialogs-icon-raise.png 0644 root bin
+f none html/en/images/dialogs/colormap-dialog.png 0644 root bin
+f none html/en/images/dialogs/gradient-editor-blend.png 0644 root bin
+f none html/en/images/dialogs/channels-dialog.png 0644 root bin
+f none html/en/images/dialogs/tools-dialog.png 0644 root bin
+f none html/en/images/dialogs/channel-list-entry.png 0644 root bin
+f none html/en/images/dialogs/fonts-dialog.png 0644 root bin
+f none html/en/images/dialogs/color-watercolor.png 0644 root bin
+f none html/en/images/dialogs/stock-anchor-16.png 0644 root bin
+f none html/en/images/dialogs/stock-vchain-24.png 0644 root bin
+f none html/en/images/dialogs/color-dialog.png 0644 root bin
+f none html/en/images/dialogs/dialogs-new-image-colorspace.png 0644 root bin
+f none html/en/images/dialogs/images-dialog.png 0644 root bin
+f none html/en/images/dialogs/stock-edit-16.png 0644 root bin
+f none html/en/images/dialogs/wilber-channels-blue.png 0644 root bin
+f none html/en/images/dialogs/link-visibility.png 0644 root bin
+f none html/en/images/dialogs/histogram-basic-dialog.png 0644 root bin
+f none html/en/images/dialogs/palette-editor-dialog.png 0644 root bin
+f none html/en/images/dialogs/histogram-log.png 0644 root bin
+f none html/en/images/dialogs/css-keywords.png 0644 root bin
+f none html/en/images/dialogs/stock-selection-16.png 0644 root bin
+d none html/en/images/dialogs/examples 0755 root bin
+f none html/en/images/dialogs/examples/border-selection-01.png 0644 root bin
+f none html/en/images/dialogs/examples/border-selection-lock1.png 0644 root bin
+f none html/en/images/dialogs/examples/new-gradient-1.png 0644 root bin
+f none html/en/images/dialogs/examples/cosmos-6.png 0644 root bin
+f none html/en/images/dialogs/examples/dither1.png 0644 root bin
+f none html/en/images/dialogs/examples/layer-mask-1.png 0644 root bin
+f none html/en/images/dialogs/examples/palettes-repeat-gradient.png 0644 root bin
+f none html/en/images/dialogs/examples/palettes-offset.png 0644 root bin
+f none html/en/images/dialogs/examples/layer-lock-1.png 0644 root bin
+f none html/en/images/dialogs/examples/dither4.png 0644 root bin
+f none html/en/images/dialogs/examples/dither3.png 0644 root bin
+f none html/en/images/dialogs/examples/layer-lock-2.png 0644 root bin
+f none html/en/images/dialogs/examples/new-gradient-3.png 0644 root bin
+f none html/en/images/dialogs/examples/layer-mask-2.png 0644 root bin
+f none html/en/images/dialogs/examples/new-gradient-2.png 0644 root bin
+f none html/en/images/dialogs/examples/miter.png 0644 root bin
+f none html/en/images/dialogs/examples/dither2.png 0644 root bin
+f none html/en/images/dialogs/examples/border-selection-02.png 0644 root bin
+f none html/en/images/dialogs/examples/border-selection-lock2.png 0644 root bin
+f none html/en/images/dialogs/palettes-grid-dialog.png 0644 root bin
+f none html/en/images/dialogs/dialogs-icon-new.png 0644 root bin
+f none html/en/images/dialogs/brushes-context-menu.png 0644 root bin
+f none html/en/images/dialogs/image-mode-indexed.png 0644 root bin
+f none html/en/images/dialogs/layer-dialog.png 0644 root bin
+f none html/en/images/dialogs/wilber-channels-combined.png 0644 root bin
+f none html/en/images/dialogs/color-palette.png 0644 root bin
+f none html/en/images/dialogs/pointer-dialog.png 0644 root bin
+f none html/en/images/dialogs/stock-selection-all-16.png 0644 root bin
+f none html/en/images/dialogs/brushes-editor-dialog.png 0644 root bin
+f none html/en/images/dialogs/histogram-drop-down-menu.png 0644 root bin
+f none html/en/images/dialogs/color-triangle.png 0644 root bin
+f none html/en/images/dialogs/brushes-list-view.png 0644 root bin
+f none html/en/images/dialogs/sample-points-dialog.png 0644 root bin
+f none html/en/images/dialogs/dialogs-templates-edit-advanced.png 0644 root bin
+f none html/en/images/dialogs/buffers-dialog-grid.png 0644 root bin
+f none html/en/images/dialogs/brushes-grid-view.png 0644 root bin
+f none html/en/images/dialogs/buffers-context-menu.png 0644 root bin
+f none html/en/images/dialogs/channel-masks-example.png 0644 root bin
+f none html/en/images/dialogs/wilber-channels-alpha.png 0644 root bin
+f none html/en/images/dialogs/palettes-dialog.png 0644 root bin
+f none html/en/images/dialogs/lock-alpha.png 0644 root bin
+f none html/en/images/dialogs/gradient-editor-colortype-submenu.png 0644 root bin
+f none html/en/images/dialogs/paths-menu.png 0644 root bin
+f none html/en/images/dialogs/colormap-contextmenu.png 0644 root bin
+f none html/en/images/dialogs/path-list-entry.png 0644 root bin
+f none html/en/images/dialogs/histogram-rgb.png 0644 root bin
+f none html/en/images/dialogs/stock-selection-to-channel-16.png 0644 root bin
+f none html/en/images/dialogs/brushes-dialog.png 0644 root bin
+f none html/en/images/dialogs/color-CMYK.png 0644 root bin
+f none html/en/images/dialogs/stock-navigation-16.png 0644 root bin
+f none html/en/images/dialogs/sample-points-menu.png 0644 root bin
+f none html/en/images/dialogs/export-file-png.png 0644 root bin
+f none html/en/images/dialogs/error-console-record.png 0644 root bin
+f none html/en/images/dialogs/stock-floating-selection-16.png 0644 root bin
+f none html/en/images/dialogs/dialogs-new-image-fill.png 0644 root bin
+f none html/en/images/dialogs/patterns-dialog-list.png 0644 root bin
+f none html/en/images/dialogs/paths-dialog.png 0644 root bin
+f none html/en/images/dialogs/export-file-jpeg.png 0644 root bin
+f none html/en/images/dialogs/stock-menu-left-12.png 0644 root bin
+f none html/en/images/dialogs/icon-navigation.png 0644 root bin
+f none html/en/images/dialogs/navigation.png 0644 root bin
+f none html/en/images/dialogs/gradient-editor-dialog.png 0644 root bin
+f none html/en/images/dialogs/stock-selection-to-path-16.png 0644 root bin
+f none html/en/images/dialogs/brushes-buttons.png 0644 root bin
+f none html/en/images/dialogs/error-console.png 0644 root bin
+f none html/en/images/dialogs/stock-eye-20.png 0644 root bin
+f none html/en/images/dialogs/stock-selection-stroke-16.png 0644 root bin
+f none html/en/images/dialogs/gradient-editor-colorfrom.png 0644 root bin
+f none html/en/images/dialogs/templates-dialog.png 0644 root bin
+f none html/en/images/dialogs/layer-mask-add.png 0644 root bin
+f none html/en/images/dialogs/palette-editor.png 0644 root bin
+f none html/en/images/dialogs/stock-invert-16.png 0644 root bin
+f none html/en/images/dialogs/buffers-dialog.png 0644 root bin
+f none html/en/images/dialogs/history.png 0644 root bin
+f none html/en/images/dialogs/gradient-menu.png 0644 root bin
+f none html/en/images/dialogs/stock-undo-history-16.png 0644 root bin
+f none html/en/images/dialogs/brushes-dialog-simple.png 0644 root bin
+f none html/en/images/dialogs/gradient-editor-color.png 0644 root bin
+f none html/en/images/dialogs/device-status.png 0644 root bin
+f none html/en/images/dialogs/gradient-editor-popup-menu.png 0644 root bin
+f none html/en/images/dialogs/wilber-channels-green.png 0644 root bin
+f none html/en/images/dialogs/fonts-grid-dialog.png 0644 root bin
+f none html/en/images/dialogs/export-file-mng.png 0644 root bin
+f none html/en/images/dialogs/dialogs-icon-delete.png 0644 root bin
+f none html/en/images/dialogs/dialogs-templates-edit.png 0644 root bin
+f none html/en/images/dialogs/palette-import-dialog.png 0644 root bin
+f none html/en/images/dialogs/html_notation-menu.png 0644 root bin
+f none html/en/images/dialogs/brushes-dialog-clipboard.png 0644 root bin
+f none html/en/images/dialogs/histogram-range.png 0644 root bin
+f none html/en/images/dialogs/dialogs-new-layer.png 0644 root bin
+f none html/en/images/dialogs/dialogs-icon-lower.png 0644 root bin
+f none html/en/images/dialogs/layers_overview.png 0644 root bin
+f none html/en/images/dialogs/patterns-dialog-clipboard.png 0644 root bin
+f none html/en/images/dialogs/palette-editor-context-menu.png 0644 root bin
+f none html/en/images/dialogs/channel-masks-gradient.png 0644 root bin
+f none html/en/images/dialogs/palettes-offset-options.png 0644 root bin
+f none html/en/images/dialogs/color-scale.png 0644 root bin
+f none html/en/images/dialogs/export-file-gif.png 0644 root bin
+f none html/en/images/dialogs/layer-list-entry.png 0644 root bin
+f none html/en/images/dialogs/stock-selection-none-16.png 0644 root bin
+f none html/en/images/dialogs/channel-quickmask.png 0644 root bin
+f none html/en/images/dialogs/dialogs-shortcuts.png 0644 root bin
+f none html/en/images/dialogs/palettes-popmenu.png 0644 root bin
+f none html/en/images/dialogs/undo-history-dialog.png 0644 root bin
+f none html/en/images/dialogs/palettes-sort.png 0644 root bin
+f none html/en/images/dialogs/channels-context-menu.png 0644 root bin
+f none html/en/images/dialogs/layers_example.png 0644 root bin
+f none html/en/images/dialogs/stock-duplicate-16.png 0644 root bin
+f none html/en/images/prev.png 0644 root bin
+d none html/en/images/tool-options 0755 root bin
+f none html/en/images/tool-options/clone-non-align.png 0644 root bin
+f none html/en/images/tool-options/rotate-affect-selection.png 0644 root bin
+f none html/en/images/tool-options/ink-type-circle.png 0644 root bin
+f none html/en/images/tool-options/gradient-asym-conical.png 0644 root bin
+f none html/en/images/tool-options/rectsel-mode-replace.png 0644 root bin
+f none html/en/images/tool-options/rotate-affect-path.png 0644 root bin
+f none html/en/images/tool-options/stock-gravity-west-24.png 0644 root bin
+f none html/en/images/tool-options/brush-gradient-sawtooth.png 0644 root bin
+f none html/en/images/tool-options/path-stroke.png 0644 root bin
+f none html/en/images/tool-options/clone-align.png 0644 root bin
+f none html/en/images/tool-options/rectsel-mode-add.png 0644 root bin
+f none html/en/images/tool-options/stock-vcenter-24.png 0644 root bin
+f none html/en/images/tool-options/gradient-anticlock-spiral.png 0644 root bin
+f none html/en/images/tool-options/brush-gradient-triangular.png 0644 root bin
+f none html/en/images/tool-options/gradient-sym-conical.png 0644 root bin
+f none html/en/images/tool-options/stock-gravity-east-24.png 0644 root bin
+f none html/en/images/tool-options/rectsel-mode-intersect.png 0644 root bin
+f none html/en/images/tool-options/rectsel-mode-subtract.png 0644 root bin
+f none html/en/images/tool-options/gradient-ang-shapeburst.png 0644 root bin
+f none html/en/images/tool-options/gradient-dim-shapeburst.png 0644 root bin
+f none html/en/images/tool-options/clone-registered.png 0644 root bin
+f none html/en/images/tool-options/gradient-bilinear.png 0644 root bin
+f none html/en/images/tool-options/gradient-spher-shapeburst.png 0644 root bin
+f none html/en/images/tool-options/rotate-affect-layer.png 0644 root bin
+f none html/en/images/tool-options/gradient-square.png 0644 root bin
+f none html/en/images/tool-options/stock-gravity-south-24.png 0644 root bin
+f none html/en/images/tool-options/stock-gravity-north-24.png 0644 root bin
+f none html/en/images/tool-options/stock-hcenter-24.png 0644 root bin
+f none html/en/images/tool-options/brush-gradient-none.png 0644 root bin
+f none html/en/images/tool-options/brush-gradient-normal.png 0644 root bin
+f none html/en/images/tool-options/gradient-radial.png 0644 root bin
+f none html/en/images/tool-options/gradient-clock-spiral.png 0644 root bin
+f none html/en/images/tool-options/path-curve.png 0644 root bin
+f none html/en/images/tool-options/gradient-linear.png 0644 root bin
+f none html/en/images/gimp-splash.png 0644 root bin
+f none html/en/images/example.png 0644 root bin
+d none html/en/images/using 0755 root bin
+f none html/en/images/using/wilber-simple-othergrid.png 0644 root bin
+f none html/en/images/using/enter-unicode-char2.png 0644 root bin
+f none html/en/images/using/select-outline-qmask-feather.png 0644 root bin
+f none html/en/images/using/empty-image-window.png 0644 root bin
+f none html/en/images/using/tab-menu-tab-style.png 0644 root bin
+f none html/en/images/using/colormanagement-workflow1.png 0644 root bin
+f none html/en/images/using/gih-hands-layers.png 0644 root bin
+f none html/en/images/using/gih1234angl.png 0644 root bin
+f none html/en/images/using/layer-mode-addition-mask2.jpg 0644 root bin
+f none html/en/images/using/layer-mode-hue-mask2.jpg 0644 root bin
+f none html/en/images/using/gradient-usage.png 0644 root bin
+f none html/en/images/using/layer-mode-hard-light-mask2.jpg 0644 root bin
+f none html/en/images/using/straightline1.png 0644 root bin
+f none html/en/images/using/select-to-brush.png 0644 root bin
+f none html/en/images/using/text-example.png 0644 root bin
+f none html/en/images/using/export-dialog.png 0644 root bin
+f none html/en/images/using/basicshape2.png 0644 root bin
+f none html/en/images/using/layer-mode-grain-extract-mask1.jpg 0644 root bin
+f none html/en/images/using/select-move-3.png 0644 root bin
+f none html/en/images/using/script-fu-screen.png 0644 root bin
+f none html/en/images/using/layer-mode-value-mask1.jpg 0644 root bin
+f none html/en/images/using/path-from-text.png 0644 root bin
+f none html/en/images/using/unstuck-select-all.png 0644 root bin
+f none html/en/images/using/script-fu-console.png 0644 root bin
+f none html/en/images/using/gih1234rand.png 0644 root bin
+f none html/en/images/using/wilber-channel-rgb.png 0644 root bin
+f none html/en/images/using/toolbox-description.png 0644 root bin
+f none html/en/images/using/layer-mode-burn-mask2.jpg 0644 root bin
+f none html/en/images/using/layer-mode-divide-mask1.jpg 0644 root bin
+f none html/en/images/using/stock-navigation-16.png 0644 root bin
+f none html/en/images/using/list-search-field.png 0644 root bin
+f none html/en/images/using/layer-mode-dissolve-nbig.jpg 0644 root bin
+f none html/en/images/using/imagewindow-description.png 0644 root bin
+f none html/en/images/using/layer-mode-subtract-mask1.jpg 0644 root bin
+f none html/en/images/using/gih1234incr.png 0644 root bin
+f none html/en/images/using/rect+lasso-ex.png 0644 root bin
+f none html/en/images/using/gimp-curves-tool-2-4-vs-2-6.png 0644 root bin
+f none html/en/images/using/stretch-shrink-cursor.png 0644 root bin
+f none html/en/images/using/tab-menu.png 0644 root bin
+f none html/en/images/using/threshold-selection.png 0644 root bin
+f none html/en/images/using/save-tiff-dialog.png 0644 root bin
+f none html/en/images/using/file-gih-save.png 0644 root bin
+f none html/en/images/using/duck_orig.png 0644 root bin
+f none html/en/images/using/layer-mode-saturation-mask2.jpg 0644 root bin
+f none html/en/images/using/preparing_for_web2.png 0644 root bin
+f none html/en/images/using/layer-mode-lighten-only-mask1.jpg 0644 root bin
+f none html/en/images/using/palettes.png 0644 root bin
+f none html/en/images/using/pattern-script-examples.png 0644 root bin
+f none html/en/images/using/dialog-highlight-imagemenu.png 0644 root bin
+f none html/en/images/using/wilber-channel-gray.png 0644 root bin
+f none html/en/images/using/layer-mode-screen-mask1.jpg 0644 root bin
+f none html/en/images/using/layer-mode-overlay-mask1.jpg 0644 root bin
+f none html/en/images/using/layer-mode-color-mask1.jpg 0644 root bin
+f none html/en/images/using/select-move-2.png 0644 root bin
+f none html/en/images/using/24-scalable-brushes.png 0644 root bin
+f none html/en/images/using/dialog-highlight-dockbar.png 0644 root bin
+f none html/en/images/using/icc-apply.png 0644 root bin
+f none html/en/images/using/layer-mode-multiply-mask1.jpg 0644 root bin
+f none html/en/images/using/script-fu-exts.png 0644 root bin
+f none html/en/images/using/tab-menu-preview-size.png 0644 root bin
+f none html/en/images/using/pattern-create.png 0644 root bin
+f none html/en/images/using/enter-unicode-char4.png 0644 root bin
+f none html/en/images/using/layer-mode-mask1.jpg 0644 root bin
+f none html/en/images/using/gih-array1D.png 0644 root bin
+f none html/en/images/using/layer-mode-dissolve-100.jpg 0644 root bin
+f none html/en/images/using/brush-examples.png 0644 root bin
+f none html/en/images/using/enter-unicode-char3.png 0644 root bin
+f none html/en/images/using/threshold-layers.png 0644 root bin
+f none html/en/images/using/layer-mode-darken-only-mask1.jpg 0644 root bin
+f none html/en/images/using/fog-tree-example.png 0644 root bin
+f none html/en/images/using/unstuck-layers-dialog-transparentlayer.png 0644 root bin
+f none html/en/images/using/layer-mode-soft-light-mask1.jpg 0644 root bin
+f none html/en/images/using/wilber-simple-defaultgrid.png 0644 root bin
+f none html/en/images/using/threshold-mask.png 0644 root bin
+f none html/en/images/using/dialog-button-bar.png 0644 root bin
+f none html/en/images/using/text-tool.png 0644 root bin
+f none html/en/images/using/select-outline.png 0644 root bin
+f none html/en/images/using/gih-3Dnum.png 0644 root bin
+f none html/en/images/using/experimental-gegl-tool.png 0644 root bin
+f none html/en/images/using/patterns-usage.png 0644 root bin
+f none html/en/images/using/wilber-simple-nogrid.png 0644 root bin
+f none html/en/images/using/layer-mode-difference-mask1.jpg 0644 root bin
+f none html/en/images/using/gih-hands-stroke.png 0644 root bin
+f none html/en/images/using/create-brush1.png 0644 root bin
+f none html/en/images/using/layer-mode-grain-merge-mask2.jpg 0644 root bin
+f none html/en/images/using/layer-mode-dodge-mask2.jpg 0644 root bin
+f none html/en/images/using/threshold-fit.png 0644 root bin
+f none html/en/images/using/save-png-dialog.png 0644 root bin
+f none html/en/images/using/tab-menu-add-tab.png 0644 root bin
+f none html/en/images/using/gif-save-dialog.png 0644 root bin
+f none html/en/images/using/layer-mode-soft-light-mask2.jpg 0644 root bin
+f none html/en/images/using/path-stroking-examples.png 0644 root bin
+f none html/en/images/using/dock-tab.png 0644 root bin
+f none html/en/images/using/layer-mode-darken-only-mask2.jpg 0644 root bin
+f none html/en/images/using/layer-mode-normal-100.jpg 0644 root bin
+f none html/en/images/using/logo-examples.png 0644 root bin
+f none html/en/images/using/threshold-decomp.png 0644 root bin
+f none html/en/images/using/create-brush2.png 0644 root bin
+f none html/en/images/using/layer-mode-dissolve-dbig.jpg 0644 root bin
+f none html/en/images/using/layer-mode-grain-merge-mask1.jpg 0644 root bin
+f none html/en/images/using/layer-mode-dodge-mask1.jpg 0644 root bin
+f none html/en/images/using/24-refreshed-look.png 0644 root bin
+f none html/en/images/using/layer-mode-difference-mask2.jpg 0644 root bin
+f none html/en/images/using/gih-array3D.png 0644 root bin
+f none html/en/images/using/new-free-select-tool.png 0644 root bin
+f none html/en/images/using/path-text-stroked.png 0644 root bin
+f none html/en/images/using/crop-zealous.png 0644 root bin
+f none html/en/images/using/script-fu-menu.png 0644 root bin
+f none html/en/images/using/path-examples.png 0644 root bin
+f none html/en/images/using/layer-mode-screen-mask2.jpg 0644 root bin
+f none html/en/images/using/crop-orig.png 0644 root bin
+f none html/en/images/using/dialog-highlight-handle.png 0644 root bin
+f none html/en/images/using/layer-mode-dissolve-50.jpg 0644 root bin
+f none html/en/images/using/layer-mode-color-mask2.jpg 0644 root bin
+f none html/en/images/using/select-move-1.png 0644 root bin
+f none html/en/images/using/path-with-anchors.png 0644 root bin
+f none html/en/images/using/24-color-management.png 0644 root bin
+f none html/en/images/using/layer-mode-overlay-mask2.jpg 0644 root bin
+f none html/en/images/using/file-gbr-save.png 0644 root bin
+f none html/en/images/using/straightline3.png 0644 root bin
+f none html/en/images/using/standard-setup.png 0644 root bin
+f none html/en/images/using/threshold-orig.png 0644 root bin
+f none html/en/images/using/ui-calibrate.png 0644 root bin
+f none html/en/images/using/layer-mode-multiply-mask2.jpg 0644 root bin
+f none html/en/images/using/text-warning.png 0644 root bin
+f none html/en/images/using/straightline4.png 0644 root bin
+f none html/en/images/using/gradient-examples.png 0644 root bin
+f none html/en/images/using/layer-mode-mask2.jpg 0644 root bin
+f none html/en/images/using/script-fu-image.png 0644 root bin
+f none html/en/images/using/layer-mode-burn-mask1.jpg 0644 root bin
+f none html/en/images/using/unstuck-layers-dialog-invislayer.png 0644 root bin
+f none html/en/images/using/keyfob_orig.png 0644 root bin
+f none html/en/images/using/gih-correlation.png 0644 root bin
+f none html/en/images/using/layer-mode-divide-mask2.jpg 0644 root bin
+f none html/en/images/using/tab-icon.png 0644 root bin
+f none html/en/images/using/preparing_for_web-alphatransparency.png 0644 root bin
+f none html/en/images/using/create-brush3.png 0644 root bin
+f none html/en/images/using/dialog-highlight-closetab.png 0644 root bin
+f none html/en/images/using/layer-mode-subtract-mask2.jpg 0644 root bin
+f none html/en/images/using/scroll-beyond-border.png 0644 root bin
+f none html/en/images/using/color-gradient-pencil.png 0644 root bin
+f none html/en/images/using/threshold-result.png 0644 root bin
+f none html/en/images/using/gradient-draw.png 0644 root bin
+f none html/en/images/using/preparing_for_web1.png 0644 root bin
+f none html/en/images/using/layer-mode-lighten-only-mask2.jpg 0644 root bin
+f none html/en/images/using/select-outline-qmask.png 0644 root bin
+f none html/en/images/using/layer-mode-normal-50.jpg 0644 root bin
+f none html/en/images/using/layer-mode-saturation-mask1.jpg 0644 root bin
+f none html/en/images/using/unstuck-floating-sel.png 0644 root bin
+f none html/en/images/using/pattern-checked.png 0644 root bin
+f none html/en/images/using/crop-auto.png 0644 root bin
+f none html/en/images/using/layer-mode-hue-mask1.jpg 0644 root bin
+f none html/en/images/using/layer-mode-addition-mask1.jpg 0644 root bin
+f none html/en/images/using/enter-unicode-char1.png 0644 root bin
+f none html/en/images/using/colormanagement-workflow2.png 0644 root bin
+f none html/en/images/using/save-jpeg-dialog.png 0644 root bin
+f none html/en/images/using/layer-mode-hard-light-mask1.jpg 0644 root bin
+f none html/en/images/using/straightline2.png 0644 root bin
+f none html/en/images/using/wilber.png 0644 root bin
+f none html/en/images/using/rectangle-handles.png 0644 root bin
+f none html/en/images/using/unstuck-show-selection-menu.png 0644 root bin
+f none html/en/images/using/basicshape1.png 0644 root bin
+f none html/en/images/using/24-selection-tools.png 0644 root bin
+f none html/en/images/using/layer-mode-grain-extract-mask2.jpg 0644 root bin
+f none html/en/images/using/gih-array2D.png 0644 root bin
+f none html/en/images/using/wilber-layers.png 0644 root bin
+f none html/en/images/using/layer-mode-value-mask2.jpg 0644 root bin
+f none html/en/images/using/wilber-simple-guides.png 0644 root bin
+f none html/en/images/using/dialog-highlight-tabmenu.png 0644 root bin
+f none html/en/images/using/dock-attached.png 0644 root bin
+f none html/en/images/using/brush-dynamics.jpg 0644 root bin
+f none html/en/images/using/file-open-dialog.png 0644 root bin
+d none html/en/images/preferences 0755 root bin
+f none html/en/images/preferences/prefs-help.png 0644 root bin
+f none html/en/images/preferences/normal-title-bar.png 0644 root bin
+f none html/en/images/preferences/prefs-toolbox.png 0644 root bin
+f none html/en/images/preferences/prefs-image-window-appearance.png 0644 root bin
+f none html/en/images/preferences/utility-title-bar.png 0644 root bin
+f none html/en/images/preferences/prefs-interface.png 0644 root bin
+f none html/en/images/preferences/prefs-folders-brush.png 0644 root bin
+f none html/en/images/preferences/prefs-image-window-title.png 0644 root bin
+f none html/en/images/preferences/prefs-theme.png 0644 root bin
+f none html/en/images/preferences/prefs-image-window.png 0644 root bin
+f none html/en/images/preferences/input-controllers-keyboard.png 0644 root bin
+f none html/en/images/preferences/prefs-list.png 0644 root bin
+f none html/en/images/preferences/prefs-display.png 0644 root bin
+f none html/en/images/preferences/prefs-default-grid.png 0644 root bin
+f none html/en/images/preferences/prefs-new-image.png 0644 root bin
+f none html/en/images/preferences/input-controllers.png 0644 root bin
+f none html/en/images/preferences/prefs-environment.png 0644 root bin
+f none html/en/images/preferences/input-controllers-wheel.png 0644 root bin
+f none html/en/images/preferences/input-devices.png 0644 root bin
+f none html/en/images/preferences/input-devices-tablet.png 0644 root bin
+f none html/en/images/preferences/prefs-window-management.png 0644 root bin
+f none html/en/images/preferences/prefs-folders.png 0644 root bin
+f none html/en/images/preferences/prefs-color-management.png 0644 root bin
+f none html/en/images/preferences/input-controllers-action.png 0644 root bin
+f none html/en/images/preferences/prefs-tool-options.png 0644 root bin
+f none html/en/images/mousebutton.png 0644 root bin
+d none html/en/images/toolbox 0755 root bin
+f none html/en/images/toolbox/stock-tool-flip-22.png 0644 root bin
+f none html/en/images/toolbox/crop-grow-2.png 0644 root bin
+f none html/en/images/toolbox/FG-select-toolbox.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-free-select-22.png 0644 root bin
+f none html/en/images/toolbox/perspective-clone-ex1.png 0644 root bin
+f none html/en/images/toolbox/tool-options-align.png 0644 root bin
+f none html/en/images/toolbox/align-ex2.png 0644 root bin
+f none html/en/images/toolbox/brush-tools-box.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-hue-saturation-22.png 0644 root bin
+f none html/en/images/toolbox/tool-options-wand.png 0644 root bin
+f none html/en/images/toolbox/tool-options-dodge.png 0644 root bin
+f none html/en/images/toolbox/toolbox-bpg.png 0644 root bin
+f none html/en/images/toolbox/tool-dialog-scale.png 0644 root bin
+f none html/en/images/toolbox/levels-ex3a.png 0644 root bin
+f none html/en/images/toolbox/curves-horiz-1.png 0644 root bin
+f none html/en/images/toolbox/tool-options-scissor.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-blur-22.png 0644 root bin
+f none html/en/images/toolbox/toolbox-gradient.png 0644 root bin
+f none html/en/images/toolbox/clone-source.png 0644 root bin
+f none html/en/images/toolbox/hue-sat-overlap-2.png 0644 root bin
+f none html/en/images/toolbox/clone-dest.png 0644 root bin
+f none html/en/images/toolbox/tool-options-selbycolor.png 0644 root bin
+f none html/en/images/toolbox/tools-hue-sat.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-bucket-fill-22.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-fuzzy-select-22.png 0644 root bin
+f none html/en/images/toolbox/curves-vert-2.png 0644 root bin
+f none html/en/images/toolbox/toolbox-rectsel.png 0644 root bin
+f none html/en/images/toolbox/clip-crop.png 0644 root bin
+f none html/en/images/toolbox/del-button.png 0644 root bin
+f none html/en/images/toolbox/resto-button.png 0644 root bin
+f none html/en/images/toolbox/curves-work.png 0644 root bin
+f none html/en/images/toolbox/tool-dialog-shear.png 0644 root bin
+f none html/en/images/toolbox/fill-by-1.png 0644 root bin
+f none html/en/images/toolbox/levels-input-2.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-iscissors-22.png 0644 root bin
+f none html/en/images/toolbox/tool-dialog-text.png 0644 root bin
+f none html/en/images/toolbox/levels-ex1b.png 0644 root bin
+f none html/en/images/toolbox/blend-tool-options.png 0644 root bin
+f none html/en/images/toolbox/toolbox-eraser.png 0644 root bin
+f none html/en/images/toolbox/toolbox-clone.png 0644 root bin
+f none html/en/images/toolbox/tools-curves.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-shear-22.png 0644 root bin
+f none html/en/images/toolbox/align-ex5a.png 0644 root bin
+f none html/en/images/toolbox/tool-options-lasso.png 0644 root bin
+f none html/en/images/toolbox/toolbox-path.png 0644 root bin
+f none html/en/images/toolbox/side-pt.png 0644 root bin
+f none html/en/images/toolbox/clone-cross.png 0644 root bin
+f none html/en/images/toolbox/tool-options-levels.png 0644 root bin
+f none html/en/images/toolbox/presets-menu.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-eraser-22.png 0644 root bin
+f none html/en/images/toolbox/tool-options-zoom.png 0644 root bin
+f none html/en/images/toolbox/tool-options-paintbrush.png 0644 root bin
+f none html/en/images/toolbox/toolbox-image.png 0644 root bin
+f none html/en/images/toolbox/FG-select-contig1.png 0644 root bin
+f none html/en/images/toolbox/toolbox-flip.png 0644 root bin
+f none html/en/images/toolbox/tool-options-crop.png 0644 root bin
+f none html/en/images/toolbox/by-color-selection.png 0644 root bin
+f none html/en/images/toolbox/FG-select-ex2.png 0644 root bin
+f none html/en/images/toolbox/toolbox-airbrush.png 0644 root bin
+f none html/en/images/toolbox/corner-pt.png 0644 root bin
+f none html/en/images/toolbox/clone-registered.png 0644 root bin
+f none html/en/images/toolbox/dissolve-mode-example.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-move-22.png 0644 root bin
+f none html/en/images/toolbox/tool-dialog-perspective.png 0644 root bin
+f none html/en/images/toolbox/fuzzy-selection.png 0644 root bin
+f none html/en/images/toolbox/measure-horiz.png 0644 root bin
+f none html/en/images/toolbox/display_ratio.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-rotate-22.png 0644 root bin
+f none html/en/images/toolbox/fill-by-0.png 0644 root bin
+f none html/en/images/toolbox/levels-input-3.png 0644 root bin
+f none html/en/images/toolbox/tool-options-ink.png 0644 root bin
+f none html/en/images/toolbox/FG-select-smoothing1.png 0644 root bin
+f none html/en/images/toolbox/tool-options-shear.png 0644 root bin
+f none html/en/images/toolbox/toolbox-rotate.png 0644 root bin
+f none html/en/images/toolbox/tool-options-rectsel.png 0644 root bin
+f none html/en/images/toolbox/mode-behind.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-dodge-22.png 0644 root bin
+f none html/en/images/toolbox/FG-select-options.png 0644 root bin
+f none html/en/images/toolbox/hue-sat-overlap-3.png 0644 root bin
+f none html/en/images/toolbox/cissors-bad.png 0644 root bin
+f none html/en/images/toolbox/toolbox-smudge.png 0644 root bin
+f none html/en/images/toolbox/toolbox-scissor.png 0644 root bin
+f none html/en/images/toolbox/eraser-ex1.png 0644 root bin
+f none html/en/images/toolbox/select-area.png 0644 root bin
+f none html/en/images/toolbox/posterize-ex.png 0644 root bin
+f none html/en/images/toolbox/tool-options-scale.png 0644 root bin
+f none html/en/images/toolbox/curves-invert.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-path-22.png 0644 root bin
+f none html/en/images/toolbox/toolbox-heal.png 0644 root bin
+f none html/en/images/toolbox/align-ex4.png 0644 root bin
+f none html/en/images/toolbox/iscissors-selection.png 0644 root bin
+f none html/en/images/toolbox/levels-output-1.png 0644 root bin
+f none html/en/images/toolbox/tool-options-text.png 0644 root bin
+f none html/en/images/toolbox/text-along-path.png 0644 root bin
+f none html/en/images/toolbox/selection-tools.png 0644 root bin
+f none html/en/images/toolbox/crop-grow-3.png 0644 root bin
+f none html/en/images/toolbox/toolbox-perspective-clone.png 0644 root bin
+f none html/en/images/toolbox/align-ex3.png 0644 root bin
+f none html/en/images/toolbox/tool-options-fill.png 0644 root bin
+f none html/en/images/toolbox/clone-aligned.png 0644 root bin
+f none html/en/images/toolbox/toolbox-selbycolor.png 0644 root bin
+f none html/en/images/toolbox/cissors-plus.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-blend-22.png 0644 root bin
+f none html/en/images/toolbox/shear-example.png 0644 root bin
+f none html/en/images/toolbox/tool-options-ellipsel.png 0644 root bin
+f none html/en/images/toolbox/levels-ex2a.png 0644 root bin
+f none html/en/images/toolbox/blend-tool-offset.png 0644 root bin
+f none html/en/images/toolbox/FG-select-ex3.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-zoom-22.png 0644 root bin
+f none html/en/images/toolbox/FG-select-ex4.png 0644 root bin
+f none html/en/images/toolbox/brush-dynamics.png 0644 root bin
+f none html/en/images/toolbox/path-tool-options.png 0644 root bin
+f none html/en/images/toolbox/tools-posterize.png 0644 root bin
+f none html/en/images/toolbox/curves-lighten-1.png 0644 root bin
+f none html/en/images/toolbox/tool-options-paint-gradient.png 0644 root bin
+f none html/en/images/toolbox/measure-vert.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-foreground-select-22.png 0644 root bin
+f none html/en/images/toolbox/toolbox-pencil.png 0644 root bin
+f none html/en/images/toolbox/tool-options-perspective.png 0644 root bin
+f none html/en/images/toolbox/levels-eyedrop.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-heal-22.png 0644 root bin
+f none html/en/images/toolbox/heal-cross.png 0644 root bin
+f none html/en/images/toolbox/fill-feathered-2.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-move-16.png 0644 root bin
+f none html/en/images/toolbox/auto-shrink1.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-by-color-select-22.png 0644 root bin
+f none html/en/images/toolbox/cursor-select-rect-intersect.png 0644 root bin
+f none html/en/images/toolbox/tool-options-move.png 0644 root bin
+f none html/en/images/toolbox/levels-ex2b.png 0644 root bin
+f none html/en/images/toolbox/mode-erase.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-rect-select-22.png 0644 root bin
+f none html/en/images/toolbox/clip-3.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-ellipse-select-22.png 0644 root bin
+f none html/en/images/toolbox/tool-options-brushcommon.png 0644 root bin
+f none html/en/images/toolbox/clone-none.png 0644 root bin
+f none html/en/images/toolbox/FG-select-contig3.png 0644 root bin
+f none html/en/images/toolbox/toolbox-scale.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-perspective-22.png 0644 root bin
+f none html/en/images/toolbox/toolbox-shear.png 0644 root bin
+f none html/en/images/toolbox/toolbox-wand.png 0644 root bin
+f none html/en/images/toolbox/curves-lighten-2.png 0644 root bin
+f none html/en/images/toolbox/stock-convert-grayscale-16.png 0644 root bin
+f none html/en/images/toolbox/fill-feathered-1.png 0644 root bin
+f none html/en/images/toolbox/brush-tools.png 0644 root bin
+f none html/en/images/toolbox/auto-shrink2.png 0644 root bin
+f none html/en/images/toolbox/fill-by-3.png 0644 root bin
+f none html/en/images/toolbox/rectangle-selection.png 0644 root bin
+f none html/en/images/toolbox/toolbox-crop.png 0644 root bin
+f none html/en/images/toolbox/tool-options-flip.png 0644 root bin
+f none html/en/images/toolbox/tool-options-selection.png 0644 root bin
+f none html/en/images/toolbox/toolbox-measure.png 0644 root bin
+f none html/en/images/toolbox/clip-adjust.png 0644 root bin
+f none html/en/images/toolbox/toolbox-brush.png 0644 root bin
+f none html/en/images/toolbox/tool-options-eraser.png 0644 root bin
+f none html/en/images/toolbox/heal-compar.png 0644 root bin
+f none html/en/images/toolbox/toolbox-ellipsel.png 0644 root bin
+f none html/en/images/toolbox/toolbox-blur.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-posterize-22.png 0644 root bin
+f none html/en/images/toolbox/FG-select-smoothing2.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-levels-22.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-curves-22.png 0644 root bin
+f none html/en/images/toolbox/clip-orig.png 0644 root bin
+f none html/en/images/toolbox/transform-tools.png 0644 root bin
+f none html/en/images/toolbox/eraser-ex2.png 0644 root bin
+f none html/en/images/toolbox/save-color-settings.png 0644 root bin
+f none html/en/images/toolbox/XDS.png 0644 root bin
+f none html/en/images/toolbox/measure-tool-options.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-ink-22.png 0644 root bin
+f none html/en/images/toolbox/levels-output-2.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-color-balance-22.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-colorize-22.png 0644 root bin
+f none html/en/images/toolbox/toolbox-zoom.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-brightness-contrast-22.png 0644 root bin
+f none html/en/images/toolbox/cursor-select-rect-minus.png 0644 root bin
+f none html/en/images/toolbox/colors-desaturate-average.png 0644 root bin
+f none html/en/images/toolbox/align-ex5b.png 0644 root bin
+f none html/en/images/toolbox/tool-options-rotate.png 0644 root bin
+f none html/en/images/toolbox/tools-threshold.png 0644 root bin
+f none html/en/images/toolbox/tool-options-heal.png 0644 root bin
+f none html/en/images/toolbox/colors-desaturate-brightness.png 0644 root bin
+f none html/en/images/toolbox/color-picker-options.png 0644 root bin
+f none html/en/images/toolbox/mode-dissolve.png 0644 root bin
+f none html/en/images/toolbox/clone-bad.png 0644 root bin
+f none html/en/images/toolbox/toolbox-text.png 0644 root bin
+f none html/en/images/toolbox/tools-colorize.png 0644 root bin
+f none html/en/images/toolbox/FG-select-contig2.png 0644 root bin
+f none html/en/images/toolbox/toolbox-palette.png 0644 root bin
+f none html/en/images/toolbox/tools-levels.png 0644 root bin
+f none html/en/images/toolbox/FG-select-ex1.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-scale-22.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-pencil-22.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-text-22.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-color-picker-22.png 0644 root bin
+f none html/en/images/toolbox/tools-color-balance.png 0644 root bin
+f none html/en/images/toolbox/free-selection.png 0644 root bin
+f none html/en/images/toolbox/curves-H-S.png 0644 root bin
+f none html/en/images/toolbox/toolbox-align.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-clone-22.png 0644 root bin
+f none html/en/images/toolbox/pointer.png 0644 root bin
+f none html/en/images/toolbox/perspective-clone-options.png 0644 root bin
+f none html/en/images/toolbox/tool-options-smudge.png 0644 root bin
+f none html/en/images/toolbox/cissors-mouse.png 0644 root bin
+f none html/en/images/toolbox/toolbox-dodge.png 0644 root bin
+f none html/en/images/toolbox/clone-fixed.png 0644 root bin
+f none html/en/images/toolbox/tool-dialog-rotate.png 0644 root bin
+f none html/en/images/toolbox/desaturate.png 0644 root bin
+f none html/en/images/toolbox/colors-desaturate-luminosity.png 0644 root bin
+f none html/en/images/toolbox/levels-ex3b.png 0644 root bin
+f none html/en/images/toolbox/curves-horiz-2.png 0644 root bin
+f none html/en/images/toolbox/crop-grow-1.png 0644 root bin
+f none html/en/images/toolbox/perspective-clone-ex2.png 0644 root bin
+f none html/en/images/toolbox/cursor-select-rect-plus.png 0644 root bin
+f none html/en/images/toolbox/reset-button.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-crop-22.png 0644 root bin
+f none html/en/images/toolbox/align-ex1.png 0644 root bin
+f none html/en/images/toolbox/ellipse-selection.png 0644 root bin
+f none html/en/images/toolbox/hue-sat-overlap-1.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-paintbrush-22.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-align-22.png 0644 root bin
+f none html/en/images/toolbox/presets-menu-icon.png 0644 root bin
+f none html/en/images/toolbox/toolbox-perspective.png 0644 root bin
+f none html/en/images/toolbox/clip-3b.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-airbrush-22.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-measure-22.png 0644 root bin
+f none html/en/images/toolbox/tools-brightness.png 0644 root bin
+f none html/en/images/toolbox/toolbox-move.png 0644 root bin
+f none html/en/images/toolbox/clip-adjust2.png 0644 root bin
+f none html/en/images/toolbox/toolbox-lasso.png 0644 root bin
+f none html/en/images/toolbox/cross-pt.png 0644 root bin
+f none html/en/images/toolbox/curves-vert-1.png 0644 root bin
+f none html/en/images/toolbox/toolbox-fill.png 0644 root bin
+f none html/en/images/toolbox/painting-examples.png 0644 root bin
+f none html/en/images/toolbox/FG-select-smoothing3.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-smudge-22.png 0644 root bin
+f none html/en/images/toolbox/toolbox-pen.png 0644 root bin
+f none html/en/images/toolbox/text-path.png 0644 root bin
+f none html/en/images/toolbox/reg-button.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-perspective-clone-22.png 0644 root bin
+f none html/en/images/toolbox/tool-options-airbrush.png 0644 root bin
+f none html/en/images/toolbox/tool-options-blur-sharpen.png 0644 root bin
+f none html/en/images/toolbox/tool-options-clone.png 0644 root bin
+f none html/en/images/toolbox/tool-options-pencil.png 0644 root bin
+f none html/en/images/toolbox/stock-tool-threshold-22.png 0644 root bin
+f none html/en/images/toolbox/toolbox-eyedropper.png 0644 root bin
+f none html/en/images/toolbox/transform-tools-common-options.png 0644 root bin
+f none html/en/images/toolbox/fill-by-2.png 0644 root bin
+f none html/en/images/toolbox/manage-saved-settings.png 0644 root bin
+f none html/en/images/toolbox/levels-input-1.png 0644 root bin
+f none html/en/images/tip.png 0644 root bin
+f none html/en/images/link.png 0644 root bin
+d none html/en/images/filters 0755 root bin
+f none html/en/images/filters/options-logo-coolmetal.png 0644 root bin
+f none html/en/images/filters/options-noise-slur.png 0644 root bin
+f none html/en/images/filters/options-map-smalltiles.png 0644 root bin
+f none html/en/images/filters/options-distort-vpropagate.png 0644 root bin
+f none html/en/images/filters/options-logo-t-o-p.png 0644 root bin
+f none html/en/images/filters/options-render-cmlexplorer2.png 0644 root bin
+f none html/en/images/filters/filters-blur-tileable.png 0644 root bin
+f none html/en/images/filters/options-render-cmlexplorer5.png 0644 root bin
+f none html/en/images/filters/options-colormap-exchange.png 0644 root bin
+f none html/en/images/filters/film-options2.png 0644 root bin
+f none html/en/images/filters/filters-distort-mosaic.png 0644 root bin
+f none html/en/images/filters/options-logo-basic2.png 0644 root bin
+f none html/en/images/filters/options-noise-scatter-HSV.png 0644 root bin
+f none html/en/images/filters/filters-dilate-zone.png 0644 root bin
+f none html/en/images/filters/options-artistic-cubism.png 0644 root bin
+f none html/en/images/filters/filters-color-hot.png 0644 root bin
+f none html/en/images/filters/greythresh.png 0644 root bin
+f none html/en/images/filters/options-light-flarefx.png 0644 root bin
+f none html/en/images/filters/options-artistic-gimpressionist-sizemap.png 0644 root bin
+f none html/en/images/filters/options-decor-carve-it.png 0644 root bin
+f none html/en/images/filters/options-light-lighting4.png 0644 root bin
+f none html/en/images/filters/options-logo-glossy.png 0644 root bin
+f none html/en/images/filters/filters-distort-pagecurl.png 0644 root bin
+f none html/en/images/filters/options-artistic-gimpressionist7.png 0644 root bin
+f none html/en/images/filters/gflare-editor-2.png 0644 root bin
+f none html/en/images/filters/options-light-lighting3.png 0644 root bin
+f none html/en/images/filters/options-enhance-destripe.png 0644 root bin
+f none html/en/images/filters/options-render-fractalexplorer2.png 0644 root bin
+f none html/en/images/filters/filters-render-flame.png 0644 root bin
+f none html/en/images/filters/filters-render-grid.png 0644 root bin
+f none html/en/images/filters/filters-distort-blinds.png 0644 root bin
+f none html/en/images/filters/filters-render-diffraction.png 0644 root bin
+f none html/en/images/filters/options-imagemap-grid.png 0644 root bin
+f none html/en/images/filters/options-distort-ripple.png 0644 root bin
+f none html/en/images/filters/edge-options.png 0644 root bin
+f none html/en/images/filters/filters-distort-newsprint.png 0644 root bin
+f none html/en/images/filters/filters-dilate-pixel.png 0644 root bin
+f none html/en/images/filters/options-artistic-vangogh.png 0644 root bin
+f none html/en/images/filters/options-map-papertile.png 0644 root bin
+f none html/en/images/filters/options-render-sinus1.png 0644 root bin
+f none html/en/images/filters/options-distort-engrave.png 0644 root bin
+f none html/en/images/filters/filters-distort-curvebend.png 0644 root bin
+f none html/en/images/filters/filters-convolution-milord.png 0644 root bin
+f none html/en/images/filters/cubism-1.png 0644 root bin
+f none html/en/images/filters/filters-light-sparkle.png 0644 root bin
+f none html/en/images/filters/options-map-tile.png 0644 root bin
+f none html/en/images/filters/options-render-checkerboard.png 0644 root bin
+f none html/en/images/filters/options-logo-3d-outline.png 0644 root bin
+f none html/en/images/filters/options-render-cmlexplorer4.png 0644 root bin
+f none html/en/images/filters/filterpack-saturation-options.png 0644 root bin
+f none html/en/images/filters/options-render-cmlexplorer3.png 0644 root bin
+f none html/en/images/filters/options-blur-gauss.png 0644 root bin
+f none html/en/images/filters/options-render-jigsaw.png 0644 root bin
+f none html/en/images/filters/options-render-spheredesigner.png 0644 root bin
+f none html/en/images/filters/options-enhance-sharpen.png 0644 root bin
+f none html/en/images/filters/options-light-drop-shadow.png 0644 root bin
+f none html/en/images/filters/mapobject-options-6.png 0644 root bin
+f none html/en/images/filters/options-decor-coffee.png 0644 root bin
+f none html/en/images/filters/mapobject-options-1.png 0644 root bin
+f none html/en/images/filters/options-colors-retinex.png 0644 root bin
+f none html/en/images/filters/options-artistic-gimpressionist-orientmap.png 0644 root bin
+f none html/en/images/filters/options-artistic-applycanvas.png 0644 root bin
+f none html/en/images/filters/playback-options.png 0644 root bin
+f none html/en/images/filters/solid-noise-options.png 0644 root bin
+f none html/en/images/filters/options-distort-erase_rows.png 0644 root bin
+f none html/en/images/filters/options-logo-alien-glow.png 0644 root bin
+f none html/en/images/filters/options-render-ifscompose2.png 0644 root bin
+f none html/en/images/filters/options-noise-spread.png 0644 root bin
+f none html/en/images/filters/options-noise-rgb.png 0644 root bin
+f none html/en/images/filters/options-artistic-gimpressionist8.png 0644 root bin
+f none html/en/images/filters/options-render-fractalexplorer3.png 0644 root bin
+f none html/en/images/filters/options-artistic-oilify.png 0644 root bin
+f none html/en/images/filters/options-noise-pick.png 0644 root bin
+f none html/en/images/filters/options-decor-addborder.png 0644 root bin
+f none html/en/images/filters/options-artistic-gimpressionist6.png 0644 root bin
+f none html/en/images/filters/gflare-options-1.png 0644 root bin
+f none html/en/images/filters/gflare-editor-3.png 0644 root bin
+f none html/en/images/filters/options-light-lighting2.png 0644 root bin
+f none html/en/images/filters/options-imagemap-info.png 0644 root bin
+f none html/en/images/filters/options-light-lighting5.png 0644 root bin
+f none html/en/images/filters/options-artistic-gimpressionist1.png 0644 root bin
+f none html/en/images/filters/gflare-editor-4.png 0644 root bin
+f none html/en/images/filters/filters-blur-pixelize.png 0644 root bin
+f none html/en/images/filters/filters-edgedetect-fig.png 0644 root bin
+f none html/en/images/filters/mapobject-options-2.png 0644 root bin
+f none html/en/images/filters/options-render-sinus3.png 0644 root bin
+f none html/en/images/filters/options-light-perspective-shadow.png 0644 root bin
+f none html/en/images/filters/mapobject-options-5.png 0644 root bin
+f none html/en/images/filters/options-map-displace-cartesian.png 0644 root bin
+f none html/en/images/filters/sobel-options.png 0644 root bin
+f none html/en/images/filters/options-map-warp.png 0644 root bin
+f none html/en/images/filters/iwarp-options-2.png 0644 root bin
+f none html/en/images/filters/filters-color-borderaverage.png 0644 root bin
+f none html/en/images/filters/filters-distort-whirlpinch.png 0644 root bin
+f none html/en/images/filters/options-artistic-softglow.png 0644 root bin
+f none html/en/images/filters/filterpack-value-options.png 0644 root bin
+f none html/en/images/filters/neon-options.png 0644 root bin
+f none html/en/images/filters/options-color-filterpack.png 0644 root bin
+f none html/en/images/filters/options-artistic-gimpressionist2.png 0644 root bin
+f none html/en/images/filters/filters-enhance-nlfilter.png 0644 root bin
+f none html/en/images/filters/diff-gauss-options.png 0644 root bin
+f none html/en/images/filters/gflare-options-2.png 0644 root bin
+f none html/en/images/filters/options-light-xach-effect.png 0644 root bin
+f none html/en/images/filters/options-artistic-gimpressionist5.png 0644 root bin
+f none html/en/images/filters/filters-distort-video.png 0644 root bin
+f none html/en/images/filters/preview-submenu.png 0644 root bin
+f none html/en/images/filters/filters-convolution-extend.png 0644 root bin
+f none html/en/images/filters/options-light-lighting1.png 0644 root bin
+f none html/en/images/filters/options-enhance-despeckle.png 0644 root bin
+f none html/en/images/filters/filters-convolution-wrap.png 0644 root bin
+f none html/en/images/filters/filters-distort-waves.png 0644 root bin
+f none html/en/images/filters/options-distort-lens-distortion.png 0644 root bin
+f none html/en/images/filters/cubism-2.png 0644 root bin
+f none html/en/images/filters/filters-render-qbist.png 0644 root bin
+f none html/en/images/filters/options-decor-add-bevel.png 0644 root bin
+f none html/en/images/filters/options-logo-neon.png 0644 root bin
+f none html/en/images/filters/options-artistic-cartoon.png 0644 root bin
+f none html/en/images/filters/options-imagemap-draw.png 0644 root bin
+f none html/en/images/filters/options-glass-tile.png 0644 root bin
+f none html/en/images/filters/options-logo-chip-away.png 0644 root bin
+f none html/en/images/filters/filters-distort-shift.png 0644 root bin
+d none html/en/images/filters/examples 0755 root bin
+f none html/en/images/filters/examples/distort-taj-waves.jpg 0644 root bin
+f none html/en/images/filters/examples/starburst-layers.png 0644 root bin
+f none html/en/images/filters/examples/2zinnias.png 0644 root bin
+f none html/en/images/filters/examples/3d-outline-20.jpg 0644 root bin
+f none html/en/images/filters/examples/map-tile.png 0644 root bin
+f none html/en/images/filters/examples/convolution-blur.png 0644 root bin
+f none html/en/images/filters/examples/perspective-shadow-resize.png 0644 root bin
+f none html/en/images/filters/examples/vpropag3-zoom.png 0644 root bin
+f none html/en/images/filters/examples/chip-away-60.jpg 0644 root bin
+f none html/en/images/filters/examples/fuzzyborder-gran1.png 0644 root bin
+f none html/en/images/filters/examples/logo-basic2.jpg 0644 root bin
+f none html/en/images/filters/examples/map-lic-deriv.png 0644 root bin
+f none html/en/images/filters/examples/glass-taj-glass-tile.jpg 0644 root bin
+f none html/en/images/filters/examples/wind1.png 0644 root bin
+f none html/en/images/filters/examples/starburst-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/convolution-edge.png 0644 root bin
+f none html/en/images/filters/examples/artistic-taj-photocopy.jpg 0644 root bin
+f none html/en/images/filters/examples/borderaverage08.png 0644 root bin
+f none html/en/images/filters/examples/decor-add-bevel21.png 0644 root bin
+f none html/en/images/filters/examples/enhance-taj-unsharp-mask.jpg 0644 root bin
+f none html/en/images/filters/examples/predator-step2.jpg 0644 root bin
+f none html/en/images/filters/examples/t-o-p-hits25.jpg 0644 root bin
+f none html/en/images/filters/examples/distort-taj-curve-bend.jpg 0644 root bin
+f none html/en/images/filters/examples/distort-taj-emboss.jpg 0644 root bin
+f none html/en/images/filters/examples/light-taj-nova.jpg 0644 root bin
+f none html/en/images/filters/examples/t-o-p-hits10.jpg 0644 root bin
+f none html/en/images/filters/examples/taj_guides.jpg 0644 root bin
+f none html/en/images/filters/examples/polcoords2.png 0644 root bin
+f none html/en/images/filters/examples/render-taj-qbist.jpg 0644 root bin
+f none html/en/images/filters/examples/colors-rotation-base.png 0644 root bin
+f none html/en/images/filters/examples/fuzzyborder-shadow10.png 0644 root bin
+f none html/en/images/filters/examples/decor-taj-round-corners.png 0644 root bin
+f none html/en/images/filters/examples/distort-taj-shift.jpg 0644 root bin
+f none html/en/images/filters/examples/chip-away-0.jpg 0644 root bin
+f none html/en/images/filters/examples/kvitveis-illusion.png 0644 root bin
+f none html/en/images/filters/examples/3d-outline-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/colors-map-rotation-threshold.png 0644 root bin
+f none html/en/images/filters/examples/map-displace-pinch.png 0644 root bin
+f none html/en/images/filters/examples/logo-3d-outline.jpg 0644 root bin
+f none html/en/images/filters/examples/artistic-taj-applycanvas.jpg 0644 root bin
+f none html/en/images/filters/examples/map-illusionb.png 0644 root bin
+f none html/en/images/filters/examples/decor-taj-fuzzyborder.jpg 0644 root bin
+f none html/en/images/filters/examples/decor-taj-slide.jpg 0644 root bin
+f none html/en/images/filters/examples/color-taj-smoothpalette.jpg 0644 root bin
+f none html/en/images/filters/examples/noise-taj-pick.jpg 0644 root bin
+f none html/en/images/filters/examples/blur-taj-blur.jpg 0644 root bin
+f none html/en/images/filters/examples/blur-taj-mblur-zoom.jpg 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-main-high.png 0644 root bin
+f none html/en/images/filters/examples/generic-taj-convmatrix-emboss.jpg 0644 root bin
+f none html/en/images/filters/examples/3d-outline-shadow40.jpg 0644 root bin
+f none html/en/images/filters/examples/newsprint.png 0644 root bin
+f none html/en/images/filters/examples/light-taj-gflare.jpg 0644 root bin
+f none html/en/images/filters/examples/carve-it-stencil.png 0644 root bin
+f none html/en/images/filters/examples/map-lic-vp-nm4.png 0644 root bin
+f none html/en/images/filters/examples/render-taj-cmlexplorer.jpg 0644 root bin
+f none html/en/images/filters/examples/3d-outline-moved.jpg 0644 root bin
+f none html/en/images/filters/examples/old-photo-defocus.png 0644 root bin
+f none html/en/images/filters/examples/chip-away-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/depthmerge-results-offset.png 0644 root bin
+f none html/en/images/filters/examples/optimize-diff.png 0644 root bin
+f none html/en/images/filters/examples/fuzzyborder-blur.png 0644 root bin
+f none html/en/images/filters/examples/carve-it-mask.jpg 0644 root bin
+f none html/en/images/filters/examples/example-map-warp5.png 0644 root bin
+f none html/en/images/filters/examples/distort-taj-ripple.jpg 0644 root bin
+f none html/en/images/filters/examples/logo-alien-glow.jpg 0644 root bin
+f none html/en/images/filters/examples/glowing-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/vpropag-base.png 0644 root bin
+f none html/en/images/filters/examples/render-taj-plasma.jpg 0644 root bin
+f none html/en/images/filters/examples/logo-glossy.jpg 0644 root bin
+f none html/en/images/filters/examples/starburst-filter.jpg 0644 root bin
+f none html/en/images/filters/examples/color-taj-maxrgb.jpg 0644 root bin
+f none html/en/images/filters/examples/2zinnias-c.png 0644 root bin
+f none html/en/images/filters/examples/generic-taj-erode.jpg 0644 root bin
+f none html/en/images/filters/examples/bovination-x.png 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-brighten-high.png 0644 root bin
+f none html/en/images/filters/examples/example-map-warp2.png 0644 root bin
+f none html/en/images/filters/examples/map-taj-seamless.jpg 0644 root bin
+f none html/en/images/filters/examples/carve-it-normal.png 0644 root bin
+f none html/en/images/filters/examples/render-checkerboard1.jpg 0644 root bin
+f none html/en/images/filters/examples/perspective-shadow-angle15.png 0644 root bin
+f none html/en/images/filters/examples/map-displace5.png 0644 root bin
+f none html/en/images/filters/examples/decor-taj-addborder.jpg 0644 root bin
+f none html/en/images/filters/examples/render-taj-jigsaw.jpg 0644 root bin
+f none html/en/images/filters/examples/depthmerge-results-none.png 0644 root bin
+f none html/en/images/filters/examples/blur-demo-pixelize.png 0644 root bin
+f none html/en/images/filters/examples/enhance-taj-nl-filter.jpg 0644 root bin
+f none html/en/images/filters/examples/noise-taj-scatter-hsv.jpg 0644 root bin
+f none html/en/images/filters/examples/logo-taj-chalk.jpg 0644 root bin
+f none html/en/images/filters/examples/logo-bovination-applied.jpg 0644 root bin
+f none html/en/images/filters/examples/light-taj-xach-effect.jpg 0644 root bin
+f none html/en/images/filters/examples/carve-it-invmask.jpg 0644 root bin
+f none html/en/images/filters/examples/vpropag1.png 0644 root bin
+f none html/en/images/filters/examples/chip-away-3d.jpg 0644 root bin
+f none html/en/images/filters/examples/map-lic-text-lg.png 0644 root bin
+f none html/en/images/filters/examples/edge-taj-edge-laplace.jpg 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-main-low.png 0644 root bin
+f none html/en/images/filters/examples/render-taj-grid.jpg 0644 root bin
+f none html/en/images/filters/examples/distort-taj-video.jpg 0644 root bin
+f none html/en/images/filters/examples/vpropag6b.png 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-zoom-low.png 0644 root bin
+f none html/en/images/filters/examples/predator-pixelize16.png 0644 root bin
+f none html/en/images/filters/examples/old-photo-mottle.png 0644 root bin
+f none html/en/images/filters/examples/fuzzyborder-shadow100.png 0644 root bin
+f none html/en/images/filters/examples/glossy-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/round-corners-shadow1.png 0644 root bin
+f none html/en/images/filters/examples/distort-taj-wind.jpg 0644 root bin
+f none html/en/images/filters/examples/map-lic-mm.png 0644 root bin
+f none html/en/images/filters/examples/slice-cellspacing.png 0644 root bin
+f none html/en/images/filters/examples/qbist1.png 0644 root bin
+f none html/en/images/filters/examples/color-taj-sample-colorize.jpg 0644 root bin
+f none html/en/images/filters/examples/color-taj-filterpack.jpg 0644 root bin
+f none html/en/images/filters/examples/map-illusionc.png 0644 root bin
+f none html/en/images/filters/examples/render-taj-fractalexplorer.jpg 0644 root bin
+f none html/en/images/filters/examples/engrave_width_limit_original.png 0644 root bin
+f none html/en/images/filters/examples/dilate-neon.png 0644 root bin
+f none html/en/images/filters/examples/decor-add-bevel12.png 0644 root bin
+f none html/en/images/filters/examples/example-map-bumpmap.png 0644 root bin
+f none html/en/images/filters/examples/round-corners-rad15.png 0644 root bin
+f none html/en/images/filters/examples/kvitveis-fractal.png 0644 root bin
+f none html/en/images/filters/examples/color-taj-decompose.jpg 0644 root bin
+f none html/en/images/filters/examples/predator-step3.jpg 0644 root bin
+f none html/en/images/filters/examples/color-taj-borderaverage.png 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-edge-low.png 0644 root bin
+f none html/en/images/filters/examples/3d-outline-5.jpg 0644 root bin
+f none html/en/images/filters/examples/generic-taj-dilate.jpg 0644 root bin
+f none html/en/images/filters/examples/wind0.png 0644 root bin
+f none html/en/images/filters/examples/map-taj-map-object.jpg 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-xshift-low.png 0644 root bin
+f none html/en/images/filters/examples/distort-taj-newsprint.jpg 0644 root bin
+f none html/en/images/filters/examples/decor-add-bevel20.png 0644 root bin
+f none html/en/images/filters/examples/blur-demo-blur.png 0644 root bin
+f none html/en/images/filters/examples/predator-edge16.png 0644 root bin
+f none html/en/images/filters/examples/depthmerge-source-map2.png 0644 root bin
+f none html/en/images/filters/examples/perspective-shadow-angle105.png 0644 root bin
+f none html/en/images/filters/examples/color-taj-ccanalyse.jpg 0644 root bin
+f none html/en/images/filters/examples/combine-taj-film.jpg 0644 root bin
+f none html/en/images/filters/examples/color-taj-alien2.jpg 0644 root bin
+f none html/en/images/filters/examples/enhance-red-eye-after.jpg 0644 root bin
+f none html/en/images/filters/examples/map-taj-papertile.jpg 0644 root bin
+f none html/en/images/filters/examples/edge-taj-edge-prewitt.jpg 0644 root bin
+f none html/en/images/filters/examples/glass-taj-apply-lens.jpg 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-edge-high.png 0644 root bin
+f none html/en/images/filters/examples/cosmos-decomposed.png 0644 root bin
+f none html/en/images/filters/examples/ifscompose-tut1.png 0644 root bin
+f none html/en/images/filters/examples/t-o-p-hits40.jpg 0644 root bin
+f none html/en/images/filters/examples/noise-taj-scatter-rgb.jpg 0644 root bin
+f none html/en/images/filters/examples/render-taj-spheredesigner.jpg 0644 root bin
+f none html/en/images/filters/examples/taj_orig.jpg 0644 root bin
+f none html/en/images/filters/examples/unsharp-mask-1.png 0644 root bin
+f none html/en/images/filters/examples/convolution-edge-detect1.png 0644 root bin
+f none html/en/images/filters/examples/predator-pixelize4.png 0644 root bin
+f none html/en/images/filters/examples/perspective-shadow-applied.jpg 0644 root bin
+f none html/en/images/filters/examples/borderaverage64.png 0644 root bin
+f none html/en/images/filters/examples/depthmerge-source-image1.png 0644 root bin
+f none html/en/images/filters/examples/map-displace7a.png 0644 root bin
+f none html/en/images/filters/examples/3d-outline-alpha.png 0644 root bin
+f none html/en/images/filters/examples/erode-noise.png 0644 root bin
+f none html/en/images/filters/examples/noise-taj-slur.jpg 0644 root bin
+f none html/en/images/filters/examples/decor-taj-carve-it.jpg 0644 root bin
+f none html/en/images/filters/examples/light-taj-sparkle.jpg 0644 root bin
+f none html/en/images/filters/examples/depthmerge-results-scale.png 0644 root bin
+f none html/en/images/filters/examples/3d-outline-example.jpg 0644 root bin
+f none html/en/images/filters/examples/perspective-shadow-distance.png 0644 root bin
+f none html/en/images/filters/examples/diffraction1.png 0644 root bin
+f none html/en/images/filters/examples/neon-glow.png 0644 root bin
+f none html/en/images/filters/examples/predator-edge8.png 0644 root bin
+f none html/en/images/filters/examples/bovination-y.png 0644 root bin
+f none html/en/images/filters/examples/colors-retinex1.png 0644 root bin
+f none html/en/images/filters/examples/example-map-warp3.png 0644 root bin
+f none html/en/images/filters/examples/engrave_width_limit_yes.png 0644 root bin
+f none html/en/images/filters/examples/distort-taj-iwarp.jpg 0644 root bin
+f none html/en/images/filters/examples/chip-away-30.jpg 0644 root bin
+f none html/en/images/filters/examples/example-map-warp4.png 0644 root bin
+f none html/en/images/filters/examples/render-taj-solidnoise.jpg 0644 root bin
+f none html/en/images/filters/examples/generic-taj-convmatrix-blur.jpg 0644 root bin
+f none html/en/images/filters/examples/addborder-delta.png 0644 root bin
+f none html/en/images/filters/examples/bovination-layers.png 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-original.png 0644 root bin
+f none html/en/images/filters/examples/edge-taj-edge-sobel.jpg 0644 root bin
+f none html/en/images/filters/examples/blur-taj-pixelise.jpg 0644 root bin
+f none html/en/images/filters/examples/BGcolor.png 0644 root bin
+f none html/en/images/filters/examples/coolmetal-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/coolmetal.jpg 0644 root bin
+f none html/en/images/filters/examples/blur-demo-gauss10.png 0644 root bin
+f none html/en/images/filters/examples/chalk-script-fu.png 0644 root bin
+f none html/en/images/filters/examples/basic2-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/color-taj-vinvert.jpg 0644 root bin
+f none html/en/images/filters/examples/blur-taj-gauss.jpg 0644 root bin
+f none html/en/images/filters/examples/alien-glow-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/optimize-gif.png 0644 root bin
+f none html/en/images/filters/examples/fuzzyborder-gran16.png 0644 root bin
+f none html/en/images/filters/examples/deinterlaced-2.png 0644 root bin
+f none html/en/images/filters/examples/distort-taj-whirlpinch.jpg 0644 root bin
+f none html/en/images/filters/examples/chip-away-slate.jpg 0644 root bin
+f none html/en/images/filters/examples/vpropag2-bis.png 0644 root bin
+f none html/en/images/filters/examples/vpropag3.png 0644 root bin
+f none html/en/images/filters/examples/unsharp-mask-2.png 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-xshift-high.png 0644 root bin
+f none html/en/images/filters/examples/flame1.png 0644 root bin
+f none html/en/images/filters/examples/vpropag4.png 0644 root bin
+f none html/en/images/filters/examples/render-taj-sinus.jpg 0644 root bin
+f none html/en/images/filters/examples/fuzzyborder-noshadow.png 0644 root bin
+f none html/en/images/filters/examples/iwarp-anim.mng 0644 root bin
+f none html/en/images/filters/examples/predator-pixelize0.png 0644 root bin
+f none html/en/images/filters/examples/ifscompose-tut2.png 0644 root bin
+f none html/en/images/filters/examples/perspective-shadow-noblur.png 0644 root bin
+f none html/en/images/filters/examples/logo-chip-away.jpg 0644 root bin
+f none html/en/images/filters/examples/blur-taj-mblur-linear.jpg 0644 root bin
+f none html/en/images/filters/examples/map-displace7b.png 0644 root bin
+f none html/en/images/filters/examples/generic-taj-convmatrix-sharpen.jpg 0644 root bin
+f none html/en/images/filters/examples/noise-taj-hurl.jpg 0644 root bin
+f none html/en/images/filters/examples/web-taj-slice.jpg 0644 root bin
+f none html/en/images/filters/examples/glowing-effect-50.jpg 0644 root bin
+f none html/en/images/filters/examples/color-taj-channelmixer.jpg 0644 root bin
+f none html/en/images/filters/examples/depthmerge-source-image2.png 0644 root bin
+f none html/en/images/filters/examples/invert.png 0644 root bin
+f none html/en/images/filters/examples/old-photo-focus.png 0644 root bin
+f none html/en/images/filters/examples/round-corners-rad35.png 0644 root bin
+f none html/en/images/filters/examples/interlaced.png 0644 root bin
+f none html/en/images/filters/examples/t-o-p-layers.png 0644 root bin
+f none html/en/images/filters/examples/example-map-warp7.png 0644 root bin
+f none html/en/images/filters/examples/artistic-taj-cartoon.jpg 0644 root bin
+f none html/en/images/filters/examples/t-o-p-edge.jpg 0644 root bin
+f none html/en/images/filters/examples/neon-shadow.png 0644 root bin
+f none html/en/images/filters/examples/map-lic-vert-blur.png 0644 root bin
+f none html/en/images/filters/examples/blur-taj-selective.jpg 0644 root bin
+f none html/en/images/filters/examples/blur-taj-mblur-radial.jpg 0644 root bin
+f none html/en/images/filters/examples/taj_rows.jpg 0644 root bin
+f none html/en/images/filters/examples/diffraction2.png 0644 root bin
+f none html/en/images/filters/examples/colors-retinex2.png 0644 root bin
+f none html/en/images/filters/examples/decor-taj-coffee.jpg 0644 root bin
+f none html/en/images/filters/examples/t-o-p.jpg 0644 root bin
+f none html/en/images/filters/examples/blur-taj-tblur.jpg 0644 root bin
+f none html/en/images/filters/examples/depthmerge-results-overlap.png 0644 root bin
+f none html/en/images/filters/examples/engrave_width_limit_no.png 0644 root bin
+f none html/en/images/filters/examples/chip-away-90.jpg 0644 root bin
+f none html/en/images/filters/examples/chip-away-invert.jpg 0644 root bin
+f none html/en/images/filters/examples/light-taj-flarefx.jpg 0644 root bin
+f none html/en/images/filters/examples/deinterlaced-1.png 0644 root bin
+f none html/en/images/filters/examples/convolution-calculate.png 0644 root bin
+f none html/en/images/filters/examples/invertx2.png 0644 root bin
+f none html/en/images/filters/examples/render-taj-flame.jpg 0644 root bin
+f none html/en/images/filters/examples/edge-taj-dog.jpg 0644 root bin
+f none html/en/images/filters/examples/artistic-taj-cubism.jpg 0644 root bin
+f none html/en/images/filters/examples/convolution-sharpen.png 0644 root bin
+f none html/en/images/filters/examples/round-corners-shadow2.png 0644 root bin
+f none html/en/images/filters/examples/decor-taj-old-photo.jpg 0644 root bin
+f none html/en/images/filters/examples/noise-taj-spread.jpg 0644 root bin
+f none html/en/images/filters/examples/chip-away-mud.jpg 0644 root bin
+f none html/en/images/filters/examples/carve-it-invers.png 0644 root bin
+f none html/en/images/filters/examples/bovination-noise.jpg 0644 root bin
+f none html/en/images/filters/examples/xach-effect-layers.png 0644 root bin
+f none html/en/images/filters/examples/artistic-taj-predator.jpg 0644 root bin
+f none html/en/images/filters/examples/combine-taj-depthmerge.jpg 0644 root bin
+f none html/en/images/filters/examples/fuzzyborder-noblurx16.png 0644 root bin
+f none html/en/images/filters/examples/decor-add-bevel11.png 0644 root bin
+f none html/en/images/filters/examples/convolution-emboss.png 0644 root bin
+f none html/en/images/filters/examples/render-taj-ifscompose.jpg 0644 root bin
+f none html/en/images/filters/examples/borderaverage.png 0644 root bin
+f none html/en/images/filters/examples/qbist2.png 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-brighten-low.png 0644 root bin
+f none html/en/images/filters/examples/map-taj-smalltile.jpg 0644 root bin
+f none html/en/images/filters/examples/distort-taj-vpropagate.jpg 0644 root bin
+f none html/en/images/filters/examples/enhance-red-eye-before.jpg 0644 root bin
+f none html/en/images/filters/examples/wind3.png 0644 root bin
+f none html/en/images/filters/examples/decor-add-bevel23.png 0644 root bin
+f none html/en/images/filters/examples/distort-taj-engrave.png 0644 root bin
+f none html/en/images/filters/examples/predator-step0.jpg 0644 root bin
+f none html/en/images/filters/examples/neon-tubes.png 0644 root bin
+f none html/en/images/filters/examples/map-lic-vert-pat.png 0644 root bin
+f none html/en/images/filters/examples/fuzzyborder-gran4.png 0644 root bin
+f none html/en/images/filters/examples/whirlpinch-pinch.png 0644 root bin
+f none html/en/images/filters/examples/distort-taj-polarcoords.jpg 0644 root bin
+f none html/en/images/filters/examples/cosmos-1.png 0644 root bin
+f none html/en/images/filters/examples/generic-taj-convmatrix-edge-detect.jpg 0644 root bin
+f none html/en/images/filters/examples/edge-taj-sobel.jpg 0644 root bin
+f none html/en/images/filters/examples/edge-taj-laplace.jpg 0644 root bin
+f none html/en/images/filters/examples/depthmerge-source-map1.png 0644 root bin
+f none html/en/images/filters/examples/perspective-shadow-default.png 0644 root bin
+f none html/en/images/filters/examples/blast1.png 0644 root bin
+f none html/en/images/filters/examples/example-map-warp8.png 0644 root bin
+f none html/en/images/filters/examples/light-taj-lighting.jpg 0644 root bin
+f none html/en/images/filters/examples/glowing-effectsize.png 0644 root bin
+f none html/en/images/filters/examples/artistic-taj-oilify.jpg 0644 root bin
+f none html/en/images/filters/examples/lensdistortion-zoom-high.png 0644 root bin
+f none html/en/images/filters/examples/2zinnias-i.png 0644 root bin
+f none html/en/images/filters/examples/predator-edge4.png 0644 root bin
+f none html/en/images/filters/examples/generic-taj-convmatrix-edge-enhance.jpg 0644 root bin
+f none html/en/images/filters/examples/slice-folder.png 0644 root bin
+f none html/en/images/filters/examples/enhance-taj-despeckle.jpg 0644 root bin
+f none html/en/images/filters/examples/distort-taj-pagecurl.jpg 0644 root bin
+f none html/en/images/filters/examples/kvitveis-orig.png 0644 root bin
+f none html/en/images/filters/examples/enhance-taj-sharpen.jpg 0644 root bin
+f none html/en/images/filters/examples/example-map-warp1.png 0644 root bin
+f none html/en/images/filters/examples/color-taj-colortoalpha.jpg 0644 root bin
+f none html/en/images/filters/examples/3d-outline-shadow20.jpg 0644 root bin
+f none html/en/images/filters/examples/artistic-taj-softglow.jpg 0644 root bin
+f none html/en/images/filters/examples/render-taj-gfig.jpg 0644 root bin
+f none html/en/images/filters/examples/example-map-warp6.png 0644 root bin
+f none html/en/images/filters/examples/perspective-shadow-orig.jpg 0644 root bin
+f none html/en/images/filters/examples/color-taj-colorify.jpg 0644 root bin
+f none html/en/images/filters/examples/whirlpinch-orig.png 0644 root bin
+f none html/en/images/filters/examples/logo-starburst-applied.jpg 0644 root bin
+f none html/en/images/filters/examples/blur-demo-selective.png 0644 root bin
+f none html/en/images/filters/examples/logo-semi-transp.png 0644 root bin
+f none html/en/images/filters/examples/predator-pixelize8.png 0644 root bin
+f none html/en/images/filters/examples/3d-outline-40.jpg 0644 root bin
+f none html/en/images/filters/examples/map-displace7c.png 0644 root bin
+f none html/en/images/filters/examples/render-checkerboard2.jpg 0644 root bin
+f none html/en/images/filters/examples/drop-shadow-color.png 0644 root bin
+f none html/en/images/filters/examples/glowing-effect-350.jpg 0644 root bin
+f none html/en/images/filters/examples/map-displace6.png 0644 root bin
+f none html/en/images/filters/examples/bovination-contrast.png 0644 root bin
+f none html/en/images/filters/examples/render-taj-maze.jpg 0644 root bin
+f none html/en/images/filters/examples/vpropag5.png 0644 root bin
+f none html/en/images/filters/examples/voronoi.png 0644 root bin
+f none html/en/images/filters/examples/map-displace8.png 0644 root bin
+f none html/en/images/filters/examples/logo-semi-flatten.png 0644 root bin
+f none html/en/images/filters/examples/ifscompose-tut3.png 0644 root bin
+f none html/en/images/filters/examples/fuzzyborder-blurx16.png 0644 root bin
+f none html/en/images/filters/examples/vpropag6a.png 0644 root bin
+f none html/en/images/filters/examples/distort-taj-mosaic.jpg 0644 root bin
+f none html/en/images/filters/examples/ifscompose-tut4.png 0644 root bin
+f none html/en/images/filters/examples/jigsaw-example.png 0644 root bin
+f none html/en/images/filters/examples/color-taj-exchange.jpg 0644 root bin
+f none html/en/images/filters/examples/vpropag2.png 0644 root bin
+f none html/en/images/filters/examples/logo-neon-applied.jpg 0644 root bin
+f none html/en/images/filters/examples/distort-taj-lens-distortion.jpg 0644 root bin
+f none html/en/images/filters/examples/unsharp-mask-3.png 0644 root bin
+f none html/en/images/filters/examples/artistic-taj-gimpressionist.jpg 0644 root bin
+f none html/en/images/filters/examples/edge-taj-edge-roberts.jpg 0644 root bin
+f none html/en/images/filters/examples/logo-glowing.jpg 0644 root bin
+f none html/en/images/filters/examples/logo-basic1.jpg 0644 root bin
+f none html/en/images/filters/examples/perspective-shadow-length15.png 0644 root bin
+f none html/en/images/filters/examples/map-lic-blur-lg.png 0644 root bin
+f none html/en/images/filters/examples/round-corners-rad50.png 0644 root bin
+f none html/en/images/filters/examples/predator-step1.jpg 0644 root bin
+f none html/en/images/filters/examples/map-lic-sq-blur.png 0644 root bin
+f none html/en/images/filters/examples/neon-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/taj_grayscale.jpg 0644 root bin
+f none html/en/images/filters/examples/wind2.png 0644 root bin
+f none html/en/images/filters/examples/gradmap-example.png 0644 root bin
+f none html/en/images/filters/examples/map-lic-s.png 0644 root bin
+f none html/en/images/filters/examples/edge-taj-neon.jpg 0644 root bin
+f none html/en/images/filters/examples/blur-demo-mblur.png 0644 root bin
+f none html/en/images/filters/examples/convolution-example1.png 0644 root bin
+f none html/en/images/filters/examples/whirlpinch-whirl.png 0644 root bin
+f none html/en/images/filters/examples/qbist3.png 0644 root bin
+f none html/en/images/filters/examples/perspective-shadow-noresize.png 0644 root bin
+f none html/en/images/filters/examples/blur-demo-orig.png 0644 root bin
+f none html/en/images/filters/examples/map-illusiona.png 0644 root bin
+f none html/en/images/filters/examples/map-lic-is.png 0644 root bin
+f none html/en/images/filters/examples/decor-add-bevel10.png 0644 root bin
+f none html/en/images/filters/examples/polcoords1.png 0644 root bin
+f none html/en/images/filters/examples/light-taj-drop-shadow.jpg 0644 root bin
+f none html/en/images/filters/examples/edge-taj-edge-differential.jpg 0644 root bin
+f none html/en/images/filters/examples/distort-taj-blinds.jpg 0644 root bin
+f none html/en/images/filters/examples/neon-4layers.png 0644 root bin
+f none html/en/images/filters/examples/edge-taj-edge-gradient.jpg 0644 root bin
+f none html/en/images/filters/examples/basic1-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/round-corners-rad65.png 0644 root bin
+f none html/en/images/filters/examples/dilate-text.png 0644 root bin
+f none html/en/images/filters/examples/optimize-orig.png 0644 root bin
+f none html/en/images/filters/examples/render-fractalexpl.png 0644 root bin
+f none html/en/images/filters/examples/taj_orig.png 0644 root bin
+f none html/en/images/filters/examples/fuzzyborder-noblur.png 0644 root bin
+f none html/en/images/filters/examples/t-o-p-script-fu.jpg 0644 root bin
+f none html/en/images/filters/examples/color-taj-rotation.jpg 0644 root bin
+f none html/en/images/filters/emboss-options.png 0644 root bin
+f none html/en/images/filters/options-map-displace.png 0644 root bin
+f none html/en/images/filters/options-map-fractal-trace.png 0644 root bin
+f none html/en/images/filters/options-decor-round-corners.png 0644 root bin
+f none html/en/images/filters/filters-convolution-crop.png 0644 root bin
+f none html/en/images/filters/options-render-cmlexplorer1a.png 0644 root bin
+f none html/en/images/filters/imagemap-options.png 0644 root bin
+f none html/en/images/filters/filters-render-ifsfractal.png 0644 root bin
+f none html/en/images/filters/gflare-editor-1.png 0644 root bin
+f none html/en/images/filters/options-artistic-gimpressionist4.png 0644 root bin
+f none html/en/images/filters/options-enhance-unsharp-mask.png 0644 root bin
+f none html/en/images/filters/options-artistic-gimpressionist3.png 0644 root bin
+f none html/en/images/filters/filterpack-hue-options.png 0644 root bin
+f none html/en/images/filters/options-decor-slide.png 0644 root bin
+f none html/en/images/filters/options-logo-glowing.png 0644 root bin
+f none html/en/images/filters/options-render-fractalexplorer1.png 0644 root bin
+f none html/en/images/filters/options-artistic-photocopy.png 0644 root bin
+f none html/en/images/filters/filters-distort-iwarp.png 0644 root bin
+f none html/en/images/filters/options-distort-wind.png 0644 root bin
+f none html/en/images/filters/options-blur-mblur.png 0644 root bin
+f none html/en/images/filters/options-logo-chalk.png 0644 root bin
+f none html/en/images/filters/options-enhance-red-eye-removal.png 0644 root bin
+f none html/en/images/filters/depthmerge-options.png 0644 root bin
+f none html/en/images/filters/mapobject-options-4.png 0644 root bin
+f none html/en/images/filters/options-imagemap-area.png 0644 root bin
+f none html/en/images/filters/options-web-slice.png 0644 root bin
+d none html/en/images/filters/alpha-to-logo 0755 root bin
+f none html/en/images/filters/alpha-to-logo/chrome.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/blended-options.png 0644 root bin
+f none html/en/images/filters/alpha-to-logo/chrome-options.png 0644 root bin
+f none html/en/images/filters/alpha-to-logo/chrome-offs25.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/chrome-offs50.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/textured.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/comic.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/frosty-400.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/frosty.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/textured-options.png 0644 root bin
+f none html/en/images/filters/alpha-to-logo/frosty-options.png 0644 root bin
+f none html/en/images/filters/alpha-to-logo/frosty-200.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/starscape.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/chrome-offs100.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/starscape-options.png 0644 root bin
+f none html/en/images/filters/alpha-to-logo/frosty-10.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/comic-options.png 0644 root bin
+f none html/en/images/filters/alpha-to-logo/alien-neon.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/alien-neon-options.png 0644 root bin
+f none html/en/images/filters/alpha-to-logo/gradient-bevel.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/blended.jpg 0644 root bin
+f none html/en/images/filters/alpha-to-logo/gradient-bevel-options.png 0644 root bin
+f none html/en/images/filters/mapobject-options-3.png 0644 root bin
+f none html/en/images/filters/options-render-sinus2.png 0644 root bin
+f none html/en/images/filters/options-light-nova.png 0644 root bin
+f none html/en/images/filters/filters-blur-gaussselect.png 0644 root bin
+f none html/en/images/filters/filters-dilate-image.png 0644 root bin
+f none html/en/images/filters/options-render-gfig.png 0644 root bin
+f none html/en/images/filters/filters-render-plasma.png 0644 root bin
+f none html/en/images/filters/options-noise-hurl.png 0644 root bin
+f none html/en/images/filters/changeto.png 0644 root bin
+f none html/en/images/filters/options-map-illusion.png 0644 root bin
+f none html/en/images/filters/options-render-cmlexplorer6.png 0644 root bin
+f none html/en/images/filters/options-enhance-deinterlace.png 0644 root bin
+f none html/en/images/filters/options-imagemap-guides-options.png 0644 root bin
+f none html/en/images/filters/filters-render-flame-edit.png 0644 root bin
+f none html/en/images/filters/apply_lens-options.png 0644 root bin
+f none html/en/images/filters/film-options1.png 0644 root bin
+f none html/en/images/filters/options-decor-old-photo.png 0644 root bin
+f none html/en/images/filters/options-logo-basic1.png 0644 root bin
+f none html/en/images/filters/options-render-cmlexplorer1.png 0644 root bin
+f none html/en/images/filters/options-decor-fuzzyborder.png 0644 root bin
+f none html/en/images/filters/cubism-3.png 0644 root bin
+f none html/en/images/filters/options-logo-starburst.png 0644 root bin
+f none html/en/images/filters/options-map-bumpmap.png 0644 root bin
+f none html/en/images/filters/filters-distort-polarcoords.png 0644 root bin
+f none html/en/images/filters/options-render-maze.png 0644 root bin
+f none html/en/images/filters/options-map-displace-polar.png 0644 root bin
+f none html/en/images/filters/filters-generic-convolution.png 0644 root bin
+f none html/en/images/filters/options-logo-bovination.png 0644 root bin
+f none html/en/images/filters/options-artistic-predator.png 0644 root bin
+d none html/en/images/glossary 0755 root bin
+f none html/en/images/glossary/alpha-channel-3b.png 0644 root bin
+f none html/en/images/glossary/bezier-curve.png 0644 root bin
+f none html/en/images/glossary/alpha-channel-1.png 0644 root bin
+f none html/en/images/glossary/colorcircle.png 0644 root bin
+f none html/en/images/glossary/alias-feather.png 0644 root bin
+f none html/en/images/glossary/gamut-example.png 0644 root bin
+f none html/en/images/glossary/modes-behind.png 0644 root bin
+f none html/en/images/glossary/alpha-channel-0.png 0644 root bin
+f none html/en/images/glossary/tool-opt-increment.png 0644 root bin
+f none html/en/images/glossary/modes-multilayer.png 0644 root bin
+f none html/en/images/glossary/antialias.png 0644 root bin
+f none html/en/images/glossary/modes-normal2.png 0644 root bin
+f none html/en/images/glossary/tool-opt-nonincrement.png 0644 root bin
+f none html/en/images/glossary/alias.png 0644 root bin
+f none html/en/images/glossary/alpha-channel-2.png 0644 root bin
+f none html/en/images/glossary/color-model-additive.png 0644 root bin
+f none html/en/images/glossary/modes-colorerase.png 0644 root bin
+f none html/en/images/glossary/alpha-channel-3a.png 0644 root bin
+f none html/en/images/glossary/feather.png 0644 root bin
+f none html/en/images/glossary/color-model-subtractive.png 0644 root bin
+f none html/en/images/home.png 0644 root bin
+f none html/en/images/caution.png 0644 root bin
+f none html/en/images/draft.png 0644 root bin
+f none html/en/images/up.png 0644 root bin
+f none html/en/images/warning.png 0644 root bin
+f none html/en/images/next.png 0644 root bin
+f none html/en/images/note.png 0644 root bin
+d none html/en/images/menus 0755 root bin
+f none html/en/images/menus/channel-mixer-ex3.png 0644 root bin
+f none html/en/images/menus/jitter.png 0644 root bin
+f none html/en/images/menus/layer-scale.png 0644 root bin
+f none html/en/images/menus/autocrop-2.png 0644 root bin
+f none html/en/images/menus/channel-mixer-ex4.png 0644 root bin
+f none html/en/images/menus/file-open-dialog.png 0644 root bin
+f none html/en/images/menus/windows-dockable_dialogs.png 0644 root bin
+f none html/en/images/menus/image-canvas-size-list.png 0644 root bin
+f none html/en/images/menus/alignHFLB-.png 0644 root bin
+f none html/en/images/menus/folder-context-menu.png 0644 root bin
+f none html/en/images/menus/procedure-browser.png 0644 root bin
+f none html/en/images/menus/decompose-ex2.png 0644 root bin
+f none html/en/images/menus/compose-channels-ex2.png 0644 root bin
+f none html/en/images/menus/colors-components-compose.png 0644 root bin
+f none html/en/images/menus/menus-layer-mask.png 0644 root bin
+f none html/en/images/menus/equalize.png 0644 root bin
+f none html/en/images/menus/script-fu-console-browse.png 0644 root bin
+f none html/en/images/menus/windows3.png 0644 root bin
+f none html/en/images/menus/colors-info.png 0644 root bin
+f none html/en/images/menus/select.png 0644 root bin
+f none html/en/images/menus/icon-submenu.png 0644 root bin
+f none html/en/images/menus/colors-maxRGB.png 0644 root bin
+f none html/en/images/menus/layer.png 0644 root bin
+f none html/en/images/menus/image-canvas-size-ex4.png 0644 root bin
+f none html/en/images/menus/align-demo.png 0644 root bin
+f none html/en/images/menus/flip-h-1.png 0644 root bin
+f none html/en/images/menus/image-canvas-size-ex3.png 0644 root bin
+d none html/en/images/menus/edit 0755 root bin
+f none html/en/images/menus/edit/units-add-new.png 0644 root bin
+f none html/en/images/menus/edit/stroke-path.png 0644 root bin
+f none html/en/images/menus/edit/modules.png 0644 root bin
+f none html/en/images/menus/edit/units.png 0644 root bin
+f none html/en/images/menus/edit/paste-warning.png 0644 root bin
+f none html/en/images/menus/edit/paste-as.png 0644 root bin
+f none html/en/images/menus/image-properties-comment.png 0644 root bin
+f none html/en/images/menus/local-windows-submenu.png 0644 root bin
+f none html/en/images/menus/layer-alpha-intersect.png 0644 root bin
+f none html/en/images/menus/threshold-alpha-dialog.png 0644 root bin
+f none html/en/images/menus/colors.png 0644 root bin
+f none html/en/images/menus/colors-map-rearrange.png 0644 root bin
+f none html/en/images/menus/colors-components.png 0644 root bin
+f none html/en/images/menus/selection-editor-click.png 0644 root bin
+f none html/en/images/menus/colors-colortoalpha.png 0644 root bin
+f none html/en/images/menus/edit-paste-new-pattern.png 0644 root bin
+f none html/en/images/menus/filters-light+shadow.png 0644 root bin
+f none html/en/images/menus/crop-layer.png 0644 root bin
+f none html/en/images/menus/alignHFLB+.png 0644 root bin
+f none html/en/images/menus/colors-filterpack-advanced.png 0644 root bin
+f none html/en/images/menus/script-fu-console.png 0644 root bin
+f none html/en/images/menus/BBR.png 0644 root bin
+f none html/en/images/menus/module-manager-ex1.png 0644 root bin
+f none html/en/images/menus/colors-map-palettemap-ex2.png 0644 root bin
+f none html/en/images/menus/crop-layer-1.png 0644 root bin
+f none html/en/images/menus/edit-paste-new-brush.png 0644 root bin
+f none html/en/images/menus/layer-alpha-add.png 0644 root bin
+f none html/en/images/menus/layer-mask-intersect.png 0644 root bin
+f none html/en/images/menus/colors-auto.png 0644 root bin
+f none html/en/images/menus/channel-mixer-ex2.png 0644 root bin
+f none html/en/images/menus/compose-channels-ex1.jpg 0644 root bin
+f none html/en/images/menus/sunflower.png 0644 root bin
+f none html/en/images/menus/view.png 0644 root bin
+f none html/en/images/menus/layer-local.png 0644 root bin
+f none html/en/images/menus/image-canvas-size-ex2.png 0644 root bin
+f none html/en/images/menus/image-merge-visible-ex1.png 0644 root bin
+f none html/en/images/menus/dialogs-offset-layer.png 0644 root bin
+f none html/en/images/menus/selection-grow-corners.png 0644 root bin
+f none html/en/images/menus/colors-components-decompose.png 0644 root bin
+d none html/en/images/menus/view 0755 root bin
+d none html/en/images/menus/view/display-filters 0755 root bin

@@ Diff output truncated at 100000 characters. @@

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list