--- moin-1.7.1.orig/debian/lintian-overrides +++ moin-1.7.1/debian/lintian-overrides @@ -0,0 +1,5 @@ +python-moinmoin: package-contains-upstream-install-documentation usr/share/doc/python-moinmoin/INSTALL.html +python-moinmoin: script-not-executable ./usr/share/moin/underlay/pages/HelpOnInstalling(2f)TroubleShooting/attachments/is_python_here.sh +python-moinmoin: script-not-executable ./usr/share/moin/underlay/pages/HelpOnInstalling(2f)WikiInstanceCreation/attachments/createinstance.sh +python-moinmoin: script-not-executable ./usr/share/moin/underlay/pages/HelpOnInstalling(2f)BasicInstallation/attachments/pythontest.cgi +python-moinmoin: script-not-executable ./usr/share/moin/underlay/pages/HelpOnInstalling(2f)ApacheOnLinuxFtp/attachments/explore.py --- moin-1.7.1.orig/debian/moin-mass-migrate +++ moin-1.7.1/debian/moin-mass-migrate @@ -0,0 +1,106 @@ +#!/usr/bin/perl +# based on ikiwiki-mass-rebuild, part of ikiwiki, written by Joey Hess + +use warnings; +use strict; + +sub supplemental_groups { + my $user=shift; + + my @list; + while (my @fields=getgrent()) { + if (grep { $_ eq $user } split(' ', $fields[3])) { + push @list, $fields[2]; + } + } + + return @list; +} + +sub processline { + my $user=shift; + my $url=shift; + + if (! getpwnam("$user")) { + print STDERR "warning: user $user does not exist\n"; + return + } + # TODO: add sanity check for $url + print "Processing moin wiki at $url as user $user ...\n"; + # su is not used because it passes arguments through the shell, + # which might not be safe. + defined(my $pid = fork) or die "Can’t fork: $!"; + if (! $pid) { + my ($uuid, $ugid) = (getpwnam($user))[2, 3]; + my $grouplist=join(" ", $ugid, $ugid, supplemental_groups($user)); + $)=$grouplist; + if ($!) { + die "failed to set egid $grouplist: $!"; + } + $(=$ugid; + $<=$uuid; + $>=$uuid; + if ($< != $uuid || $> != $uuid || $( != $ugid) { + die "failed to drop permissions to $user"; + } + %ENV=( + PATH => $ENV{PATH}, + HOME => (getpwnam($user))[7], + ); + exec("moin", "--wiki-url", $url, "migration", "data", @ARGV); + die "failed to run moin: $!"; + } + waitpid($pid,0); + if ($?) { + print STDERR "Processing moin wiki at $url as user $user failed with code $?\n"; + } +} + +sub processlist { + my $file=shift; + my $forceuser=shift; + + my $list; + open ($list, "<$file") || die "$file: $!"; + while (<$list>) { + chomp; + s/^\s+//; + s/\s+$//; + next if /^#/ || ! length; + + if (/^([^\s]+)\s+([^\s]+)$/) { + my $user=$1; + my $url=$2; + if (defined $forceuser && $forceuser ne $user) { + print STDERR "warning: in $file line $., attempt to set user to $user, but user forced to $forceuser. Skipping\n"; + } + processline($user, $url); + # We once supported a middle config_dir value... + } elsif (/^([^\s]+)\s+([^\s]+)\s+([^\s]+)$/) { + my $user=$1; + my $url=$3; + print STDERR "\nWARNING: $file line $., deprecated 3-value format (not \"USER URL\"). Stripping middle value\n\n"; + if (defined $forceuser && $forceuser ne $user) { + print STDERR "warning: in $file line $., attempt to set user to $user, but user forced to $forceuser. Skipping\n"; + } + processline($user, $url); + } + elsif (/^([^\s]+)$/) { + my $user=$1; + my $home=(getpwnam($user))[7]; + if (defined $home && -d $home) { + my $dotfile="$home/.moin/wikilist"; + if (-e $dotfile) { + processlist($dotfile, $user); + } + } + } + } + close $list; +} + +my $wikilist="/etc/moin/wikilist"; + +if (-e $wikilist) { + processlist($wikilist); +} --- moin-1.7.1.orig/debian/TODO +++ moin-1.7.1/debian/TODO @@ -0,0 +1,32 @@ +TODO list for moin: + + * Package and suggest TWikiDrawPlugin + Building: "ant -Dbuild.compiler=gcj" + * Update and extend danish l12n of system pages. + * Pass on the following wishlist upstream: + + Support in Include() macro for plain grepping (in addition to + "before" and "after" stripping) - needed to include e.g. only list + items + + Macro listing "members of (MembersGroup and (FriendsGroup or + MePersonally/FriendsGroup) except EvilGroup". + * Avoid optimizing .py files below /usr/share/moin (requires update to + CDBS) + * Package non-english underlay pages as Debian packages. + * Consider packaging the flup WSGI server supported from 1.5 and up: + http://www.saddi.com/software/flup/ + * Move global dict dir below /etc/moin (new to Debian-packaged + MoinMoin: we used to patch source to always use local dict dirs). + * Strip scripts/ subdir from library packages (provide them only as + examples: they require manual editing to be of any use). + * Rename config dir below examples to default_config. + * Move /htdocs/common/ie7/README.txt out to docs dir. + * Improved use of interwiki.txt: + * Install below /etc/moin/ (not below /usr/share/moin/ ). + * Include a copy below ...examples/default_config/ . + * Convert to Unix-style line-ends. + * Strip wiki comments at top of the file. + * Hack default farmconfig.py to use initerwiki.txt + * Install moin.cgi below /usr/share/cgi-bin + * Rewrite debian/copyright to use proposed new machine-readable format. + + -- Jonas Smedegaard Thu Nov 24 21:01:54 CET 2005 --- moin-1.7.1.orig/debian/moin-mass-migrate.8 +++ moin-1.7.1/debian/moin-mass-migrate.8 @@ -0,0 +1,34 @@ +.TH moin-mass-migrate 8 +.SH NAME +moin\-mass\-migrate \- migrate all moin wikis on a system +.PP +.SH SYNOPSIS +moin\-mass\-migrate +.PP +.SH DESCRIPTION +moin\-mass\-migrate can be used to force a migrate of all the wikis +on a system. You will need to list the URLs for the wikis it should +build in the file /etc/moin/wikilist, which has the format: +.PP +user wiki.example.org/ +.PP +(second part being destination URL with protocol part stripped). +.PP +It's also possible to let a user list URLs in ~user/.moin/wikilist +in their home directory. To do so, list only the user's name, without a +URL. The format of ~/.moin/wikilist is the same as +/etc/moin/wikilist. +.PP +.SH OPTIONS +All options are passed on to moin. +.PP +.SH AUTHOR +Jonas Smedegaard +.PP +.SH HISTORY +moin\-mass\-migrate (and this manual page) is heavily based on +ikiwiki\-mass\-rebuild written by Joey Hess for use +with the wiki-compiler ikiwiki. +.PP +.PP + --- moin-1.7.1.orig/debian/rules +++ moin-1.7.1/debian/rules @@ -0,0 +1,142 @@ +#!/usr/bin/make -f +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003-2008 Jonas Smedegaard + +DEB_PYTHON_SYSTEM = pysupport +# NB! Local cdbs tweaks are used: See debian/README.cdbs-tweaks +include debian/cdbs/1/rules/upstream-tarball.mk +include debian/cdbs/1/rules/copyright-check.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include /usr/share/cdbs/1/rules/debhelper.mk +# python-distutils.mk must load after debhelper.mk to enable use of dh_python +include debian/cdbs/1/class/python-distutils.mk +include debian/cdbs/1/rules/buildinfo.mk + +DEB_UPSTREAM_URL = http://static.moinmo.in/files +DEB_UPSTREAM_TARBALL_MD5 = 871337b8171c91f9a6803e5376857e8d + +pkg = python-moinmoin + +DEB_INSTALL_EXAMPLES_$(pkg) += wiki/htdocs/applets/FCKeditor wiki/htdocs/applets/moinFCK* wiki/htdocs/applets/moinfck* +libdir = /usr/share/python-support/$(cdbs_curpkg) +pyversions = 2.3- +DEB_PYTHON_PRIVATE_MODULES_DIRS_$(pkg_data) = /usr/share/moin/data/plugin /usr/share/moin/server +# Grrr - this is needed thanks to broken defaults with new python policy! +DEB_PYTHON_DESTDIR = $(CURDIR)/debian/$(cdbs_curpkg) + +DEB_MAKE_CHECK_TARGET = test +DEB_COMPRESS_EXCLUDE = .py +DEB_INSTALL_EXAMPLES_$(pkg) += wiki/underlay/pages/LocalSpellingWords contrib/phpwiki_migration wiki/config debian/examples/* +DEB_INSTALL_DOCS_ALL += debian/README.Debian +DEB_INSTALL_DOCS_$(pkg) += docs/README.migration docs/INSTALL.html docs/HACKS +DEB_INSTALL_CHANGELOGS_ALL = docs/CHANGES +DEB_INSTALL_MANPAGES_$(pkg) += debian/moin-mass-migrate.8 debian/moin-update-wikilist.1 + +# just being lazy... +datadir = /usr/share/moin +spelldir= $(datadir)/underlay/pages/LocalSpellingWords + +# Force strip python binary hardcoding +binary-fixup/$(pkg):: + egrep -r -l -Z '^#! ?/usr/bin/(env )?python[[:print:]]*$$' debian/$(cdbs_curpkg)$(datadir)/server/* debian/$(cdbs_curpkg)/usr/share/doc/* \ + | xargs -r -0 perl -pi -e 's,^#! ?/usr/bin/(env )?python[[:print:]]*$$,#!/usr/bin/python$(cdbs_python_compile_version),' + +# Strip these notes in underlay about editing only on moinmaster: +## Please edit system and help pages ONLY in the moinmaster wiki! For more +## information, please see MoinMaster:MoinPagesEditorGroup. +## Please edit (or translate) system/help pages on the moinmaster wiki ONLY. +## For more information, please see MoinMaster:MoinPagesEditorGroup. +binary-fixup/$(pkg):: + egrep -r -l -Z '^## ' debian/$(cdbs_curpkg)$(datadir)/underlay/pages/*/revisions/* \ + | xargs -r -0 perl -pi -e 's;^## (Please edit system|information, please see|Please edit |For more information).*\n;;' + +# Make sure scripts are executable +binary-fixup/$(pkg):: + egrep -r -l -Z '^#! ?/usr/bin/(env )?python[[:print:]]*$$' debian/$(cdbs_curpkg)$(libdir) \ + | xargs -r -0 chmod a+x + +# Make sure translations are up-to-date +common-build-indep:: debian/stamp-update-translations + +debian/stamp-update-translations: + cd MoinMoin/i18n && make + touch debian/stamp-update-translations + +clean:: + cd MoinMoin/i18n && make clean + rm -f MoinMoin/i18n/meta.py + rm -f debian/stamp-update-translations + +# Drop files already provided as example files +common-binary-post-install-indep:: + rm -rf debian/$(pkg)$(spelldir) + +# Create virtually empty local dictionary +# (default german words already provided as example files) +binary-fixup/$(pkg):: + mkdir -p debian/$(cdbs_curpkg)$(spelldir)/revisions + echo "00000001" \ + > debian/$(cdbs_curpkg)$(spelldir)/current + echo "Jürgen Hermann Python MoinMoin moin" \ + > debian/$(cdbs_curpkg)$(spelldir)/revisions/00000001 + echo "Debian GNU" \ + >> debian/$(cdbs_curpkg)$(spelldir)/revisions/00000001 + +# Use sitewide word file as main dictionary +binary-fixup/$(pkg):: + mkdir -p debian/$(cdbs_curpkg)$(datadir)/data/dict + ln -s ../../../dict/words debian/$(cdbs_curpkg)$(datadir)/data/dict/words + +# Setup system wide farmconfig. +binary-fixup/$(pkg):: + mkdir -p debian/$(cdbs_curpkg)/etc/moin + for file in `find debian/$(cdbs_curpkg)$(datadir)/config/wikifarm -type f -print`; do \ + sed -f debian/configtweaks.sed $$file > debian/$(cdbs_curpkg)/etc/moin/$${file##*/}; \ + done + for file in `find debian/$(cdbs_curpkg)$(datadir)/server -type f -printf '%f\n'`; do \ + cat debian/$(cdbs_curpkg)$(datadir)/server/$$file | sed -f debian/servertweaks.sed > debian/$(cdbs_curpkg)$(datadir)/server/$$file.new; \ + chmod --reference=debian/$(cdbs_curpkg)$(datadir)/server/$$file debian/$(cdbs_curpkg)$(datadir)/server/$$file.new; \ + mv -f debian/$(cdbs_curpkg)$(datadir)/server/$$file.new debian/$(cdbs_curpkg)$(datadir)/server/$$file; \ + done + +# Strip TwikiDrawPlugin as we need to compile from source +binary-fixup/$(pkg):: + rm -f debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/TWikiDrawPlugin/twikidraw.jar + echo "This applet has not yet been packaged for Debian. for now it is available at http://debian.jones.dk/auryn/pool-all/official/moin/twikidraw/" > debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/TWikiDrawPlugin/README + +# Strip FCKeditor as we cannot take responsibility for it +# (provided as example instead) +binary-fixup/$(pkg):: + rm -rf debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/* + rm -rf debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/moinFCKplugins + rm -f debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/moinfck* + echo "This applet is provided only as example for Debian due to security concerns. See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info" > debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/README + +## Move documentation parts of FCKeditor below /usr/share/doc/.../FCKeditor/ +#binary-fixup/$(pkg):: +# mkdir -p debian/$(cdbs_curpkg)/usr/share/doc/$(cdbs_curpkg)/FCKeditor +# for file in README _documentation.html _whatsnew.html htaccess.txt; do \ +# mv "debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/$$file" "debian/$(cdbs_curpkg)/usr/share/doc/$(cdbs_curpkg)/FCKeditor"; \ +# done + +## Strip irrelevant parts of FCKeditor +#binary-fixup/$(pkg):: +## Non-python server-side code +# rm -rf debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts +# rm -rf debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors +# rm -rf debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/editor/filemanager/upload +# rm -f debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/fckeditor.afp +# rm -f debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/fckeditor.asp +# rm -f debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/fckeditor.cfc +# rm -f debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/fckeditor.cfm +# rm -f debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/fckeditor.lasso +# rm -f debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/fckeditor.php +# rm -f debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/fckeditor.pl +## Seems like sample code for web development +# rm -rf debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/_samples +# rm -rf debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/_testcases +# rm -rf debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/editor/_source +## The LGPL license is included once below /usr/share/common-licenses/ +# rm -f debian/$(cdbs_curpkg)$(datadir)/htdocs/applets/FCKeditor/license.txt + +include debian/cdbs/1/rules/package-relations.mk --- moin-1.7.1.orig/debian/moin-update-wikilist +++ moin-1.7.1/debian/moin-update-wikilist @@ -0,0 +1,48 @@ +#!/usr/bin/perl -t +# Add a user to the system wide wikilist. +# This script can safely be made suid. +use warnings; +use strict; +use English; + +my $username=getpwuid($REAL_USER_ID); +if (! defined $username || ! length $username) { + die "unable to determine user name for UID $REAL_USER_ID\n"; +} + +my $wikilist="/etc/moin/wikilist"; +if (! -e $wikilist) { + die "$wikilist does not exist\n"; +} + +my $removed=0; +my @lines; +open (my $list, "<$wikilist") || die "read $wikilist: $!"; +while (<$list>) { + chomp; + if (/^\s*([^\s]+)\s*$/) { + my $user=$1; + if ($user eq $username) { + $removed=1; + } + else { + push @lines, $_; + } + } + else { + push @lines, $_; + } +} +close $list || die "error reading $list: $!"; +open ($list, ">$wikilist") || die "write $wikilist: $!"; +foreach (@lines) { + print $list "$_\n"; +} +if ($removed) { + print "removed user $username from $wikilist\n"; +} +else { + print $list "$username\n"; + print "added user $username to $wikilist\n"; +} +close $list || die "error writing $list: $!"; --- moin-1.7.1.orig/debian/moinmaster.py +++ moin-1.7.1/debian/moinmaster.py @@ -0,0 +1,36 @@ +# -*- coding: iso-8859-1 -*- +# IMPORTANT! This encoding (charset) setting MUST be correct! If you live in a +# western country and you don't know that you use utf-8, you probably want to +# use iso-8859-1 (or some other iso charset). If you use utf-8 (a Unicode +# encoding) you MUST use: coding: utf-8 +# That setting must match the encoding your editor uses when you modify the +# settings below. If it does not, special non-ASCII chars will be wrong. + +""" +This is a sample config for a wiki that is part of a wiki farm and uses +farmconfig for common stuff. Here we define what has to be different from +the farm's common settings. +""" + +# we import the FarmConfig class for common defaults of our wikis: +from farmconfig import FarmConfig + +# now we subclass that config (inherit from it) and change what's different: +class Config(FarmConfig): + + show_timings = 1 + + # basic options (you normally need to change these) + sitename = u'MoinMaster' # [Unicode] + interwikiname = 'MoinMaster' + + # name of entry page / front page [Unicode], choose one of those: + + # a) if most wiki content is in a single language + #page_front_page = u"MyStartingPage" + + # b) if wiki content is maintained in many languages + page_front_page = u"FrontPage" + + data_dir = '/org/de.wikiwikiweb.moinmaster/data/' + --- moin-1.7.1.orig/debian/configtweaks.sed +++ moin-1.7.1/debian/configtweaks.sed @@ -0,0 +1,18 @@ +### This is sed code: "s" lines must end with a tab! ### +# Also beware of leading spaces in some text strings... + +# This script is used for all conffiles. + +## Use system-wide config and underlay +# ARRGH - read-only underlay not supported currently :-( +#s ^\([[:space:]]*data_underlay_dir[[:space:]]\+=\).* \1 '/usr/share/moin/underlay' + +# Disable sample sites +s ^\([[:space:]]*\)\(("\(moinmaster\|moinmoin\)",.*\) \1\#\2 + +# Normalize whitespace so upstream changes to it don't provoke +# changed-conffile prompts. +# 1. Convert tabs to four spaces (the indendation used by upstream). +s/ / /g +# 2. Eliminate trailing whitespace at ends of lines. +s/ \+$//g --- moin-1.7.1.orig/debian/postinst +++ moin-1.7.1/debian/postinst @@ -0,0 +1,40 @@ +#!/bin/sh + +set -e + +rename_conffile_commit () { +# syntax: rename_conffile_commit filename +# +# Complete the renaming of a conffile "filename" that has been renamed. +# +# Call this function from a postinst script after having used +# rename_conffile_prepare() in the preinst. + + #local conffile + + # validate arguments + if [ $# -ne 1 ]; then + echo "$0: usage error: rename_conffile_commit() called with wrong number of arguments (expected 1, got $#)." >&2 + exit 2 + fi + + _conffile="$1" + + # If the temporary file created by rename_conffile_prepare() exists, remove + # it. + if [ -e "$_conffile.python-moinmoin.moved" ]; then + rm "$_conffile.python-moinmoin.moved" + fi +} + +#DEBHELPER# + +rename_conffile_commit /etc/moin/moinmaster.py + +# Change this when some incompatible change is made that requires +# rebuilding all wikis. +firstcompat=1.7.0 + +if [ "$1" = configure ] && dpkg --compare-versions "$2" lt "$firstcompat"; then + moin-mass-migrate +fi --- moin-1.7.1.orig/debian/compat +++ moin-1.7.1/debian/compat @@ -0,0 +1 @@ +6 --- moin-1.7.1.orig/debian/copyright_hints +++ moin-1.7.1/debian/copyright_hints @@ -0,0 +1,3117 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=XXX +Upstream-Name: Untrusted draft - double-check copyrights yourself! + +Files: MoinMoin/_tests/ldap_testdata.py + MoinMoin/auth/__init__.py + MoinMoin/config/_tests/test_configs.py + MoinMoin/i18n/Makefile + MoinMoin/i18n/README + MoinMoin/i18n/bg.MoinMoin.po + MoinMoin/i18n/ca.MoinMoin.po + MoinMoin/i18n/cs.MoinMoin.po + MoinMoin/i18n/da.MoinMoin.po + MoinMoin/i18n/de.MoinMoin.po + MoinMoin/i18n/dummy.py + MoinMoin/i18n/el.MoinMoin.po + MoinMoin/i18n/en.MoinMoin.po + MoinMoin/i18n/es.MoinMoin.po + MoinMoin/i18n/fa.MoinMoin.po + MoinMoin/i18n/fi.MoinMoin.po + MoinMoin/i18n/gl.MoinMoin.po + MoinMoin/i18n/hi.MoinMoin.po + MoinMoin/i18n/hr.MoinMoin.po + MoinMoin/i18n/hu.MoinMoin.po + MoinMoin/i18n/id.MoinMoin.po + MoinMoin/i18n/it.MoinMoin.po + MoinMoin/i18n/ja.MoinMoin.po + MoinMoin/i18n/jabberbot/Makefile + MoinMoin/i18n/ko.MoinMoin.po + MoinMoin/i18n/ku.MoinMoin.po + MoinMoin/i18n/lt.MoinMoin.po + MoinMoin/i18n/lv.MoinMoin.po + MoinMoin/i18n/mk.MoinMoin.po + MoinMoin/i18n/mn.MoinMoin.po + MoinMoin/i18n/msgfmt.py + MoinMoin/i18n/nb.MoinMoin.po + MoinMoin/i18n/nl.MoinMoin.po + MoinMoin/i18n/pl.MoinMoin.po + MoinMoin/i18n/pt-br.MoinMoin.po + MoinMoin/i18n/pt.MoinMoin.po + MoinMoin/i18n/ro.MoinMoin.po + MoinMoin/i18n/ru.MoinMoin.po + MoinMoin/i18n/sl.MoinMoin.po + MoinMoin/i18n/sr.MoinMoin.po + MoinMoin/i18n/sv.MoinMoin.po + MoinMoin/i18n/tools/mail_i18n-maintainers.txt + MoinMoin/i18n/tools/mail_i18n-maintainers2.txt + MoinMoin/i18n/tools/markup15to16.py + MoinMoin/i18n/tools/mk_POTFILES.py + MoinMoin/i18n/tools/po2wiki.py + MoinMoin/i18n/tools/prepend.py + MoinMoin/i18n/tools/wiki2po.py + MoinMoin/i18n/tr.MoinMoin.po + MoinMoin/i18n/uk.MoinMoin.po + MoinMoin/i18n/vi.MoinMoin.po + MoinMoin/i18n/zh-tw.MoinMoin.po + MoinMoin/i18n/zh.MoinMoin.po + MoinMoin/macro/AdvancedSearch.py + MoinMoin/script/old/migration/12_to_13_mig05.py + MoinMoin/script/old/xmlrpc-tools/HelloWorld.py + MoinMoin/script/old/xmlrpc-tools/UpdateGroupTest.py + MoinMoin/script/old/xmlrpc-tools/WhoAmI.py + MoinMoin/script/old/xmlrpc-tools/wikibackup.py + MoinMoin/script/old/xmlrpc-tools/wikirestore.py + MoinMoin/support/BasicAuthTransport.py + MoinMoin/support/cgitb.py + MoinMoin/support/difflib.py + MoinMoin/support/multicall.py + MoinMoin/support/xapwrap/__init__.py + MoinMoin/support/xapwrap/document.py + MoinMoin/util/chartypes.py + PKG-INFO + contrib/DesktopEdition/package_desktop.cmd + contrib/TWikiDrawPlugin/README + contrib/TWikiDrawPlugin/build.xml + contrib/TWikiDrawPlugin/packages/Acme/IntHashtable.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/appframe/Application.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/applet/DrawApplet.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/applet/TestApplet.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/contrib/DiamondFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/contrib/PolygonFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/contrib/PolygonHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/contrib/PolygonScaleHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/contrib/PolygonTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/contrib/TriangleFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/contrib/TriangleRotationHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/ArrowTip.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/AttributeFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/BorderDecorator.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/BorderTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/ChopEllipseConnector.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/ConnectedTextTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/ElbowConnection.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/ElbowHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/ElbowTextLocator.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/EllipseFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/FontSizeHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/GroupCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/GroupFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/GroupHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/ImageFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/InsertImageCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/LineConnection.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/LineDecoration.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/LineFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/NumberTextFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/PolyLineConnector.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/PolyLineFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/PolyLineHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/PolyLineLocator.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/RadiusHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/RectangleFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/RoundRectangleFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/ScribbleTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/ShortestDistanceConnector.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/TextFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/TextTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/URLTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/figures/UngroupCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/ConnectionFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/Connector.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/Drawing.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/DrawingChangeEvent.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/DrawingChangeListener.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/DrawingEditor.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/DrawingView.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/Figure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/FigureChangeEvent.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/FigureChangeListener.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/FigureEnumeration.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/FigureSelection.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/HJDError.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/Handle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/Locator.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/Painter.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/PointConstrainer.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/framework/Tool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/images/StaticImages.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/AbstractConnector.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/AbstractFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/AbstractHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/AbstractLocator.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/AbstractTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ActionTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/AlignCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/BoxHandleKit.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/BringToFrontCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/BufferedUpdateStrategy.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ChangeAttributeCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ChangeConnectionEndHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ChangeConnectionHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ChangeConnectionStartHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ChopBoxConnector.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/CompositeFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ConnectionHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ConnectionTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/CopyCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/CreationTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/CutCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/DecoratorFigure.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/DeleteCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/DragTracker.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/DuplicateCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/FigureAttributes.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/FigureChangeEventMulticaster.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/FigureEnumerator.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/FigureTransferCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/GridConstrainer.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/HandleTracker.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/LocatorConnector.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/LocatorHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/NullHandle.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/OffsetLocator.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/PasteCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/RelativeLocator.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ReverseFigureEnumerator.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/SelectAreaTracker.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/SelectionTool.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/SendToBackCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/SimpleUpdateStrategy.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/StandardDrawing.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/StandardDrawingView.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/TextHolder.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ToggleGridCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ToggleGuidesCommand.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/standard/ToolButton.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/twiki/TestFrame.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/Animatable.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/Clipboard.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/ColorMap.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/Command.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/CommandButton.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/CommandChoice.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/CommandMenu.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/Filler.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/FloatingTextField.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/Geom.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/Iconkit.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/MenuAdapterButton.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/PaletteButton.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/PaletteIcon.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/PaletteLayout.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/PaletteListener.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/ReverseVectorEnumerator.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/Storable.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/StorableInput.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/StorableOutput.java + contrib/auth_externalcookie/wikiconfig.py + contrib/dict/de.utf-8 + contrib/dict/de_de_10000.utf-8 + contrib/dict/en_us.ascii + contrib/googleimport/__init__.py + contrib/googleimport/googlepush.py + contrib/images/logos/README + contrib/mailimport/.procmailrc + contrib/mailimport/wikimailimport + docs/CHANGES + docs/HACKS + docs/INSTALL.html + docs/README.migration + docs/UPDATE.html + docs/licenses/LICENSE.Python + jabberbot/_tests/test_capat.py + jabberbot/multicall.py + moin.spec + wiki/config/logging/README + wiki/config/logging/logfile + wiki/config/logging/logfile_debug_auth + wiki/config/logging/stderr + wiki/config/more_samples/README + wiki/config/more_samples/auth_session_wikiconfig_snippet + wiki/config/more_samples/http_auth_wikiconfig_snippet + wiki/config/more_samples/jabber_wikiconfig_snippet + wiki/config/more_samples/ldap_wikiconfig_snippet + wiki/config/more_samples/mail_wikiconfig_snippet + wiki/config/more_samples/mailimportconf.py + wiki/config/more_samples/security_wikiconfig_snippet + wiki/config/more_samples/smb_wikiconfig_snippet + wiki/config/more_samples/user_wikiconfig_snippet + wiki/config/wikiconfig.py + wiki/config/wikifarm/farmconfig.py + wiki/config/wikifarm/mywiki.py + wiki/data/cache/README + wiki/data/dict/dummy_dict + wiki/data/edit-log + wiki/data/event-log + wiki/data/intermap.txt + wiki/data/meta + wiki/data/pages/BadContent/current + wiki/data/pages/BadContent/revisions/00000001 + wiki/data/plugin/__init__.py + wiki/data/plugin/action/__init__.py + wiki/data/plugin/converter/__init__.py + wiki/data/plugin/events/__init__.py + wiki/data/plugin/filter/__init__.py + wiki/data/plugin/formatter/__init__.py + wiki/data/plugin/macro/__init__.py + wiki/data/plugin/parser/__init__.py + wiki/data/plugin/theme/__init__.py + wiki/data/plugin/userprefs/__init__.py + wiki/data/plugin/xmlrpc/__init__.py + wiki/data/user/README + wiki/htdocs/applets/FCKeditor/README + wiki/htdocs/applets/FCKeditor/_samples/_plugins/findreplace/find.gif + wiki/htdocs/applets/FCKeditor/_samples/_plugins/findreplace/replace.gif + wiki/htdocs/applets/FCKeditor/_samples/afp/fck.afpa + wiki/htdocs/applets/FCKeditor/_samples/afp/fck.afpa.code + wiki/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckundo_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckundo_ie.js + wiki/htdocs/applets/FCKeditor/editor/css/behaviors/disablehandles.htc + wiki/htdocs/applets/FCKeditor/editor/css/behaviors/hiddenfield.gif + wiki/htdocs/applets/FCKeditor/editor/css/behaviors/hiddenfield.htc + wiki/htdocs/applets/FCKeditor/editor/css/behaviors/showtableborders.htc + wiki/htdocs/applets/FCKeditor/editor/css/images/fck_anchor.gif + wiki/htdocs/applets/FCKeditor/editor/css/images/fck_flashlogo.gif + wiki/htdocs/applets/FCKeditor/editor/css/images/fck_pagebreak.gif + wiki/htdocs/applets/FCKeditor/editor/dialog/common/fcknumericfield.htc + wiki/htdocs/applets/FCKeditor/editor/dialog/common/images/locked.gif + wiki/htdocs/applets/FCKeditor/editor/dialog/common/images/unlocked.gif + wiki/htdocs/applets/FCKeditor/editor/dialog/common/moz-bindings.xml + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_about/logo_fckeditor.gif + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_about/logo_fredck.gif + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_template/images/template1.gif + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_template/images/template2.gif + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_template/images/template3.gif + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_universalkey/00.gif + wiki/htdocs/applets/FCKeditor/editor/fckblank.html + wiki/htdocs/applets/FCKeditor/editor/fckdocument.html + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/cfm/config.cfm + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/ButtonArrow.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/Folder.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/Folder32.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/FolderOpened.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/FolderOpened32.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/FolderUp.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/ai.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/cs.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/dll.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/doc.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/exe.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/fla.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/gif.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/htm.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/html.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/js.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/swf.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/swt.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/txt.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/xls.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/xml.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/zip.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/ai.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/avi.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/bmp.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/cs.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/default.icon.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/dll.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/doc.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/exe.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/fla.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/gif.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/htm.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/html.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/jpg.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/js.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/mdb.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/mp3.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/pdf.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/ppt.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/rdp.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/swf.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/swt.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/txt.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/vsd.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/xls.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/xml.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/zip.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/spacer.gif + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/cfm/upload.cfm + wiki/htdocs/applets/FCKeditor/editor/images/anchor.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/angel_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/angry_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/broken_heart.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/cake.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/confused_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/cry_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/devil_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/embaressed_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/envelope.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/heart.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/kiss.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/lightbulb.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/omg_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/regular_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/sad_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/shades_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/teeth_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/thumbs_down.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/wink_smile.gif + wiki/htdocs/applets/FCKeditor/editor/images/spacer.gif + wiki/htdocs/applets/FCKeditor/editor/lang/_getfontformat.html + wiki/htdocs/applets/FCKeditor/editor/plugins/placeholder/placeholder.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.arrowright.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.buttonarrow.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.collapse.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.end.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.expand.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.separator.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.start.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/about.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/anchor.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/bgcolor.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/bold.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/bulletedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/button.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/checkbox.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/copy.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/cut.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/docprops.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/find.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/flash.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/form.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/hiddenfield.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/image.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/imagebutton.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/indent.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/inserthorizontalrule.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/insertorderedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/insertunorderedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/italic.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/justifycenter.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/justifyfull.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/justifyleft.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/justifyright.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/link.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/newpage.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/numberedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/outdent.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/pagebreak.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/paste.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/pastetext.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/pasteword.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/preview.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/print.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/radio.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/redo.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/removeformat.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/replace.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/save.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/select.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/selectall.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/showdetails.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/showtableborders.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/smiley.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/source.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/specialchar.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/spellcheck.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/strikethrough.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/subscript.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/superscript.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/table.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/tablecell.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/tabledeletecells.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/tabledeletecolumns.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/tabledeleterows.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/tableinsertcell.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/tableinsertcolumn.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/tableinsertrow.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/tablemergecells.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/tablesplitcell.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/textarea.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/textcolor.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/textfield.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/underline.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/undo.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/universalkey.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/unlink.gif + wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/unorderedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/images/office.start.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.arrowright.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.bg.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.collapse.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.end.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.expand.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.separator.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.start.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/about.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/anchor.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/bgcolor.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/bold.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/bulletedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/button.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/checkbox.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/copy.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/cut.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/docprops.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/flash.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/fontstyleadv.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/form.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/hidden.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/hiddenfield.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/image.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/imagebutton.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/indent.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/input.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/inserthorizontalrule.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/insertorderedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/insertunorderedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/italic.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/justifycenter.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/justifyfull.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/justifyleft.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/justifyright.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/link.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/mail.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/new.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/newpage.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/numberedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/open.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/outdent.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/pagebreak.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/paste.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/pastetext.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/pasteword.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/preview.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/print.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/radio.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/redo.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/removeformat.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/replace.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/save.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/select.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/selectall.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/showdetails.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/showtableborders.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/smiley.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/source.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/specialchar.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/spellcheck.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/strikethrough.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/subscript.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/superscript.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/table.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/tablecell.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/tabledeletecells.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/tabledeletecolumns.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/tabledeleterows.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/tableinsertcell.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/tableinsertcolumn.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/tableinsertrow.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/tablemergecells.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/tablesplitcell.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/textarea.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/textcolor.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/textfield.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/underline.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/undo.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/universalkey.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/unlink.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/unorderedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.arrowright.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.buttonarrow.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.buttonbg.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.collapse.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.end.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.expand.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.separator.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.start.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/about.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/anchor.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/bgcolor.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/bold.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/bulletedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/button.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/checkbox.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/copy.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/cut.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/docprops.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/find.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/flash.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/form.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/hiddenfield.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/image.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/imagebutton.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/indent.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/inserthorizontalrule.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/insertorderedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/insertunorderedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/italic.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/justifycenter.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/justifyfull.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/justifyleft.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/justifyright.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/link.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/newpage.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/numberedlist.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/outdent.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/pagebreak.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/paste.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/pastetext.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/pasteword.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/preview.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/print.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/radio.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/redo.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/removeformat.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/replace.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/save.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/select.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/selectall.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/showdetails.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/showtableborders.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/smiley-corporate.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/smiley.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/source.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/specialchar.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/spellcheck.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/strikethrough.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/subscript.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/superscript.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/table.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/tablecell.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/tabledeletecells.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/tabledeletecolumns.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/tabledeleterows.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/tableinsertcell.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/tableinsertcolumn.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/tableinsertrow.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/tablemergecells.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/tablesplitcell.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/textarea.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/textcolor.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/textfield.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/underline.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/undo.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/universalkey.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/unlink.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/unorderedlist.gif + wiki/htdocs/applets/FCKeditor/fcktemplates.xml + wiki/htdocs/applets/TWikiDrawPlugin/README + wiki/htdocs/applets/TWikiDrawPlugin/twikidraw.jar + wiki/htdocs/applets/moinFCKplugins/macro/fckplugin.js + wiki/htdocs/applets/moinFCKplugins/macro/lang/en.js + wiki/htdocs/applets/moinFCKplugins/macro/lang/it.js + wiki/htdocs/applets/moinFCKplugins/macro/macro.gif + wiki/htdocs/applets/moinFCKplugins/moinattachment/attachment.gif + wiki/htdocs/applets/moinFCKplugins/moinattachment/fckplugin.js + wiki/htdocs/applets/moinFCKplugins/moinbehaviour/fckplugin.js + wiki/htdocs/applets/moinFCKplugins/moinimage/fckplugin.js + wiki/htdocs/applets/moinFCKplugins/moinlink/fckplugin.js + wiki/htdocs/applets/moinFCKplugins/moinunlink/fckplugin.js + wiki/htdocs/applets/moinFCKplugins/moinurllib.js + wiki/htdocs/applets/moinFCKplugins/placeholder/fck_placeholder.html + wiki/htdocs/applets/moinFCKplugins/placeholder/fckplugin.js + wiki/htdocs/applets/moinFCKplugins/placeholder/lang/en.js + wiki/htdocs/applets/moinFCKplugins/placeholder/lang/it.js + wiki/htdocs/applets/moinFCKplugins/placeholder/placeholder.gif + wiki/htdocs/applets/moinFCKplugins/restrict_actions/fckplugin.js + wiki/htdocs/applets/moinFCKplugins/selection/fckplugin.js + wiki/htdocs/applets/moinfckconfig.js + wiki/htdocs/applets/moinfckstyles.xml + wiki/htdocs/classic/css/msie.css + wiki/htdocs/classic/img/PythonPowered.png + wiki/htdocs/classic/img/alert.png + wiki/htdocs/classic/img/angry.png + wiki/htdocs/classic/img/attach.png + wiki/htdocs/classic/img/attention.png + wiki/htdocs/classic/img/biggrin.png + wiki/htdocs/classic/img/checkmark.png + wiki/htdocs/classic/img/devil.png + wiki/htdocs/classic/img/draft.png + wiki/htdocs/classic/img/frown.png + wiki/htdocs/classic/img/icon-error.png + wiki/htdocs/classic/img/icon-info.png + wiki/htdocs/classic/img/moin-attach.png + wiki/htdocs/classic/img/moin-bottom.png + wiki/htdocs/classic/img/moin-conflict.png + wiki/htdocs/classic/img/moin-deleted.png + wiki/htdocs/classic/img/moin-diff.png + wiki/htdocs/classic/img/moin-edit.png + wiki/htdocs/classic/img/moin-email.png + wiki/htdocs/classic/img/moin-ftp.png + wiki/htdocs/classic/img/moin-help.png + wiki/htdocs/classic/img/moin-home.png + wiki/htdocs/classic/img/moin-icon.png + wiki/htdocs/classic/img/moin-info.png + wiki/htdocs/classic/img/moin-inter.png + wiki/htdocs/classic/img/moin-news.png + wiki/htdocs/classic/img/moin-parent.png + wiki/htdocs/classic/img/moin-print.png + wiki/htdocs/classic/img/moin-raw.png + wiki/htdocs/classic/img/moin-renamed.png + wiki/htdocs/classic/img/moin-rss.png + wiki/htdocs/classic/img/moin-search.png + wiki/htdocs/classic/img/moin-show.png + wiki/htdocs/classic/img/moin-subscribe.png + wiki/htdocs/classic/img/moin-telnet.png + wiki/htdocs/classic/img/moin-top.png + wiki/htdocs/classic/img/moin-unsubscribe.png + wiki/htdocs/classic/img/moin-up.png + wiki/htdocs/classic/img/moin-updated.png + wiki/htdocs/classic/img/moin-www.png + wiki/htdocs/classic/img/moin-xml.png + wiki/htdocs/classic/img/moin-xml2.png + wiki/htdocs/classic/img/ohwell.png + wiki/htdocs/classic/img/prio1.png + wiki/htdocs/classic/img/prio2.png + wiki/htdocs/classic/img/prio3.png + wiki/htdocs/classic/img/smile4.png + wiki/htdocs/classic/img/star_off.png + wiki/htdocs/classic/img/star_on.png + wiki/htdocs/classic/img/thumbs-up.png + wiki/htdocs/classic/img/tired.png + wiki/htdocs/classic/img/tongue.png + wiki/htdocs/common/js/common.js + wiki/htdocs/common/js/countdown.js + wiki/htdocs/common/moindude.png + wiki/htdocs/common/moinmoin_alpha.png + wiki/htdocs/common/openid.png + wiki/htdocs/favicon.ico + wiki/htdocs/index.html + wiki/htdocs/modern/css/msie.css + wiki/htdocs/modern/img/PythonPowered.png + wiki/htdocs/modern/img/admon-caution.png + wiki/htdocs/modern/img/admon-important.png + wiki/htdocs/modern/img/admon-note.png + wiki/htdocs/modern/img/admon-warning.png + wiki/htdocs/modern/img/alert.png + wiki/htdocs/modern/img/angry.png + wiki/htdocs/modern/img/attach.png + wiki/htdocs/modern/img/attention.png + wiki/htdocs/modern/img/biggrin.png + wiki/htdocs/modern/img/checkmark.png + wiki/htdocs/modern/img/devil.png + wiki/htdocs/modern/img/frown.png + wiki/htdocs/modern/img/icon-error.png + wiki/htdocs/modern/img/icon-info.png + wiki/htdocs/modern/img/moin-attach.png + wiki/htdocs/modern/img/moin-bottom.png + wiki/htdocs/modern/img/moin-conflict.png + wiki/htdocs/modern/img/moin-deleted.png + wiki/htdocs/modern/img/moin-diff.png + wiki/htdocs/modern/img/moin-edit.png + wiki/htdocs/modern/img/moin-email.png + wiki/htdocs/modern/img/moin-ftp.png + wiki/htdocs/modern/img/moin-help.png + wiki/htdocs/modern/img/moin-home.png + wiki/htdocs/modern/img/moin-icon.png + wiki/htdocs/modern/img/moin-info.png + wiki/htdocs/modern/img/moin-inter.png + wiki/htdocs/modern/img/moin-news.png + wiki/htdocs/modern/img/moin-parent.png + wiki/htdocs/modern/img/moin-print.png + wiki/htdocs/modern/img/moin-raw.png + wiki/htdocs/modern/img/moin-renamed.png + wiki/htdocs/modern/img/moin-rss.png + wiki/htdocs/modern/img/moin-search.png + wiki/htdocs/modern/img/moin-show.png + wiki/htdocs/modern/img/moin-subscribe.png + wiki/htdocs/modern/img/moin-telnet.png + wiki/htdocs/modern/img/moin-top.png + wiki/htdocs/modern/img/moin-unsubscribe.png + wiki/htdocs/modern/img/moin-up.png + wiki/htdocs/modern/img/moin-updated.png + wiki/htdocs/modern/img/moin-www.png + wiki/htdocs/modern/img/moin-xml.png + wiki/htdocs/modern/img/moin-xml2.png + wiki/htdocs/modern/img/ohwell.png + wiki/htdocs/modern/img/prio1.png + wiki/htdocs/modern/img/prio2.png + wiki/htdocs/modern/img/prio3.png + wiki/htdocs/modern/img/smile4.png + wiki/htdocs/modern/img/star_off.png + wiki/htdocs/modern/img/star_on.png + wiki/htdocs/modern/img/thumbs-up.png + wiki/htdocs/modern/img/tired.png + wiki/htdocs/modern/img/tongue.png + wiki/htdocs/rightsidebar/css/msie.css + wiki/htdocs/rightsidebar/img/PythonPowered.png + wiki/htdocs/rightsidebar/img/alert.png + wiki/htdocs/rightsidebar/img/angry.png + wiki/htdocs/rightsidebar/img/attach.png + wiki/htdocs/rightsidebar/img/attention.png + wiki/htdocs/rightsidebar/img/biggrin.png + wiki/htdocs/rightsidebar/img/checkmark.png + wiki/htdocs/rightsidebar/img/devil.png + wiki/htdocs/rightsidebar/img/draft.png + wiki/htdocs/rightsidebar/img/frown.png + wiki/htdocs/rightsidebar/img/icon-error.png + wiki/htdocs/rightsidebar/img/icon-info.png + wiki/htdocs/rightsidebar/img/logout.png + wiki/htdocs/rightsidebar/img/moin-attach.png + wiki/htdocs/rightsidebar/img/moin-bottom.png + wiki/htdocs/rightsidebar/img/moin-conflict.png + wiki/htdocs/rightsidebar/img/moin-deleted.png + wiki/htdocs/rightsidebar/img/moin-diff.png + wiki/htdocs/rightsidebar/img/moin-edit.png + wiki/htdocs/rightsidebar/img/moin-email.png + wiki/htdocs/rightsidebar/img/moin-ftp.png + wiki/htdocs/rightsidebar/img/moin-help.png + wiki/htdocs/rightsidebar/img/moin-home.png + wiki/htdocs/rightsidebar/img/moin-icon.png + wiki/htdocs/rightsidebar/img/moin-info.png + wiki/htdocs/rightsidebar/img/moin-inter.png + wiki/htdocs/rightsidebar/img/moin-news.png + wiki/htdocs/rightsidebar/img/moin-parent.png + wiki/htdocs/rightsidebar/img/moin-print.png + wiki/htdocs/rightsidebar/img/moin-raw.png + wiki/htdocs/rightsidebar/img/moin-renamed.png + wiki/htdocs/rightsidebar/img/moin-rss.png + wiki/htdocs/rightsidebar/img/moin-search.png + wiki/htdocs/rightsidebar/img/moin-show.png + wiki/htdocs/rightsidebar/img/moin-subscribe.png + wiki/htdocs/rightsidebar/img/moin-telnet.png + wiki/htdocs/rightsidebar/img/moin-top.png + wiki/htdocs/rightsidebar/img/moin-unsubscribe.png + wiki/htdocs/rightsidebar/img/moin-up.png + wiki/htdocs/rightsidebar/img/moin-updated.png + wiki/htdocs/rightsidebar/img/moin-www.png + wiki/htdocs/rightsidebar/img/moin-xml.png + wiki/htdocs/rightsidebar/img/moin-xml2.png + wiki/htdocs/rightsidebar/img/ohwell.png + wiki/htdocs/rightsidebar/img/prio1.png + wiki/htdocs/rightsidebar/img/prio2.png + wiki/htdocs/rightsidebar/img/prio3.png + wiki/htdocs/rightsidebar/img/smile4.png + wiki/htdocs/rightsidebar/img/star_off.png + wiki/htdocs/rightsidebar/img/star_on.png + wiki/htdocs/rightsidebar/img/thumbs-up.png + wiki/htdocs/rightsidebar/img/tired.png + wiki/htdocs/rightsidebar/img/tongue.png + wiki/htdocs/robots.txt + wiki/server/wikiserverconfig.py + wiki/underlay/pages/AbandonedPages/cache/pagelinks + wiki/underlay/pages/AbandonedPages/current + wiki/underlay/pages/AbandonedPages/edit-log + wiki/underlay/pages/AbandonedPages/revisions/00000001 + wiki/underlay/pages/AutoAdminGroup/cache/pagelinks + wiki/underlay/pages/AutoAdminGroup/current + wiki/underlay/pages/AutoAdminGroup/edit-log + wiki/underlay/pages/AutoAdminGroup/revisions/00000001 + wiki/underlay/pages/BadContent/current + wiki/underlay/pages/BadContent/revisions/00000001 + wiki/underlay/pages/CamelCase/cache/pagelinks + wiki/underlay/pages/CamelCase/current + wiki/underlay/pages/CamelCase/edit-log + wiki/underlay/pages/CamelCase/revisions/00000001 + wiki/underlay/pages/CategoryCategory/cache/pagelinks + wiki/underlay/pages/CategoryCategory/current + wiki/underlay/pages/CategoryCategory/edit-log + wiki/underlay/pages/CategoryCategory/revisions/00000001 + wiki/underlay/pages/CategoryHomepage/cache/pagelinks + wiki/underlay/pages/CategoryHomepage/current + wiki/underlay/pages/CategoryHomepage/edit-log + wiki/underlay/pages/CategoryHomepage/revisions/00000001 + wiki/underlay/pages/CategoryTemplate/cache/pagelinks + wiki/underlay/pages/CategoryTemplate/current + wiki/underlay/pages/CategoryTemplate/edit-log + wiki/underlay/pages/CategoryTemplate/revisions/00000001 + wiki/underlay/pages/DesktopEdition/cache/pagelinks + wiki/underlay/pages/DesktopEdition/current + wiki/underlay/pages/DesktopEdition/edit-log + wiki/underlay/pages/DesktopEdition/revisions/00000001 + wiki/underlay/pages/EditedSystemPages/cache/pagelinks + wiki/underlay/pages/EditedSystemPages/current + wiki/underlay/pages/EditedSystemPages/edit-log + wiki/underlay/pages/EditedSystemPages/revisions/00000001 + wiki/underlay/pages/EventStats(2f)HitCounts/cache/pagelinks + wiki/underlay/pages/EventStats(2f)HitCounts/current + wiki/underlay/pages/EventStats(2f)HitCounts/edit-log + wiki/underlay/pages/EventStats(2f)HitCounts/revisions/00000001 + wiki/underlay/pages/EventStats(2f)Languages/cache/pagelinks + wiki/underlay/pages/EventStats(2f)Languages/current + wiki/underlay/pages/EventStats(2f)Languages/edit-log + wiki/underlay/pages/EventStats(2f)Languages/revisions/00000001 + wiki/underlay/pages/EventStats(2f)UserAgents/cache/pagelinks + wiki/underlay/pages/EventStats(2f)UserAgents/current + wiki/underlay/pages/EventStats(2f)UserAgents/edit-log + wiki/underlay/pages/EventStats(2f)UserAgents/revisions/00000001 + wiki/underlay/pages/EventStats/cache/pagelinks + wiki/underlay/pages/EventStats/current + wiki/underlay/pages/EventStats/edit-log + wiki/underlay/pages/EventStats/revisions/00000001 + wiki/underlay/pages/FindPage/cache/pagelinks + wiki/underlay/pages/FindPage/current + wiki/underlay/pages/FindPage/edit-log + wiki/underlay/pages/FindPage/revisions/00000001 + wiki/underlay/pages/FortuneCookies/cache/pagelinks + wiki/underlay/pages/FortuneCookies/current + wiki/underlay/pages/FortuneCookies/edit-log + wiki/underlay/pages/FortuneCookies/revisions/00000001 + wiki/underlay/pages/FrontPage/cache/pagelinks + wiki/underlay/pages/FrontPage/current + wiki/underlay/pages/FrontPage/edit-log + wiki/underlay/pages/FrontPage/revisions/00000001 + wiki/underlay/pages/HelpContents/cache/pagelinks + wiki/underlay/pages/HelpContents/current + wiki/underlay/pages/HelpContents/edit-log + wiki/underlay/pages/HelpForAdministrators/cache/pagelinks + wiki/underlay/pages/HelpForAdministrators/current + wiki/underlay/pages/HelpForAdministrators/edit-log + wiki/underlay/pages/HelpForAdministrators/revisions/00000001 + wiki/underlay/pages/HelpForBeginners/cache/pagelinks + wiki/underlay/pages/HelpForBeginners/current + wiki/underlay/pages/HelpForBeginners/edit-log + wiki/underlay/pages/HelpForBeginners/revisions/00000001 + wiki/underlay/pages/HelpForDevelopers/cache/pagelinks + wiki/underlay/pages/HelpForDevelopers/current + wiki/underlay/pages/HelpForDevelopers/edit-log + wiki/underlay/pages/HelpForDevelopers/revisions/00000001 + wiki/underlay/pages/HelpForUsers/cache/pagelinks + wiki/underlay/pages/HelpForUsers/current + wiki/underlay/pages/HelpForUsers/edit-log + wiki/underlay/pages/HelpForUsers/revisions/00000001 + wiki/underlay/pages/HelpIndex/cache/pagelinks + wiki/underlay/pages/HelpIndex/current + wiki/underlay/pages/HelpIndex/edit-log + wiki/underlay/pages/HelpIndex/revisions/00000001 + wiki/underlay/pages/HelpMiscellaneous(2f)ExperimentalFeatures/cache/pagelinks + wiki/underlay/pages/HelpMiscellaneous(2f)ExperimentalFeatures/current + wiki/underlay/pages/HelpMiscellaneous(2f)ExperimentalFeatures/edit-log + wiki/underlay/pages/HelpMiscellaneous(2f)ExperimentalFeatures/revisions/00000001 + wiki/underlay/pages/HelpMiscellaneous(2f)FrequentlyAskedQuestions/cache/pagelinks + wiki/underlay/pages/HelpMiscellaneous(2f)FrequentlyAskedQuestions/current + wiki/underlay/pages/HelpMiscellaneous(2f)FrequentlyAskedQuestions/edit-log + wiki/underlay/pages/HelpMiscellaneous(2f)FrequentlyAskedQuestions/revisions/00000001 + wiki/underlay/pages/HelpMiscellaneous/cache/pagelinks + wiki/underlay/pages/HelpMiscellaneous/current + wiki/underlay/pages/HelpMiscellaneous/edit-log + wiki/underlay/pages/HelpMiscellaneous/revisions/00000001 + wiki/underlay/pages/HelpOnAccessControlLists/cache/pagelinks + wiki/underlay/pages/HelpOnAccessControlLists/current + wiki/underlay/pages/HelpOnAccessControlLists/edit-log + wiki/underlay/pages/HelpOnAccessControlLists/revisions/00000001 + wiki/underlay/pages/HelpOnAcl/cache/pagelinks + wiki/underlay/pages/HelpOnAcl/current + wiki/underlay/pages/HelpOnAcl/edit-log + wiki/underlay/pages/HelpOnAcl/revisions/00000001 + wiki/underlay/pages/HelpOnActions(2f)AttachFile/attachments/move_example1.png + wiki/underlay/pages/HelpOnActions(2f)AttachFile/attachments/move_example2.png + wiki/underlay/pages/HelpOnActions(2f)AttachFile/attachments/unzip1.png + wiki/underlay/pages/HelpOnActions(2f)AttachFile/attachments/unzip3a.png + wiki/underlay/pages/HelpOnActions(2f)AttachFile/attachments/unzip3b.png + wiki/underlay/pages/HelpOnActions(2f)AttachFile/attachments/unzip6.png + wiki/underlay/pages/HelpOnActions(2f)AttachFile/attachments/unzip6b.png + wiki/underlay/pages/HelpOnActions(2f)AttachFile/attachments/unzip7.png + wiki/underlay/pages/HelpOnActions(2f)AttachFile/cache/pagelinks + wiki/underlay/pages/HelpOnActions(2f)AttachFile/current + wiki/underlay/pages/HelpOnActions(2f)AttachFile/edit-log + wiki/underlay/pages/HelpOnActions(2f)AttachFile/revisions/00000001 + wiki/underlay/pages/HelpOnActions/cache/pagelinks + wiki/underlay/pages/HelpOnActions/current + wiki/underlay/pages/HelpOnActions/edit-log + wiki/underlay/pages/HelpOnActions/revisions/00000001 + wiki/underlay/pages/HelpOnAdministration/cache/pagelinks + wiki/underlay/pages/HelpOnAdministration/current + wiki/underlay/pages/HelpOnAdministration/edit-log + wiki/underlay/pages/HelpOnAdministration/revisions/00000001 + wiki/underlay/pages/HelpOnAdmonitions/cache/pagelinks + wiki/underlay/pages/HelpOnAdmonitions/current + wiki/underlay/pages/HelpOnAdmonitions/edit-log + wiki/underlay/pages/HelpOnAdmonitions/revisions/00000001 + wiki/underlay/pages/HelpOnAuthentication(2f)ExternalCookie/cache/pagelinks + wiki/underlay/pages/HelpOnAuthentication(2f)ExternalCookie/current + wiki/underlay/pages/HelpOnAuthentication(2f)ExternalCookie/edit-log + wiki/underlay/pages/HelpOnAuthentication(2f)ExternalCookie/revisions/00000001 + wiki/underlay/pages/HelpOnAuthentication/cache/pagelinks + wiki/underlay/pages/HelpOnAuthentication/current + wiki/underlay/pages/HelpOnAuthentication/edit-log + wiki/underlay/pages/HelpOnAuthentication/revisions/00000001 + wiki/underlay/pages/HelpOnAutoAdmin/cache/pagelinks + wiki/underlay/pages/HelpOnAutoAdmin/current + wiki/underlay/pages/HelpOnAutoAdmin/edit-log + wiki/underlay/pages/HelpOnAutoAdmin/revisions/00000001 + wiki/underlay/pages/HelpOnCategories/cache/pagelinks + wiki/underlay/pages/HelpOnCategories/current + wiki/underlay/pages/HelpOnCategories/edit-log + wiki/underlay/pages/HelpOnCategories/revisions/00000001 + wiki/underlay/pages/HelpOnComments/cache/pagelinks + wiki/underlay/pages/HelpOnComments/current + wiki/underlay/pages/HelpOnComments/edit-log + wiki/underlay/pages/HelpOnComments/revisions/00000001 + wiki/underlay/pages/HelpOnConfiguration(2f)ApacheVoodoo/cache/pagelinks + wiki/underlay/pages/HelpOnConfiguration(2f)ApacheVoodoo/current + wiki/underlay/pages/HelpOnConfiguration(2f)ApacheVoodoo/edit-log + wiki/underlay/pages/HelpOnConfiguration(2f)ApacheVoodoo/revisions/00000001 + wiki/underlay/pages/HelpOnConfiguration(2f)EmailSupport/cache/pagelinks + wiki/underlay/pages/HelpOnConfiguration(2f)EmailSupport/current + wiki/underlay/pages/HelpOnConfiguration(2f)EmailSupport/edit-log + wiki/underlay/pages/HelpOnConfiguration(2f)EmailSupport/revisions/00000001 + wiki/underlay/pages/HelpOnConfiguration(2f)FileAttachments/cache/pagelinks + wiki/underlay/pages/HelpOnConfiguration(2f)FileAttachments/current + wiki/underlay/pages/HelpOnConfiguration(2f)FileAttachments/edit-log + wiki/underlay/pages/HelpOnConfiguration(2f)FileAttachments/revisions/00000001 + wiki/underlay/pages/HelpOnConfiguration(2f)IntegratingWithApache/cache/pagelinks + wiki/underlay/pages/HelpOnConfiguration(2f)IntegratingWithApache/current + wiki/underlay/pages/HelpOnConfiguration(2f)IntegratingWithApache/edit-log + wiki/underlay/pages/HelpOnConfiguration(2f)IntegratingWithApache/revisions/00000001 + wiki/underlay/pages/HelpOnConfiguration(2f)SecurityPolicy/cache/pagelinks + wiki/underlay/pages/HelpOnConfiguration(2f)SecurityPolicy/current + wiki/underlay/pages/HelpOnConfiguration(2f)SecurityPolicy/edit-log + wiki/underlay/pages/HelpOnConfiguration(2f)SupplementationPage/cache/pagelinks + wiki/underlay/pages/HelpOnConfiguration(2f)SupplementationPage/current + wiki/underlay/pages/HelpOnConfiguration(2f)SupplementationPage/edit-log + wiki/underlay/pages/HelpOnConfiguration(2f)SupplementationPage/revisions/00000001 + wiki/underlay/pages/HelpOnConfiguration(2f)SurgeProtection/cache/pagelinks + wiki/underlay/pages/HelpOnConfiguration(2f)SurgeProtection/current + wiki/underlay/pages/HelpOnConfiguration(2f)SurgeProtection/edit-log + wiki/underlay/pages/HelpOnConfiguration(2f)SurgeProtection/revisions/00000001 + wiki/underlay/pages/HelpOnConfiguration(2f)UserPreferences/cache/pagelinks + wiki/underlay/pages/HelpOnConfiguration(2f)UserPreferences/current + wiki/underlay/pages/HelpOnConfiguration(2f)UserPreferences/edit-log + wiki/underlay/pages/HelpOnConfiguration(2f)UserPreferences/revisions/00000001 + wiki/underlay/pages/HelpOnConfiguration/cache/pagelinks + wiki/underlay/pages/HelpOnConfiguration/current + wiki/underlay/pages/HelpOnConfiguration/edit-log + wiki/underlay/pages/HelpOnConfiguration/revisions/00000001 + wiki/underlay/pages/HelpOnCreoleSyntax/cache/pagelinks + wiki/underlay/pages/HelpOnCreoleSyntax/current + wiki/underlay/pages/HelpOnCreoleSyntax/edit-log + wiki/underlay/pages/HelpOnCreoleSyntax/revisions/00000001 + wiki/underlay/pages/HelpOnDictionaries/cache/pagelinks + wiki/underlay/pages/HelpOnDictionaries/current + wiki/underlay/pages/HelpOnDictionaries/edit-log + wiki/underlay/pages/HelpOnDictionaries/revisions/00000001 + wiki/underlay/pages/HelpOnEditLocks/cache/pagelinks + wiki/underlay/pages/HelpOnEditLocks/current + wiki/underlay/pages/HelpOnEditLocks/edit-log + wiki/underlay/pages/HelpOnEditLocks/revisions/00000001 + wiki/underlay/pages/HelpOnEditing(2f)SubPages/cache/pagelinks + wiki/underlay/pages/HelpOnEditing(2f)SubPages/current + wiki/underlay/pages/HelpOnEditing(2f)SubPages/edit-log + wiki/underlay/pages/HelpOnEditing(2f)SubPages/revisions/00000001 + wiki/underlay/pages/HelpOnEditing/cache/pagelinks + wiki/underlay/pages/HelpOnEditing/current + wiki/underlay/pages/HelpOnEditing/edit-log + wiki/underlay/pages/HelpOnEditing/revisions/00000001 + wiki/underlay/pages/HelpOnFormatting/cache/pagelinks + wiki/underlay/pages/HelpOnFormatting/current + wiki/underlay/pages/HelpOnFormatting/edit-log + wiki/underlay/pages/HelpOnFormatting/revisions/00000001 + wiki/underlay/pages/HelpOnGraphicalEditor/cache/pagelinks + wiki/underlay/pages/HelpOnGraphicalEditor/current + wiki/underlay/pages/HelpOnGraphicalEditor/edit-log + wiki/underlay/pages/HelpOnGraphicalEditor/revisions/00000001 + wiki/underlay/pages/HelpOnHeadlines/cache/pagelinks + wiki/underlay/pages/HelpOnHeadlines/current + wiki/underlay/pages/HelpOnHeadlines/edit-log + wiki/underlay/pages/HelpOnHeadlines/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)AolServer/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)AolServer/current + wiki/underlay/pages/HelpOnInstalling(2f)AolServer/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)AolServer/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnLinux/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnLinux/current + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnLinux/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnLinux/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnLinuxFtp/attachments/explore.py + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnLinuxFtp/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnLinuxFtp/current + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnLinuxFtp/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnLinuxFtp/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnMacOsx/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnMacOsx/current + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnMacOsx/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnMacOsx/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32/current + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32withDomainAuthentication/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32withDomainAuthentication/current + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32withDomainAuthentication/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32withDomainAuthentication/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32withFastCgi/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32withFastCgi/current + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32withFastCgi/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)ApacheOnWin32withFastCgi/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)ApacheWithModPython/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)ApacheWithModPython/current + wiki/underlay/pages/HelpOnInstalling(2f)ApacheWithModPython/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)ApacheWithModPython/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)ApacheWithModWSGI/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)ApacheWithModWSGI/current + wiki/underlay/pages/HelpOnInstalling(2f)ApacheWithModWSGI/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)ApacheWithModWSGI/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)BasicInstallation/attachments/pythontest.cgi + wiki/underlay/pages/HelpOnInstalling(2f)BasicInstallation/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)BasicInstallation/current + wiki/underlay/pages/HelpOnInstalling(2f)BasicInstallation/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)BasicInstallation/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)FastCgi/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)FastCgi/current + wiki/underlay/pages/HelpOnInstalling(2f)FastCgi/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)FastCgi/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)InternetInformationServer/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)InternetInformationServer/current + wiki/underlay/pages/HelpOnInstalling(2f)InternetInformationServer/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)InternetInformationServer/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)MinimalWiki/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)MinimalWiki/current + wiki/underlay/pages/HelpOnInstalling(2f)MinimalWiki/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)MinimalWiki/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)StandaloneServer/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)StandaloneServer/current + wiki/underlay/pages/HelpOnInstalling(2f)StandaloneServer/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)StandaloneServer/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)TroubleShooting/attachments/is_python_here.sh + wiki/underlay/pages/HelpOnInstalling(2f)TroubleShooting/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)TroubleShooting/current + wiki/underlay/pages/HelpOnInstalling(2f)TroubleShooting/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)TroubleShooting/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)TwistedWeb/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)TwistedWeb/current + wiki/underlay/pages/HelpOnInstalling(2f)TwistedWeb/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)TwistedWeb/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)WebLogic/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)WebLogic/current + wiki/underlay/pages/HelpOnInstalling(2f)WebLogic/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)WebLogic/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)WikiInstanceCreation/attachments/createinstance.sh + wiki/underlay/pages/HelpOnInstalling(2f)WikiInstanceCreation/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)WikiInstanceCreation/current + wiki/underlay/pages/HelpOnInstalling(2f)WikiInstanceCreation/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)WikiInstanceCreation/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling(2f)Win32MoinEasyBackup/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling(2f)Win32MoinEasyBackup/current + wiki/underlay/pages/HelpOnInstalling(2f)Win32MoinEasyBackup/edit-log + wiki/underlay/pages/HelpOnInstalling(2f)Win32MoinEasyBackup/revisions/00000001 + wiki/underlay/pages/HelpOnInstalling/cache/pagelinks + wiki/underlay/pages/HelpOnInstalling/current + wiki/underlay/pages/HelpOnInstalling/edit-log + wiki/underlay/pages/HelpOnInstalling/revisions/00000001 + wiki/underlay/pages/HelpOnLanguages/cache/pagelinks + wiki/underlay/pages/HelpOnLanguages/current + wiki/underlay/pages/HelpOnLanguages/edit-log + wiki/underlay/pages/HelpOnLanguages/revisions/00000001 + wiki/underlay/pages/HelpOnLinking(2f)NotesLinks/cache/pagelinks + wiki/underlay/pages/HelpOnLinking(2f)NotesLinks/current + wiki/underlay/pages/HelpOnLinking(2f)NotesLinks/edit-log + wiki/underlay/pages/HelpOnLinking(2f)NotesLinks/revisions/00000001 + wiki/underlay/pages/HelpOnLinking/cache/pagelinks + wiki/underlay/pages/HelpOnLinking/current + wiki/underlay/pages/HelpOnLinking/edit-log + wiki/underlay/pages/HelpOnLinking/revisions/00000001 + wiki/underlay/pages/HelpOnLists/cache/pagelinks + wiki/underlay/pages/HelpOnLists/current + wiki/underlay/pages/HelpOnLists/edit-log + wiki/underlay/pages/HelpOnLists/revisions/00000001 + wiki/underlay/pages/HelpOnLogin/cache/pagelinks + wiki/underlay/pages/HelpOnLogin/current + wiki/underlay/pages/HelpOnLogin/edit-log + wiki/underlay/pages/HelpOnLogin/revisions/00000001 + wiki/underlay/pages/HelpOnMacros(2f)EmbedObject/cache/pagelinks + wiki/underlay/pages/HelpOnMacros(2f)EmbedObject/current + wiki/underlay/pages/HelpOnMacros(2f)EmbedObject/edit-log + wiki/underlay/pages/HelpOnMacros(2f)EmbedObject/revisions/00000001 + wiki/underlay/pages/HelpOnMacros(2f)ImageLink/cache/pagelinks + wiki/underlay/pages/HelpOnMacros(2f)ImageLink/current + wiki/underlay/pages/HelpOnMacros(2f)ImageLink/edit-log + wiki/underlay/pages/HelpOnMacros(2f)ImageLink/revisions/00000001 + wiki/underlay/pages/HelpOnMacros(2f)Include/cache/pagelinks + wiki/underlay/pages/HelpOnMacros(2f)Include/current + wiki/underlay/pages/HelpOnMacros(2f)Include/edit-log + wiki/underlay/pages/HelpOnMacros(2f)Include/revisions/00000001 + wiki/underlay/pages/HelpOnMacros(2f)MailTo/cache/pagelinks + wiki/underlay/pages/HelpOnMacros(2f)MailTo/current + wiki/underlay/pages/HelpOnMacros(2f)MailTo/edit-log + wiki/underlay/pages/HelpOnMacros(2f)MailTo/revisions/00000001 + wiki/underlay/pages/HelpOnMacros(2f)MonthCalendar/cache/pagelinks + wiki/underlay/pages/HelpOnMacros(2f)MonthCalendar/current + wiki/underlay/pages/HelpOnMacros(2f)MonthCalendar/edit-log + wiki/underlay/pages/HelpOnMacros(2f)MonthCalendar/revisions/00000001 + wiki/underlay/pages/HelpOnMacros/cache/hitcounts + wiki/underlay/pages/HelpOnMacros/cache/pagelinks + wiki/underlay/pages/HelpOnMacros/current + wiki/underlay/pages/HelpOnMacros/edit-log + wiki/underlay/pages/HelpOnMacros/revisions/00000001 + wiki/underlay/pages/HelpOnMoinCommand(2f)ExportDump/cache/pagelinks + wiki/underlay/pages/HelpOnMoinCommand(2f)ExportDump/current + wiki/underlay/pages/HelpOnMoinCommand(2f)ExportDump/edit-log + wiki/underlay/pages/HelpOnMoinCommand(2f)ExportDump/revisions/00000001 + wiki/underlay/pages/HelpOnMoinCommand/cache/pagelinks + wiki/underlay/pages/HelpOnMoinCommand/current + wiki/underlay/pages/HelpOnMoinCommand/edit-log + wiki/underlay/pages/HelpOnMoinCommand/revisions/00000001 + wiki/underlay/pages/HelpOnMoinWikiSyntax/attachments/myexample.draw + wiki/underlay/pages/HelpOnMoinWikiSyntax/attachments/myexample.png + wiki/underlay/pages/HelpOnMoinWikiSyntax/cache/pagelinks + wiki/underlay/pages/HelpOnMoinWikiSyntax/current + wiki/underlay/pages/HelpOnMoinWikiSyntax/edit-log + wiki/underlay/pages/HelpOnMoinWikiSyntax/revisions/00000001 + wiki/underlay/pages/HelpOnNavigation/cache/pagelinks + wiki/underlay/pages/HelpOnNavigation/current + wiki/underlay/pages/HelpOnNavigation/edit-log + wiki/underlay/pages/HelpOnNavigation/revisions/00000001 + wiki/underlay/pages/HelpOnNotification/cache/pagelinks + wiki/underlay/pages/HelpOnNotification/current + wiki/underlay/pages/HelpOnNotification/edit-log + wiki/underlay/pages/HelpOnNotification/revisions/00000001 + wiki/underlay/pages/HelpOnOpenIDProvider/cache/pagelinks + wiki/underlay/pages/HelpOnOpenIDProvider/current + wiki/underlay/pages/HelpOnOpenIDProvider/edit-log + wiki/underlay/pages/HelpOnOpenIDProvider/revisions/00000001 + wiki/underlay/pages/HelpOnPackageInstaller/cache/pagelinks + wiki/underlay/pages/HelpOnPackageInstaller/current + wiki/underlay/pages/HelpOnPackageInstaller/edit-log + wiki/underlay/pages/HelpOnPackageInstaller/revisions/00000001 + wiki/underlay/pages/HelpOnPageCreation/cache/pagelinks + wiki/underlay/pages/HelpOnPageCreation/current + wiki/underlay/pages/HelpOnPageCreation/edit-log + wiki/underlay/pages/HelpOnPageCreation/revisions/00000001 + wiki/underlay/pages/HelpOnPageDeletion/cache/pagelinks + wiki/underlay/pages/HelpOnPageDeletion/current + wiki/underlay/pages/HelpOnPageDeletion/edit-log + wiki/underlay/pages/HelpOnPageDeletion/revisions/00000001 + wiki/underlay/pages/HelpOnParsers(2f)ReStructuredText(2f)RstPrimer/cache/pagelinks + wiki/underlay/pages/HelpOnParsers(2f)ReStructuredText(2f)RstPrimer/current + wiki/underlay/pages/HelpOnParsers(2f)ReStructuredText(2f)RstPrimer/edit-log + wiki/underlay/pages/HelpOnParsers(2f)ReStructuredText/cache/pagelinks + wiki/underlay/pages/HelpOnParsers(2f)ReStructuredText/current + wiki/underlay/pages/HelpOnParsers(2f)ReStructuredText/edit-log + wiki/underlay/pages/HelpOnParsers(2f)ReStructuredText/revisions/00000001 + wiki/underlay/pages/HelpOnParsers/cache/pagelinks + wiki/underlay/pages/HelpOnParsers/current + wiki/underlay/pages/HelpOnParsers/edit-log + wiki/underlay/pages/HelpOnParsers/revisions/00000001 + wiki/underlay/pages/HelpOnPatchCreation/cache/pagelinks + wiki/underlay/pages/HelpOnPatchCreation/current + wiki/underlay/pages/HelpOnPatchCreation/edit-log + wiki/underlay/pages/HelpOnPatchCreation/revisions/00000001 + wiki/underlay/pages/HelpOnProcessingInstructions/cache/pagelinks + wiki/underlay/pages/HelpOnProcessingInstructions/current + wiki/underlay/pages/HelpOnProcessingInstructions/edit-log + wiki/underlay/pages/HelpOnProcessingInstructions/revisions/00000001 + wiki/underlay/pages/HelpOnRules/cache/pagelinks + wiki/underlay/pages/HelpOnRules/current + wiki/underlay/pages/HelpOnRules/edit-log + wiki/underlay/pages/HelpOnRules/revisions/00000001 + wiki/underlay/pages/HelpOnSearching/cache/pagelinks + wiki/underlay/pages/HelpOnSearching/current + wiki/underlay/pages/HelpOnSearching/edit-log + wiki/underlay/pages/HelpOnSearching/revisions/00000001 + wiki/underlay/pages/HelpOnSessions/cache/pagelinks + wiki/underlay/pages/HelpOnSessions/current + wiki/underlay/pages/HelpOnSessions/edit-log + wiki/underlay/pages/HelpOnSessions/revisions/00000001 + wiki/underlay/pages/HelpOnSlideShows(2f)000(20)Introduction/cache/pagelinks + wiki/underlay/pages/HelpOnSlideShows(2f)000(20)Introduction/current + wiki/underlay/pages/HelpOnSlideShows(2f)000(20)Introduction/edit-log + wiki/underlay/pages/HelpOnSlideShows(2f)000(20)Introduction/revisions/00000001 + wiki/underlay/pages/HelpOnSlideShows(2f)100(20)Creating(20)the(20)slides/cache/pagelinks + wiki/underlay/pages/HelpOnSlideShows(2f)100(20)Creating(20)the(20)slides/current + wiki/underlay/pages/HelpOnSlideShows(2f)100(20)Creating(20)the(20)slides/edit-log + wiki/underlay/pages/HelpOnSlideShows(2f)100(20)Creating(20)the(20)slides/revisions/00000001 + wiki/underlay/pages/HelpOnSlideShows(2f)900(20)Last(20)but(20)not(20)least(3a20)Running(20)your(20)presentation/cache/pagelinks + wiki/underlay/pages/HelpOnSlideShows(2f)900(20)Last(20)but(20)not(20)least(3a20)Running(20)your(20)presentation/current + wiki/underlay/pages/HelpOnSlideShows(2f)900(20)Last(20)but(20)not(20)least(3a20)Running(20)your(20)presentation/edit-log + wiki/underlay/pages/HelpOnSlideShows(2f)900(20)Last(20)but(20)not(20)least(3a20)Running(20)your(20)presentation/revisions/00000001 + wiki/underlay/pages/HelpOnSlideShows/cache/pagelinks + wiki/underlay/pages/HelpOnSlideShows/current + wiki/underlay/pages/HelpOnSlideShows/edit-log + wiki/underlay/pages/HelpOnSlideShows/revisions/00000001 + wiki/underlay/pages/HelpOnSmileys/cache/pagelinks + wiki/underlay/pages/HelpOnSmileys/current + wiki/underlay/pages/HelpOnSmileys/edit-log + wiki/underlay/pages/HelpOnSmileys/revisions/00000001 + wiki/underlay/pages/HelpOnSpam/cache/pagelinks + wiki/underlay/pages/HelpOnSpam/current + wiki/underlay/pages/HelpOnSpam/edit-log + wiki/underlay/pages/HelpOnSpam/revisions/00000001 + wiki/underlay/pages/HelpOnSpellCheck/cache/pagelinks + wiki/underlay/pages/HelpOnSpellCheck/current + wiki/underlay/pages/HelpOnSpellCheck/edit-log + wiki/underlay/pages/HelpOnSpellCheck/revisions/00000001 + wiki/underlay/pages/HelpOnSubscribing/cache/pagelinks + wiki/underlay/pages/HelpOnSubscribing/current + wiki/underlay/pages/HelpOnSubscribing/edit-log + wiki/underlay/pages/HelpOnSubscribing/revisions/00000001 + wiki/underlay/pages/HelpOnSuperUser/cache/pagelinks + wiki/underlay/pages/HelpOnSuperUser/current + wiki/underlay/pages/HelpOnSuperUser/edit-log + wiki/underlay/pages/HelpOnSuperUser/revisions/00000001 + wiki/underlay/pages/HelpOnSynchronisation/cache/pagelinks + wiki/underlay/pages/HelpOnSynchronisation/current + wiki/underlay/pages/HelpOnSynchronisation/edit-log + wiki/underlay/pages/HelpOnSynchronisation/revisions/00000001 + wiki/underlay/pages/HelpOnTables/cache/pagelinks + wiki/underlay/pages/HelpOnTables/current + wiki/underlay/pages/HelpOnTables/edit-log + wiki/underlay/pages/HelpOnTables/revisions/00000001 + wiki/underlay/pages/HelpOnTemplates/cache/pagelinks + wiki/underlay/pages/HelpOnTemplates/current + wiki/underlay/pages/HelpOnTemplates/edit-log + wiki/underlay/pages/HelpOnTemplates/revisions/00000001 + wiki/underlay/pages/HelpOnTextChas/cache/pagelinks + wiki/underlay/pages/HelpOnTextChas/current + wiki/underlay/pages/HelpOnTextChas/edit-log + wiki/underlay/pages/HelpOnTextChas/revisions/00000001 + wiki/underlay/pages/HelpOnThemes/cache/pagelinks + wiki/underlay/pages/HelpOnThemes/current + wiki/underlay/pages/HelpOnThemes/edit-log + wiki/underlay/pages/HelpOnThemes/revisions/00000001 + wiki/underlay/pages/HelpOnUpdating/cache/pagelinks + wiki/underlay/pages/HelpOnUpdating/current + wiki/underlay/pages/HelpOnUpdating/edit-log + wiki/underlay/pages/HelpOnUpdating/revisions/00000001 + wiki/underlay/pages/HelpOnUpdatingPython/cache/pagelinks + wiki/underlay/pages/HelpOnUpdatingPython/current + wiki/underlay/pages/HelpOnUpdatingPython/edit-log + wiki/underlay/pages/HelpOnUpdatingPython/revisions/00000001 + wiki/underlay/pages/HelpOnUserHandling/cache/pagelinks + wiki/underlay/pages/HelpOnUserHandling/current + wiki/underlay/pages/HelpOnUserHandling/edit-log + wiki/underlay/pages/HelpOnUserHandling/revisions/00000001 + wiki/underlay/pages/HelpOnUserPreferences/cache/pagelinks + wiki/underlay/pages/HelpOnUserPreferences/current + wiki/underlay/pages/HelpOnUserPreferences/edit-log + wiki/underlay/pages/HelpOnUserPreferences/revisions/00000001 + wiki/underlay/pages/HelpOnVariables/cache/pagelinks + wiki/underlay/pages/HelpOnVariables/current + wiki/underlay/pages/HelpOnVariables/edit-log + wiki/underlay/pages/HelpOnVariables/revisions/00000001 + wiki/underlay/pages/HelpOnXapian/cache/pagelinks + wiki/underlay/pages/HelpOnXapian/current + wiki/underlay/pages/HelpOnXapian/edit-log + wiki/underlay/pages/HelpOnXapian/revisions/00000001 + wiki/underlay/pages/HelpOnXmlPages/cache/pagelinks + wiki/underlay/pages/HelpOnXmlPages/current + wiki/underlay/pages/HelpOnXmlPages/edit-log + wiki/underlay/pages/HelpOnXmlPages/revisions/00000001 + wiki/underlay/pages/HelpTemplate/cache/pagelinks + wiki/underlay/pages/HelpTemplate/current + wiki/underlay/pages/HelpTemplate/edit-log + wiki/underlay/pages/HelpTemplate/revisions/00000001 + wiki/underlay/pages/HomepageGroupsTemplate/cache/pagelinks + wiki/underlay/pages/HomepageGroupsTemplate/current + wiki/underlay/pages/HomepageGroupsTemplate/edit-log + wiki/underlay/pages/HomepageGroupsTemplate/revisions/00000001 + wiki/underlay/pages/HomepagePrivatePageTemplate/cache/pagelinks + wiki/underlay/pages/HomepagePrivatePageTemplate/current + wiki/underlay/pages/HomepagePrivatePageTemplate/edit-log + wiki/underlay/pages/HomepagePrivatePageTemplate/revisions/00000001 + wiki/underlay/pages/HomepageReadPageTemplate/cache/pagelinks + wiki/underlay/pages/HomepageReadPageTemplate/current + wiki/underlay/pages/HomepageReadPageTemplate/edit-log + wiki/underlay/pages/HomepageReadPageTemplate/revisions/00000001 + wiki/underlay/pages/HomepageReadWritePageTemplate/cache/pagelinks + wiki/underlay/pages/HomepageReadWritePageTemplate/current + wiki/underlay/pages/HomepageReadWritePageTemplate/edit-log + wiki/underlay/pages/HomepageReadWritePageTemplate/revisions/00000001 + wiki/underlay/pages/HomepageTemplate/cache/pagelinks + wiki/underlay/pages/HomepageTemplate/current + wiki/underlay/pages/HomepageTemplate/edit-log + wiki/underlay/pages/HomepageTemplate/revisions/00000001 + wiki/underlay/pages/InterWiki/cache/pagelinks + wiki/underlay/pages/InterWiki/current + wiki/underlay/pages/InterWiki/edit-log + wiki/underlay/pages/InterWiki/revisions/00000001 + wiki/underlay/pages/LocalBadContent/cache/pagelinks + wiki/underlay/pages/LocalBadContent/current + wiki/underlay/pages/LocalBadContent/edit-log + wiki/underlay/pages/LocalBadContent/revisions/00000001 + wiki/underlay/pages/LocalSpellingWords/cache/pagelinks + wiki/underlay/pages/LocalSpellingWords/current + wiki/underlay/pages/LocalSpellingWords/edit-log + wiki/underlay/pages/LocalSpellingWords/revisions/00000001 + wiki/underlay/pages/MissingHomePage/cache/pagelinks + wiki/underlay/pages/MissingHomePage/current + wiki/underlay/pages/MissingHomePage/edit-log + wiki/underlay/pages/MissingHomePage/revisions/00000001 + wiki/underlay/pages/MissingPage/cache/pagelinks + wiki/underlay/pages/MissingPage/current + wiki/underlay/pages/MissingPage/edit-log + wiki/underlay/pages/MissingPage/revisions/00000001 + wiki/underlay/pages/MoinMoin(2f)InstallDocs/cache/pagelinks + wiki/underlay/pages/MoinMoin(2f)InstallDocs/current + wiki/underlay/pages/MoinMoin(2f)InstallDocs/edit-log + wiki/underlay/pages/MoinMoin(2f)InstallDocs/revisions/00000001 + wiki/underlay/pages/MoinMoin(2f)TextFormatting/cache/pagelinks + wiki/underlay/pages/MoinMoin(2f)TextFormatting/current + wiki/underlay/pages/MoinMoin(2f)TextFormatting/edit-log + wiki/underlay/pages/MoinMoin(2f)TextFormatting/revisions/00000001 + wiki/underlay/pages/MoinMoin/cache/pagelinks + wiki/underlay/pages/MoinMoin/current + wiki/underlay/pages/MoinMoin/edit-log + wiki/underlay/pages/MoinMoin/revisions/00000001 + wiki/underlay/pages/OrphanedPages/cache/pagelinks + wiki/underlay/pages/OrphanedPages/current + wiki/underlay/pages/OrphanedPages/edit-log + wiki/underlay/pages/OrphanedPages/revisions/00000001 + wiki/underlay/pages/PageHits/cache/pagelinks + wiki/underlay/pages/PageHits/current + wiki/underlay/pages/PageHits/edit-log + wiki/underlay/pages/PageHits/revisions/00000001 + wiki/underlay/pages/PageSize/cache/pagelinks + wiki/underlay/pages/PageSize/current + wiki/underlay/pages/PageSize/edit-log + wiki/underlay/pages/PageSize/revisions/00000001 + wiki/underlay/pages/PermissionDeniedPage/cache/pagelinks + wiki/underlay/pages/PermissionDeniedPage/current + wiki/underlay/pages/PermissionDeniedPage/edit-log + wiki/underlay/pages/PermissionDeniedPage/revisions/00000001 + wiki/underlay/pages/ProjectGroupsTemplate/cache/pagelinks + wiki/underlay/pages/ProjectGroupsTemplate/current + wiki/underlay/pages/ProjectGroupsTemplate/edit-log + wiki/underlay/pages/ProjectGroupsTemplate/revisions/00000001 + wiki/underlay/pages/ProjectTemplate/cache/pagelinks + wiki/underlay/pages/ProjectTemplate/current + wiki/underlay/pages/ProjectTemplate/edit-log + wiki/underlay/pages/ProjectTemplate/revisions/00000001 + wiki/underlay/pages/RandomPage/cache/pagelinks + wiki/underlay/pages/RandomPage/current + wiki/underlay/pages/RandomPage/edit-log + wiki/underlay/pages/RandomPage/revisions/00000001 + wiki/underlay/pages/RecentChanges/cache/pagelinks + wiki/underlay/pages/RecentChanges/current + wiki/underlay/pages/RecentChanges/edit-log + wiki/underlay/pages/RecentChanges/revisions/00000001 + wiki/underlay/pages/SiteNavigation/cache/pagelinks + wiki/underlay/pages/SiteNavigation/current + wiki/underlay/pages/SiteNavigation/edit-log + wiki/underlay/pages/SiteNavigation/revisions/00000001 + wiki/underlay/pages/SlideShowHandOutTemplate/cache/pagelinks + wiki/underlay/pages/SlideShowHandOutTemplate/current + wiki/underlay/pages/SlideShowHandOutTemplate/edit-log + wiki/underlay/pages/SlideShowHandOutTemplate/revisions/00000001 + wiki/underlay/pages/SlideShowTemplate/cache/pagelinks + wiki/underlay/pages/SlideShowTemplate/current + wiki/underlay/pages/SlideShowTemplate/edit-log + wiki/underlay/pages/SlideShowTemplate/revisions/00000001 + wiki/underlay/pages/SlideTemplate/cache/pagelinks + wiki/underlay/pages/SlideTemplate/current + wiki/underlay/pages/SlideTemplate/edit-log + wiki/underlay/pages/SlideTemplate/revisions/00000001 + wiki/underlay/pages/SyncJobTemplate/cache/pagelinks + wiki/underlay/pages/SyncJobTemplate/current + wiki/underlay/pages/SyncJobTemplate/edit-log + wiki/underlay/pages/SyncJobTemplate/revisions/00000001 + wiki/underlay/pages/SyntaxReference/cache/pagelinks + wiki/underlay/pages/SyntaxReference/current + wiki/underlay/pages/SyntaxReference/edit-log + wiki/underlay/pages/SyntaxReference/revisions/00000001 + wiki/underlay/pages/SystemAdmin/cache/pagelinks + wiki/underlay/pages/SystemAdmin/current + wiki/underlay/pages/SystemAdmin/edit-log + wiki/underlay/pages/SystemAdmin/revisions/00000001 + wiki/underlay/pages/SystemInfo/cache/pagelinks + wiki/underlay/pages/SystemInfo/current + wiki/underlay/pages/SystemInfo/edit-log + wiki/underlay/pages/SystemInfo/revisions/00000001 + wiki/underlay/pages/SystemPagesGroup/cache/pagelinks + wiki/underlay/pages/SystemPagesGroup/current + wiki/underlay/pages/SystemPagesGroup/edit-log + wiki/underlay/pages/SystemPagesGroup/revisions/00000001 + wiki/underlay/pages/SystemPagesInEnglishGroup/cache/pagelinks + wiki/underlay/pages/SystemPagesInEnglishGroup/current + wiki/underlay/pages/SystemPagesInEnglishGroup/edit-log + wiki/underlay/pages/SystemPagesInEnglishGroup/revisions/00000001 + wiki/underlay/pages/SystemPagesSetup/attachments/Bulgarian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Croatian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Danish.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Dutch.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Finnish.zip + wiki/underlay/pages/SystemPagesSetup/attachments/French.zip + wiki/underlay/pages/SystemPagesSetup/attachments/German.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Indonesian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Japanese.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Korean.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Latvian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Lithuanian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Mongolian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/NorwegianBokmal.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Polish.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Portuguese.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Romanian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Russian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Serbian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/SimplifiedChinese.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Slovenian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Spanish.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Swedish.zip + wiki/underlay/pages/SystemPagesSetup/attachments/TraditionalChinese.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Turkish.zip + wiki/underlay/pages/SystemPagesSetup/attachments/Ukrainian.zip + wiki/underlay/pages/SystemPagesSetup/attachments/all_languages.zip + wiki/underlay/pages/SystemPagesSetup/attachments/extra.zip + wiki/underlay/pages/SystemPagesSetup/cache/pagelinks + wiki/underlay/pages/SystemPagesSetup/current + wiki/underlay/pages/SystemPagesSetup/edit-log + wiki/underlay/pages/SystemPagesSetup/revisions/00000001 + wiki/underlay/pages/TitleIndex/cache/pagelinks + wiki/underlay/pages/TitleIndex/current + wiki/underlay/pages/TitleIndex/edit-log + wiki/underlay/pages/TitleIndex/revisions/00000001 + wiki/underlay/pages/WantedPages/cache/pagelinks + wiki/underlay/pages/WantedPages/current + wiki/underlay/pages/WantedPages/edit-log + wiki/underlay/pages/WantedPages/revisions/00000001 + wiki/underlay/pages/WhyWikiWorks/cache/pagelinks + wiki/underlay/pages/WhyWikiWorks/current + wiki/underlay/pages/WhyWikiWorks/edit-log + wiki/underlay/pages/WhyWikiWorks/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)01(20)What(20)is(20)a(20)MoinMoin(20)wiki(3f)/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)01(20)What(20)is(20)a(20)MoinMoin(20)wiki(3f)/current + wiki/underlay/pages/WikiCourse(2f)01(20)What(20)is(20)a(20)MoinMoin(20)wiki(3f)/edit-log + wiki/underlay/pages/WikiCourse(2f)01(20)What(20)is(20)a(20)MoinMoin(20)wiki(3f)/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)02(20)Finding(20)information/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)02(20)Finding(20)information/current + wiki/underlay/pages/WikiCourse(2f)02(20)Finding(20)information/edit-log + wiki/underlay/pages/WikiCourse(2f)02(20)Finding(20)information/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)03(20)Staying(20)up(20)to(20)date/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)03(20)Staying(20)up(20)to(20)date/current + wiki/underlay/pages/WikiCourse(2f)03(20)Staying(20)up(20)to(20)date/edit-log + wiki/underlay/pages/WikiCourse(2f)03(20)Staying(20)up(20)to(20)date/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)04(20)Creating(20)a(20)wiki(20)account/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)04(20)Creating(20)a(20)wiki(20)account/current + wiki/underlay/pages/WikiCourse(2f)04(20)Creating(20)a(20)wiki(20)account/edit-log + wiki/underlay/pages/WikiCourse(2f)04(20)Creating(20)a(20)wiki(20)account/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)05(20)User(20)preferences/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)05(20)User(20)preferences/current + wiki/underlay/pages/WikiCourse(2f)05(20)User(20)preferences/edit-log + wiki/underlay/pages/WikiCourse(2f)05(20)User(20)preferences/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)06(20)Your(20)own(20)wiki(20)homepage/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)06(20)Your(20)own(20)wiki(20)homepage/current + wiki/underlay/pages/WikiCourse(2f)06(20)Your(20)own(20)wiki(20)homepage/edit-log + wiki/underlay/pages/WikiCourse(2f)06(20)Your(20)own(20)wiki(20)homepage/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)07(20)The(20)text(20)editor/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)07(20)The(20)text(20)editor/current + wiki/underlay/pages/WikiCourse(2f)07(20)The(20)text(20)editor/edit-log + wiki/underlay/pages/WikiCourse(2f)07(20)The(20)text(20)editor/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)08(20)Hot(20)Keys/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)08(20)Hot(20)Keys/current + wiki/underlay/pages/WikiCourse(2f)08(20)Hot(20)Keys/edit-log + wiki/underlay/pages/WikiCourse(2f)08(20)Hot(20)Keys/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)10(20)Text(20)layout(20)with(20)wiki(20)markup/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)10(20)Text(20)layout(20)with(20)wiki(20)markup/current + wiki/underlay/pages/WikiCourse(2f)10(20)Text(20)layout(20)with(20)wiki(20)markup/edit-log + wiki/underlay/pages/WikiCourse(2f)10(20)Text(20)layout(20)with(20)wiki(20)markup/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)11(20)Paragraphs/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)11(20)Paragraphs/current + wiki/underlay/pages/WikiCourse(2f)11(20)Paragraphs/edit-log + wiki/underlay/pages/WikiCourse(2f)11(20)Paragraphs/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)12(20)Headlines/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)12(20)Headlines/current + wiki/underlay/pages/WikiCourse(2f)12(20)Headlines/edit-log + wiki/underlay/pages/WikiCourse(2f)12(20)Headlines/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)13(20)Lists/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)13(20)Lists/current + wiki/underlay/pages/WikiCourse(2f)13(20)Lists/edit-log + wiki/underlay/pages/WikiCourse(2f)13(20)Lists/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)14(20)Text(20)styles/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)14(20)Text(20)styles/current + wiki/underlay/pages/WikiCourse(2f)14(20)Text(20)styles/edit-log + wiki/underlay/pages/WikiCourse(2f)14(20)Text(20)styles/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)15(20)Tables/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)15(20)Tables/current + wiki/underlay/pages/WikiCourse(2f)15(20)Tables/edit-log + wiki/underlay/pages/WikiCourse(2f)15(20)Tables/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)16(20)Wiki(20)internal(20)links/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)16(20)Wiki(20)internal(20)links/current + wiki/underlay/pages/WikiCourse(2f)16(20)Wiki(20)internal(20)links/edit-log + wiki/underlay/pages/WikiCourse(2f)16(20)Wiki(20)internal(20)links/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)17(20)External(20)links/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)17(20)External(20)links/current + wiki/underlay/pages/WikiCourse(2f)17(20)External(20)links/edit-log + wiki/underlay/pages/WikiCourse(2f)17(20)External(20)links/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)18(20)Attachments/attachments/letter.txt + wiki/underlay/pages/WikiCourse(2f)18(20)Attachments/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)18(20)Attachments/current + wiki/underlay/pages/WikiCourse(2f)18(20)Attachments/edit-log + wiki/underlay/pages/WikiCourse(2f)18(20)Attachments/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)19(20)Symbols/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)19(20)Symbols/current + wiki/underlay/pages/WikiCourse(2f)19(20)Symbols/edit-log + wiki/underlay/pages/WikiCourse(2f)19(20)Symbols/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)20(20)Dynamic(20)content/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)20(20)Dynamic(20)content/current + wiki/underlay/pages/WikiCourse(2f)20(20)Dynamic(20)content/edit-log + wiki/underlay/pages/WikiCourse(2f)20(20)Dynamic(20)content/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)21(20)Macros/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)21(20)Macros/current + wiki/underlay/pages/WikiCourse(2f)21(20)Macros/edit-log + wiki/underlay/pages/WikiCourse(2f)21(20)Macros/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)22(20)Parsers/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)22(20)Parsers/current + wiki/underlay/pages/WikiCourse(2f)22(20)Parsers/edit-log + wiki/underlay/pages/WikiCourse(2f)22(20)Parsers/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)23(20)Actions/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)23(20)Actions/current + wiki/underlay/pages/WikiCourse(2f)23(20)Actions/edit-log + wiki/underlay/pages/WikiCourse(2f)23(20)Actions/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)30(20)The(20)graphical(20)editor/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)30(20)The(20)graphical(20)editor/current + wiki/underlay/pages/WikiCourse(2f)30(20)The(20)graphical(20)editor/edit-log + wiki/underlay/pages/WikiCourse(2f)30(20)The(20)graphical(20)editor/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)40(20)Creating(20)more(20)pages/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)40(20)Creating(20)more(20)pages/current + wiki/underlay/pages/WikiCourse(2f)40(20)Creating(20)more(20)pages/edit-log + wiki/underlay/pages/WikiCourse(2f)40(20)Creating(20)more(20)pages/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)50(20)Wiki(20)etiquette/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)50(20)Wiki(20)etiquette/current + wiki/underlay/pages/WikiCourse(2f)50(20)Wiki(20)etiquette/edit-log + wiki/underlay/pages/WikiCourse(2f)50(20)Wiki(20)etiquette/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)51(20)Applications/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)51(20)Applications/current + wiki/underlay/pages/WikiCourse(2f)51(20)Applications/edit-log + wiki/underlay/pages/WikiCourse(2f)51(20)Applications/revisions/00000001 + wiki/underlay/pages/WikiCourse(2f)52(20)Structure(20)in(20)the(20)wiki/cache/pagelinks + wiki/underlay/pages/WikiCourse(2f)52(20)Structure(20)in(20)the(20)wiki/current + wiki/underlay/pages/WikiCourse(2f)52(20)Structure(20)in(20)the(20)wiki/edit-log + wiki/underlay/pages/WikiCourse(2f)52(20)Structure(20)in(20)the(20)wiki/revisions/00000001 + wiki/underlay/pages/WikiCourse/cache/pagelinks + wiki/underlay/pages/WikiCourse/current + wiki/underlay/pages/WikiCourse/edit-log + wiki/underlay/pages/WikiCourse/revisions/00000001 + wiki/underlay/pages/WikiCourseHandOut/cache/pagelinks + wiki/underlay/pages/WikiCourseHandOut/current + wiki/underlay/pages/WikiCourseHandOut/edit-log + wiki/underlay/pages/WikiCourseHandOut/revisions/00000001 + wiki/underlay/pages/WikiHomePage/cache/pagelinks + wiki/underlay/pages/WikiHomePage/current + wiki/underlay/pages/WikiHomePage/edit-log + wiki/underlay/pages/WikiHomePage/revisions/00000001 + wiki/underlay/pages/WikiName/cache/pagelinks + wiki/underlay/pages/WikiName/current + wiki/underlay/pages/WikiName/edit-log + wiki/underlay/pages/WikiName/revisions/00000001 + wiki/underlay/pages/WikiSandBox/attachments/mytest.draw + wiki/underlay/pages/WikiSandBox/attachments/mytest.map + wiki/underlay/pages/WikiSandBox/attachments/mytest.png + wiki/underlay/pages/WikiSandBox/cache/pagelinks + wiki/underlay/pages/WikiSandBox/current + wiki/underlay/pages/WikiSandBox/edit-log + wiki/underlay/pages/WikiSandBox/revisions/00000001 + wiki/underlay/pages/WikiTipOfTheDay/cache/pagelinks + wiki/underlay/pages/WikiTipOfTheDay/current + wiki/underlay/pages/WikiTipOfTheDay/edit-log + wiki/underlay/pages/WikiTipOfTheDay/revisions/00000001 + wiki/underlay/pages/WikiWikiWeb/cache/pagelinks + wiki/underlay/pages/WikiWikiWeb/current + wiki/underlay/pages/WikiWikiWeb/edit-log + wiki/underlay/pages/WikiWikiWeb/revisions/00000001 + wiki/underlay/pages/WordIndex/cache/pagelinks + wiki/underlay/pages/WordIndex/current + wiki/underlay/pages/WordIndex/edit-log + wiki/underlay/pages/WordIndex/revisions/00000001 + wiki/underlay/pages/XsltVersion/cache/pagelinks + wiki/underlay/pages/XsltVersion/current + wiki/underlay/pages/XsltVersion/edit-log + wiki/underlay/pages/XsltVersion/revisions/00000001 + wikiconfig.py + wikiserverconfig.py + wikiserverlogging.conf +Copyright: *No copyright* +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/_documentation.html + wiki/htdocs/applets/FCKeditor/_samples/_plugins/findreplace/fckplugin.js + wiki/htdocs/applets/FCKeditor/_samples/_plugins/findreplace/find.html + wiki/htdocs/applets/FCKeditor/_samples/_plugins/findreplace/lang/en.js + wiki/htdocs/applets/FCKeditor/_samples/_plugins/findreplace/lang/fr.js + wiki/htdocs/applets/FCKeditor/_samples/_plugins/findreplace/lang/it.js + wiki/htdocs/applets/FCKeditor/_samples/_plugins/findreplace/replace.html + wiki/htdocs/applets/FCKeditor/_samples/_plugins/samples/fckplugin.js + wiki/htdocs/applets/FCKeditor/_samples/asp/sample01.asp + wiki/htdocs/applets/FCKeditor/_samples/asp/sample02.asp + wiki/htdocs/applets/FCKeditor/_samples/asp/sample03.asp + wiki/htdocs/applets/FCKeditor/_samples/asp/sample04.asp + wiki/htdocs/applets/FCKeditor/_samples/asp/sampleposteddata.asp + wiki/htdocs/applets/FCKeditor/_samples/cfm/sample01.cfm + wiki/htdocs/applets/FCKeditor/_samples/cfm/sample02_mx.cfm + wiki/htdocs/applets/FCKeditor/_samples/default.html + wiki/htdocs/applets/FCKeditor/_samples/html/sample01.html + wiki/htdocs/applets/FCKeditor/_samples/html/sample02.html + wiki/htdocs/applets/FCKeditor/_samples/html/sample03.html + wiki/htdocs/applets/FCKeditor/_samples/html/sample04.html + wiki/htdocs/applets/FCKeditor/_samples/html/sample05.html + wiki/htdocs/applets/FCKeditor/_samples/html/sample06.config.js + wiki/htdocs/applets/FCKeditor/_samples/html/sample06.html + wiki/htdocs/applets/FCKeditor/_samples/html/sample07.html + wiki/htdocs/applets/FCKeditor/_samples/html/sample08.html + wiki/htdocs/applets/FCKeditor/_samples/html/sample09.html + wiki/htdocs/applets/FCKeditor/_samples/html/sample10.html + wiki/htdocs/applets/FCKeditor/_samples/html/sampleposteddata.asp + wiki/htdocs/applets/FCKeditor/_samples/html/sampleposteddata.html + wiki/htdocs/applets/FCKeditor/_samples/lasso/sample01.lasso + wiki/htdocs/applets/FCKeditor/_samples/lasso/sample02.lasso + wiki/htdocs/applets/FCKeditor/_samples/lasso/sample03.lasso + wiki/htdocs/applets/FCKeditor/_samples/lasso/sample04.lasso + wiki/htdocs/applets/FCKeditor/_samples/lasso/sampleposteddata.lasso + wiki/htdocs/applets/FCKeditor/_samples/perl/sample01.cgi + wiki/htdocs/applets/FCKeditor/_samples/perl/sample02.cgi + wiki/htdocs/applets/FCKeditor/_samples/perl/sample03.cgi + wiki/htdocs/applets/FCKeditor/_samples/perl/sample04.cgi + wiki/htdocs/applets/FCKeditor/_samples/perl/sampleposteddata.cgi + wiki/htdocs/applets/FCKeditor/_samples/php/sample01.php + wiki/htdocs/applets/FCKeditor/_samples/php/sample02.php + wiki/htdocs/applets/FCKeditor/_samples/php/sample03.php + wiki/htdocs/applets/FCKeditor/_samples/php/sample04.php + wiki/htdocs/applets/FCKeditor/_samples/php/sampleposteddata.php + wiki/htdocs/applets/FCKeditor/_samples/py/sample01.py + wiki/htdocs/applets/FCKeditor/_samples/py/sampleposteddata.py + wiki/htdocs/applets/FCKeditor/_samples/sample.css + wiki/htdocs/applets/FCKeditor/_samples/sampleslist.html + wiki/htdocs/applets/FCKeditor/_testcases/001.html + wiki/htdocs/applets/FCKeditor/_testcases/002.html + wiki/htdocs/applets/FCKeditor/_testcases/003.html + wiki/htdocs/applets/FCKeditor/_testcases/004.html + wiki/htdocs/applets/FCKeditor/_testcases/005.html + wiki/htdocs/applets/FCKeditor/_testcases/006.html + wiki/htdocs/applets/FCKeditor/_testcases/007.html + wiki/htdocs/applets/FCKeditor/_testcases/008.html + wiki/htdocs/applets/FCKeditor/_testcases/009.html + wiki/htdocs/applets/FCKeditor/_testcases/010.html + wiki/htdocs/applets/FCKeditor/_testcases/sampleposteddata.asp + wiki/htdocs/applets/FCKeditor/_testcases/testcases.css + wiki/htdocs/applets/FCKeditor/_whatsnew.html + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckcontextmenugroup.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckcontextmenuitem.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckcontextmenuseparator.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckevents.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckpanel_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckpanel_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckplugin.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckspecialcombo.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckstyledef.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckstyledef_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckstyledef_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckstylesloader.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbar.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarbreak_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarbreak_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarbutton.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarfontformatcombo.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarfontscombo.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarfontsizecombo.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarpanelbutton.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarspecialcombo.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarstylecombo.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckxml_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/classes/fckxml_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/commandclasses/fck_othercommands.js + wiki/htdocs/applets/FCKeditor/editor/_source/commandclasses/fcknamedcommand.js + wiki/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js + wiki/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckpastewordcommand.js + wiki/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckstylecommand.js + wiki/htdocs/applets/FCKeditor/editor/_source/commandclasses/fcktablecommand.js + wiki/htdocs/applets/FCKeditor/editor/_source/commandclasses/fcktextcolorcommand.js + wiki/htdocs/applets/FCKeditor/editor/_source/globals/fck_constants.js + wiki/htdocs/applets/FCKeditor/editor/_source/globals/fckeditorapi.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fck.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fck_1.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fck_1_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fck_1_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fck_2.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fck_2_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fck_2_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fck_last.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fck_onload.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckbrowserinfo.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckcodeformatter.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckcommands.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckconfig.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckcontextmenu.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckcoreextensions.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckdebug.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckdialog.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckdialog_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckdialog_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fcklanguagemanager.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fcknamespace.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckplugins.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckregexlib.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckscriptloader.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckselection.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckselection_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckselection_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fcktablehandler.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fcktablehandler_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fcktablehandler_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fcktoolbaritems.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fcktoolbarset.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fcktools.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fcktools_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fcktools_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckurlparams.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckxhtml.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckxhtml_gecko.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckxhtml_ie.js + wiki/htdocs/applets/FCKeditor/editor/_source/internals/fckxhtmlentities.js + wiki/htdocs/applets/FCKeditor/editor/css/fck_editorarea.css + wiki/htdocs/applets/FCKeditor/editor/css/fck_internal.css + wiki/htdocs/applets/FCKeditor/editor/css/fck_showtableborders_gecko.css + wiki/htdocs/applets/FCKeditor/editor/dialog/common/fck_dialog_common.css + wiki/htdocs/applets/FCKeditor/editor/dialog/common/fck_dialog_common.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_about.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_anchor.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_button.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_checkbox.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_colorselector.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_docprops.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_docprops/fck_document_preview.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_find.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_flash.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_flash/fck_flash.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_flash/fck_flash_preview.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_form.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_hiddenfield.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_image.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_image/fck_image.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_image/fck_image_preview.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_link.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_link/fck_link.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_listprop.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_paste.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_radiobutton.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_replace.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_select.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_select/fck_select.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_smiley.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_source.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_specialchar.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_table.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_tablecell.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_template.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_textarea.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_textfield.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_universalkey.html + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_universalkey/data.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_universalkey/diacritic.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_universalkey/dialogue.js + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_universalkey/fck_universalkey.css + wiki/htdocs/applets/FCKeditor/editor/dialog/fck_universalkey/multihexa.js + wiki/htdocs/applets/FCKeditor/editor/fckdebug.html + wiki/htdocs/applets/FCKeditor/editor/fckdialog.html + wiki/htdocs/applets/FCKeditor/editor/fckeditor.html + wiki/htdocs/applets/FCKeditor/editor/fckeditor.original.html + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/browser.css + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/browser.html + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/asp/basexml.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/asp/class_upload.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/asp/commands.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/asp/config.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/asp/connector.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/asp/io.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/asp/util.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/aspx/connector.aspx + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/cfm/connector.cfm + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/lasso/config.lasso + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/lasso/connector.lasso + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/perl/basexml.pl + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/perl/commands.pl + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/perl/connector.cgi + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/perl/io.pl + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/perl/upload_fck.pl + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/perl/util.pl + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/php/basexml.php + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/php/commands.php + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/php/config.php + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/php/io.php + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/php/util.php + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/py/connector.py + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/test.html + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmactualfolder.html + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmcreatefolder.html + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmfolders.html + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmresourceslist.html + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmresourcetype.html + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmupload.html + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/js/common.js + wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/js/fckxml.js + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/asp/class_upload.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/asp/config.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/asp/io.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/asp/upload.asp + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/aspx/upload.aspx + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/cfm/config.cfm + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/lasso/config.lasso + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/lasso/upload.lasso + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/php/config.php + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/php/upload.php + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/php/util.php + wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/test.html + wiki/htdocs/applets/FCKeditor/editor/js/fck_startup.js + wiki/htdocs/applets/FCKeditor/editor/lang/_translationstatus.txt + wiki/htdocs/applets/FCKeditor/editor/lang/ar.js + wiki/htdocs/applets/FCKeditor/editor/lang/bg.js + wiki/htdocs/applets/FCKeditor/editor/lang/bs.js + wiki/htdocs/applets/FCKeditor/editor/lang/ca.js + wiki/htdocs/applets/FCKeditor/editor/lang/cs.js + wiki/htdocs/applets/FCKeditor/editor/lang/da.js + wiki/htdocs/applets/FCKeditor/editor/lang/de.js + wiki/htdocs/applets/FCKeditor/editor/lang/el.js + wiki/htdocs/applets/FCKeditor/editor/lang/en-au.js + wiki/htdocs/applets/FCKeditor/editor/lang/en-uk.js + wiki/htdocs/applets/FCKeditor/editor/lang/en.js + wiki/htdocs/applets/FCKeditor/editor/lang/eo.js + wiki/htdocs/applets/FCKeditor/editor/lang/es.js + wiki/htdocs/applets/FCKeditor/editor/lang/et.js + wiki/htdocs/applets/FCKeditor/editor/lang/eu.js + wiki/htdocs/applets/FCKeditor/editor/lang/fa.js + wiki/htdocs/applets/FCKeditor/editor/lang/fcklanguagemanager.js + wiki/htdocs/applets/FCKeditor/editor/lang/fi.js + wiki/htdocs/applets/FCKeditor/editor/lang/fo.js + wiki/htdocs/applets/FCKeditor/editor/lang/fr.js + wiki/htdocs/applets/FCKeditor/editor/lang/gl.js + wiki/htdocs/applets/FCKeditor/editor/lang/he.js + wiki/htdocs/applets/FCKeditor/editor/lang/hi.js + wiki/htdocs/applets/FCKeditor/editor/lang/hr.js + wiki/htdocs/applets/FCKeditor/editor/lang/hu.js + wiki/htdocs/applets/FCKeditor/editor/lang/it.js + wiki/htdocs/applets/FCKeditor/editor/lang/ja.js + wiki/htdocs/applets/FCKeditor/editor/lang/ko.js + wiki/htdocs/applets/FCKeditor/editor/lang/lt.js + wiki/htdocs/applets/FCKeditor/editor/lang/lv.js + wiki/htdocs/applets/FCKeditor/editor/lang/mn.js + wiki/htdocs/applets/FCKeditor/editor/lang/ms.js + wiki/htdocs/applets/FCKeditor/editor/lang/nl.js + wiki/htdocs/applets/FCKeditor/editor/lang/no.js + wiki/htdocs/applets/FCKeditor/editor/lang/pl.js + wiki/htdocs/applets/FCKeditor/editor/lang/pt-br.js + wiki/htdocs/applets/FCKeditor/editor/lang/pt.js + wiki/htdocs/applets/FCKeditor/editor/lang/ro.js + wiki/htdocs/applets/FCKeditor/editor/lang/ru.js + wiki/htdocs/applets/FCKeditor/editor/lang/sk.js + wiki/htdocs/applets/FCKeditor/editor/lang/sl.js + wiki/htdocs/applets/FCKeditor/editor/lang/sr-latn.js + wiki/htdocs/applets/FCKeditor/editor/lang/sr.js + wiki/htdocs/applets/FCKeditor/editor/lang/sv.js + wiki/htdocs/applets/FCKeditor/editor/lang/th.js + wiki/htdocs/applets/FCKeditor/editor/lang/tr.js + wiki/htdocs/applets/FCKeditor/editor/lang/uk.js + wiki/htdocs/applets/FCKeditor/editor/lang/vi.js + wiki/htdocs/applets/FCKeditor/editor/lang/zh-cn.js + wiki/htdocs/applets/FCKeditor/editor/lang/zh.js + wiki/htdocs/applets/FCKeditor/editor/plugins/placeholder/fck_placeholder.html + wiki/htdocs/applets/FCKeditor/editor/plugins/placeholder/fckplugin.js + wiki/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/en.js + wiki/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/fr.js + wiki/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/it.js + wiki/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/pl.js + wiki/htdocs/applets/FCKeditor/editor/plugins/simplecommands/fckplugin.js + wiki/htdocs/applets/FCKeditor/editor/plugins/tablecommands/fckplugin.js + wiki/htdocs/applets/FCKeditor/editor/skins/default/fck_contextmenu.css + wiki/htdocs/applets/FCKeditor/editor/skins/default/fck_dialog.css + wiki/htdocs/applets/FCKeditor/editor/skins/default/fck_editor.css + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/fck_contextmenu.css + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/fck_dialog.css + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/fck_editor.css + wiki/htdocs/applets/FCKeditor/editor/skins/silver/fck_contextmenu.css + wiki/htdocs/applets/FCKeditor/editor/skins/silver/fck_dialog.css + wiki/htdocs/applets/FCKeditor/editor/skins/silver/fck_editor.css + wiki/htdocs/applets/FCKeditor/fckconfig.js + wiki/htdocs/applets/FCKeditor/fckeditor.asp + wiki/htdocs/applets/FCKeditor/fckeditor.cfc + wiki/htdocs/applets/FCKeditor/fckeditor.cfm + wiki/htdocs/applets/FCKeditor/fckeditor.js + wiki/htdocs/applets/FCKeditor/fckeditor.lasso + wiki/htdocs/applets/FCKeditor/fckeditor.php + wiki/htdocs/applets/FCKeditor/fckeditor.pl + wiki/htdocs/applets/FCKeditor/fckeditor.py + wiki/htdocs/applets/FCKeditor/fckstyles.xml + wiki/htdocs/applets/FCKeditor/htaccess.txt +Copyright: 2003-2005, Frederico Caldeira Knabben +License: UNKNOWN + +Files: MoinMoin/action/sitemap.py + MoinMoin/auth/http.py + MoinMoin/converter/__init__.py + MoinMoin/filter/application_msword.py + MoinMoin/filter/application_octet_stream.py + MoinMoin/filter/application_pdf.py + MoinMoin/filter/application_vnd_ms_excel.py + MoinMoin/filter/application_vnd_oasis_opendocument.py + MoinMoin/filter/application_vnd_oasis_opendocument_presentation.py + MoinMoin/filter/application_vnd_oasis_opendocument_spreadsheet.py + MoinMoin/filter/application_vnd_oasis_opendocument_text.py + MoinMoin/filter/application_vnd_sun_xml.py + MoinMoin/filter/application_vnd_sun_xml_calc.py + MoinMoin/filter/application_vnd_sun_xml_writer.py + MoinMoin/filter/audio.py + MoinMoin/filter/image.py + MoinMoin/filter/image_jpeg.py + MoinMoin/filter/text.py + MoinMoin/filter/text_html.py + MoinMoin/filter/text_rtf.py + MoinMoin/filter/text_xml.py + MoinMoin/filter/video.py + MoinMoin/i18n/tools/__init__.py + MoinMoin/logfile/editlog.py + MoinMoin/mail/__init__.py + MoinMoin/script/account/__init__.py + MoinMoin/script/account/create.py + MoinMoin/script/account/disable.py + MoinMoin/script/account/resetpw.py + MoinMoin/script/cli/__init__.py + MoinMoin/script/cli/show.py + MoinMoin/script/export/__init__.py + MoinMoin/script/import/__init__.py + MoinMoin/script/index/__init__.py + MoinMoin/script/index/build.py + MoinMoin/script/maint/__init__.py + MoinMoin/script/migration/1050300.py + MoinMoin/script/migration/1050301.py + MoinMoin/script/migration/1050400.py + MoinMoin/script/migration/__init__.py + MoinMoin/script/migration/data.py + MoinMoin/script/moin.py + MoinMoin/script/xmlrpc/remote.py + MoinMoin/script/xmlrpc/retrieve.py + MoinMoin/server/server_cgi.py + MoinMoin/server/server_modpython.py + MoinMoin/util/diff_text.py + MoinMoin/xmlrpc/RemoteScript.py +Copyright: 2006, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/action/__init__.py + MoinMoin/action/chart.py + MoinMoin/action/diff.py + MoinMoin/action/dumpform.py + MoinMoin/action/edit.py + MoinMoin/action/info.py + MoinMoin/action/quicklink.py + MoinMoin/action/quickunlink.py + MoinMoin/action/refresh.py + MoinMoin/action/revert.py + MoinMoin/action/subscribe.py + MoinMoin/action/unsubscribe.py + MoinMoin/config/multiconfig.py + MoinMoin/macro/FullSearch.py + MoinMoin/macro/Include.py + MoinMoin/macro/RecentChanges.py + MoinMoin/macro/__init__.py + MoinMoin/security/__init__.py + MoinMoin/user.py + MoinMoin/wikiutil.py +Copyright: 2000-2004, Juergen Hermann +License: UNKNOWN + +Files: wiki/htdocs/classic/img/idea.png + wiki/htdocs/classic/img/redface.png + wiki/htdocs/classic/img/sad.png + wiki/htdocs/classic/img/smile.png + wiki/htdocs/classic/img/smile2.png + wiki/htdocs/classic/img/smile3.png + wiki/htdocs/modern/img/idea.png + wiki/htdocs/modern/img/redface.png + wiki/htdocs/modern/img/sad.png + wiki/htdocs/modern/img/smile.png + wiki/htdocs/modern/img/smile2.png + wiki/htdocs/modern/img/smile3.png + wiki/htdocs/rightsidebar/img/idea.png + wiki/htdocs/rightsidebar/img/redface.png + wiki/htdocs/rightsidebar/img/sad.png + wiki/htdocs/rightsidebar/img/smile.png + wiki/htdocs/rightsidebar/img/smile2.png + wiki/htdocs/rightsidebar/img/smile3.png +Copyright: 1999, Philipp Esselbach (ple@gmx.net) +License: UNKNOWN + +Files: MoinMoin/action/_tests/test_attachfile.py + MoinMoin/events/__init__.py + MoinMoin/events/_tests/test_events.py + MoinMoin/events/emailnotify.py + MoinMoin/events/jabbernotify.py + MoinMoin/events/notification.py + MoinMoin/xmlrpc/_tests/test_xmlrpc.py + jabberbot/__init__.py + jabberbot/_tests/test_xmlrpcbot.py + jabberbot/_tests/test_xmppbot.py + jabberbot/bot.py + jabberbot/commands.py + jabberbot/config.py + jabberbot/i18n.py + jabberbot/oob.py + jabberbot/xmlrpcbot.py + jabberbot/xmppbot.py +Copyright: 2007, by Karol Nowak +License: UNKNOWN + +Files: MoinMoin/_tests/_test_template.py + MoinMoin/_tests/test_PageEditor.py + MoinMoin/_tests/test_user.py + MoinMoin/_tests/test_wikidicts.py + MoinMoin/_tests/test_wikiutil.py + MoinMoin/macro/_tests/test_macro.py + MoinMoin/mail/_tests/test_sendmail.py + MoinMoin/parser/_tests/test_text_creole.py + MoinMoin/parser/_tests/test_text_moin_wiki.py + MoinMoin/request/_tests/test_request.py + MoinMoin/security/_tests/test_security.py + MoinMoin/util/_tests/test_web.py + MoinMoin/widget/_tests/test_html.py +Copyright: 2003-2004, by Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/_tests/test_wikisync.py + MoinMoin/action/SyncPages.py + MoinMoin/action/showtags.py + MoinMoin/action/thread_monitor.py + MoinMoin/macro/GetText2.py + MoinMoin/mail/mailimport.py + MoinMoin/parser/text_html.py + MoinMoin/script/xmlrpc/__init__.py + MoinMoin/script/xmlrpc/mailimport.py + MoinMoin/util/rpc_aggregator.py + MoinMoin/wikisync.py + MoinMoin/xmlrpc/ProcessMail.py +Copyright: 2006, MoinMoin:AlexanderSchremmer +License: UNKNOWN + +Files: MoinMoin/_tests/test_Page.py + MoinMoin/action/pollsistersites.py + MoinMoin/action/sisterpages.py + MoinMoin/formatter/text_html_percent.py + MoinMoin/logfile/eventlog.py + MoinMoin/macro/InterWiki.py + MoinMoin/macro/PageCount.py + MoinMoin/script/migration/_tests/test_conv160_wiki.py + MoinMoin/server/server_fastcgi.py + MoinMoin/util/_tests/test_diff3.py + MoinMoin/util/_tests/test_diff_text.py + MoinMoin/util/_tests/test_util.py +Copyright: 2007, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/_tests/ldap_testbase.py + MoinMoin/script/migration/1060000.py + MoinMoin/script/migration/1060100.py + MoinMoin/script/migration/1060200.py + MoinMoin/script/migration/1060300.py + MoinMoin/script/migration/1060400.py + MoinMoin/script/migration/1060500.py + MoinMoin/script/migration/1060600.py + MoinMoin/script/migration/1060700.py + MoinMoin/script/migration/1060800.py + MoinMoin/script/migration/1060900.py + MoinMoin/script/migration/1070000.py +Copyright: 2008, by Thomas Waldmann +License: UNKNOWN + +Files: MoinMoin/macro/FootNote.py + MoinMoin/macro/PageSize.py + MoinMoin/util/dataset.py + MoinMoin/util/diff_html.py + MoinMoin/util/filesys.py + MoinMoin/util/pysupport.py + MoinMoin/util/web.py + MoinMoin/widget/__init__.py + MoinMoin/widget/base.py + MoinMoin/widget/browser.py + MoinMoin/wikixml/marshal.py +Copyright: 2002, Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/macro/SystemAdmin.py + MoinMoin/parser/text_xslt.py + MoinMoin/request/__init__.py + MoinMoin/request/request_cli.py + MoinMoin/request/request_fcgi.py + MoinMoin/request/request_modpython.py + MoinMoin/request/request_standalone.py + MoinMoin/request/request_twisted.py + MoinMoin/request/request_wsgi.py + MoinMoin/util/clock.py +Copyright: 2001-2003, Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/action/newaccount.py + MoinMoin/action/recoverpass.py + MoinMoin/auth/botbouncer.py + MoinMoin/auth/openidrp.py + MoinMoin/macro/TableOfContents.py + MoinMoin/script/migration/_conv160_wiki.py + MoinMoin/script/xmlrpc/write.py + MoinMoin/session.py + MoinMoin/userprefs/oid.py + MoinMoin/userprefs/oidserv.py +Copyright: 2007, MoinMoin:JohannesBerg +License: UNKNOWN + +Files: MoinMoin/action/links.py + MoinMoin/action/titleindex.py + MoinMoin/macro/AbandonedPages.py + MoinMoin/macro/GetText.py + MoinMoin/macro/OrphanedPages.py + MoinMoin/macro/TeudView.py + MoinMoin/macro/WantedPages.py + MoinMoin/parser/text_python.py + MoinMoin/wikixml/util.py +Copyright: 2001, Juergen Hermann +License: UNKNOWN + +Files: wiki/htdocs/classic/css/common.css + wiki/htdocs/classic/css/print.css + wiki/htdocs/classic/css/screen.css + wiki/htdocs/modern/css/common.css + wiki/htdocs/modern/css/print.css + wiki/htdocs/modern/css/screen.css + wiki/htdocs/rightsidebar/css/common.css + wiki/htdocs/rightsidebar/css/print.css + wiki/htdocs/rightsidebar/css/screen.css +Copyright: 2001-2003, by Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/i18n/__init__.py + MoinMoin/support/__init__.py + MoinMoin/userform/__init__.py + MoinMoin/userform/admin.py + MoinMoin/userform/login.py + MoinMoin/userprefs/changepass.py + MoinMoin/userprefs/notification.py + MoinMoin/userprefs/prefs.py + MoinMoin/userprefs/suid.py +Copyright: 2001-2004, Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/macro/RandomQuote.py + MoinMoin/macro/StatsChart.py + MoinMoin/script/export/dump.py + MoinMoin/script/export/package.py + MoinMoin/stats/__init__.py + MoinMoin/stats/chart.py + MoinMoin/stats/hitcounts.py + MoinMoin/stats/pagesize.py + MoinMoin/stats/useragents.py +Copyright: 2002-2004, Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/parser/text_irssi.py + MoinMoin/script/old/migration/12_to_13_mig01.py + MoinMoin/script/old/migration/12_to_13_mig02.py + MoinMoin/script/old/migration/12_to_13_mig03.py + MoinMoin/script/old/migration/12_to_13_mig04.py + MoinMoin/script/old/migration/12_to_13_mig06.py + MoinMoin/script/old/migration/12_to_13_mig07.py + MoinMoin/script/old/migration/12_to_13_mig08.py + MoinMoin/script/old/migration/12_to_13_mig09.py +Copyright: 2004, Thomas Waldmann +License: UNKNOWN + +Files: MoinMoin/action/_tests/test_cache.py + MoinMoin/action/cache.py + MoinMoin/action/userprofile.py + MoinMoin/auth/_tests/test_auth.py + MoinMoin/auth/_tests/test_ldap_login.py + MoinMoin/log.py + MoinMoin/script/migration/1069999.py + MoinMoin/util/_tests/test_filesys.py + wiki/server/moin.fcg +Copyright: 2008, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/Page.py + MoinMoin/PageEditor.py + MoinMoin/action/bookmark.py + MoinMoin/formatter/__init__.py + MoinMoin/formatter/dom_xml.py + MoinMoin/formatter/text_html.py + MoinMoin/formatter/text_python.py + tests/wikiconfig.py +Copyright: 2000-2004, by Juergen Hermann +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/_samples/afp/sample01.afp + wiki/htdocs/applets/FCKeditor/_samples/afp/sampleposteddata.afp + wiki/htdocs/applets/FCKeditor/fckeditor.afp + wiki/htdocs/applets/moinFCKplugins/moinattachment/fck_attachment.js + wiki/htdocs/applets/moinFCKplugins/moinformat/fckplugin.js + wiki/htdocs/applets/moinFCKplugins/moinimage/fck_image.js + wiki/htdocs/applets/moinFCKplugins/moinlink/fck_link.js +Copyright: 2003-2004, Frederico Caldeira Knabben +License: UNKNOWN + +Files: MoinMoin/auth/ldap_login.py + MoinMoin/auth/log.py + MoinMoin/auth/smb_mount.py + MoinMoin/filter/__init__.py + MoinMoin/macro/SystemInfo.py + MoinMoin/search/Xapian.py +Copyright: 2006-2008, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/macro/_tests/test_EmbedObject.py + MoinMoin/macro/_tests/test_FootNote.py + MoinMoin/macro/_tests/test_PageHits.py + MoinMoin/macro/_tests/test_StatsChart.py + MoinMoin/script/maint/makecache.py + MoinMoin/theme/_tests/test_editbar_actions.py +Copyright: 2008, MoinMoin:ReimarBauer +License: UNKNOWN + +Files: MoinMoin/formatter/text_plain.py + MoinMoin/formatter/text_xml.py + MoinMoin/parser/text.py + MoinMoin/parser/text_moin_wiki.py + MoinMoin/script/__init__.py +Copyright: 2000-2002, Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/macro/Navigation.py + MoinMoin/macro/ShowSmileys.py + MoinMoin/mail/sendmail.py + MoinMoin/util/timefuncs.py + MoinMoin/widget/html.py +Copyright: 2003, Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/_tests/test_packages.py + MoinMoin/action/PackagePages.py + MoinMoin/action/RenderAsDocbook.py + MoinMoin/macro/FullSearchCached.py + MoinMoin/packages.py +Copyright: 2005, MoinMoin:AlexanderSchremmer +License: UNKNOWN + +Files: MoinMoin/_tests/test_caching.py + MoinMoin/config/_tests/test_multiconfig.py + MoinMoin/events/wikidictsrescan.py + MoinMoin/filter/_tests/test_filter.py + MoinMoin/security/textcha.py +Copyright: 2007, by MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/search/__init__.py + MoinMoin/search/builtin.py + MoinMoin/search/queryparser.py + MoinMoin/search/results.py +Copyright: 2005, MoinMoin:FlorianFesti +License: UNKNOWN + +Files: MoinMoin/action/MyPages.py + MoinMoin/action/fckdialog.py + MoinMoin/security/autoadmin.py + MoinMoin/xmlrpc/UpdateGroup.py +Copyright: 2005-2006, Bastian Blank, Florian Festi, Thomas Waldmann +License: UNKNOWN + +Files: MoinMoin/script/migration/1050500.py + MoinMoin/script/migration/1050600.py + MoinMoin/script/migration/1050700.py + MoinMoin/script/migration/1070100.py +Copyright: 2006, by Thomas Waldmann +License: UNKNOWN + +Files: MoinMoin/action/CopyPage.py + MoinMoin/action/Save.py + MoinMoin/macro/_tests/test_Action.py + MoinMoin/macro/_tests/test_GetVal.py +Copyright: 2007, MoinMoin:ReimarBauer +License: UNKNOWN + +Files: MoinMoin/support/parsedatetime/__init__.py + MoinMoin/support/parsedatetime/parsedatetime_consts.py + MoinMoin/support/parsedatetime/pdtc.py +Copyright: 2004-2006, Mike Taylor, All rights reserved +License: Apache (v2.0) + +Files: wiki/htdocs/classic/img/moin-new.png + wiki/htdocs/modern/img/moin-new.png + wiki/htdocs/rightsidebar/img/moin-new.png +Copyright: 1996, Leo Doerr @ www.silverpoint.com+ +License: UNKNOWN + +Files: wiki/htdocs/classic/css/projection.css + wiki/htdocs/modern/css/projection.css + wiki/htdocs/rightsidebar/css/projection.css +Copyright: 2003, by Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/script/old/__init__.py + MoinMoin/script/old/migration/__init__.py + MoinMoin/script/old/xmlrpc-tools/__init__.py +Copyright: 2004, by Thomas Waldmann +License: UNKNOWN + +Files: MoinMoin/macro/Verbatim.py + MoinMoin/xmlrpc/HelloWorld.py + MoinMoin/xmlrpc/WhoAmI.py +Copyright: 2005, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/config/__init__.py + MoinMoin/script/maint/cleanpage.py + MoinMoin/script/maint/reducewiki.py +Copyright: 2005-2006, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/script/migration/1050800.py + MoinMoin/script/migration/1059999.py + MoinMoin/script/migration/_conv160.py +Copyright: 2007, by Thomas Waldmann +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/skins/default/toolbar/templates.gif + wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/templates.gif + wiki/htdocs/applets/FCKeditor/editor/skins/silver/toolbar/templates.gif +Copyright: DHB+@`Hr>(6L=NE +License: UNKNOWN + +Files: MoinMoin/i18n/MoinMoin.pot + MoinMoin/i18n/jabberbot/JabberBot.pot + MoinMoin/i18n/jabberbot/pl.JabberBot.po +Copyright: YEAR THE PACKAGE'S HOLDER +License: UNKNOWN + +Files: MoinMoin/support/parsedatetime/parsedatetime.py + MoinMoin/support/parsedatetime/pdt.py +Copyright: 2002-2006, Mark Pilgrim, All rights reserved + 2004-2006, Mike Taylor, All rights reserved +License: Apache (v2.0) + +Files: contrib/TWikiDrawPlugin/packages/com/keypoint/PngEncoder.java + contrib/TWikiDrawPlugin/packages/com/keypoint/PngEncoderIndexed.java +Copyright: *No copyright* +License: LGPL-2.1+ + +Files: wiki/underlay/pages/HelpContents/revisions/00000001 + wiki/underlay/pages/HelpOnConfiguration(2f)SecurityPolicy/revisions/00000001 +Copyright: *No copyright* +License: UNKNOWN (GENERATED FILE) + +Files: MoinMoin/i18n/ar.MoinMoin.po + MoinMoin/i18n/he.MoinMoin.po +Copyright: " +License: UNKNOWN + +Files: contrib/TWikiDrawPlugin/src/CH/ifa/draw/twiki/TWikiDraw.java + contrib/TWikiDrawPlugin/src/CH/ifa/draw/twiki/TWikiFrame.java +Copyright: 2000, by Peter Thoeny, Peter@Thoeny.com + 2001, Motorola - All Rights Reserved +License: UNKNOWN + +Files: MoinMoin/action/LikePages.py + MoinMoin/action/SpellCheck.py +Copyright: 2001, Richard Jones +License: UNKNOWN + +Files: MoinMoin/parser/text_cplusplus.py + MoinMoin/parser/text_java.py +Copyright: 2002, Taesu Pyo +License: UNKNOWN + +Files: MoinMoin/script/account/check.py + MoinMoin/theme/classic.py +Copyright: 2003-2006, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/theme/__init__.py + MoinMoin/xmlrpc/__init__.py +Copyright: 2003-2008, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/macro/AttachInfo.py + MoinMoin/macro/AttachList.py +Copyright: 2004, Jacob Cohen, Nigel Metheringham +License: UNKNOWN + +Files: MoinMoin/macro/EditTemplates.py + MoinMoin/macro/LikePages.py +Copyright: 2004, Johannes Berg +License: UNKNOWN + +Files: MoinMoin/util/chartypes_create.py + MoinMoin/xmlrpc/putClientInfo.py +Copyright: 2004, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/macro/EditedSystemPages.py + MoinMoin/widget/dialog.py +Copyright: 2004, Nir Soffer +License: UNKNOWN + +Files: MoinMoin/server/__init__.py + MoinMoin/util/profile.py +Copyright: 2004, Nir Soffer +License: UNKNOWN + +Files: MoinMoin/action/newpage.py + MoinMoin/macro/NewPage.py +Copyright: 2004, Vito Miliano (vito_moinnewpagewithtemplate@perilith.com) +License: UNKNOWN + +Files: MoinMoin/error.py + MoinMoin/failure.py +Copyright: 2004-2005, Nir Soffer +License: UNKNOWN + +Files: MoinMoin/auth/_PHPsessionParser.py + MoinMoin/auth/php_session.py +Copyright: 2005, MoinMoin:AlexanderSchremmer (Thanks to Spreadshirt) +License: UNKNOWN + +Files: MoinMoin/script/old/migration/12_to_13_mig10.py + MoinMoin/script/old/migration/12_to_13_mig11.py +Copyright: 2005, Thomas Waldmann +License: UNKNOWN + +Files: MoinMoin/auth/interwiki.py + MoinMoin/util/_tests/test_lock.py +Copyright: 2005, by Florian Festi +License: UNKNOWN + +Files: MoinMoin/formatter/_tests/test_formatter.py + contrib/gettext_parser/gettext.py +Copyright: 2005, by MoinMoin:AlexanderSchremmer +License: UNKNOWN + +Files: MoinMoin/i18n/tools/recode.py + MoinMoin/script/old/print_stats.py +Copyright: 2005, by Thomas Waldmann (MoinMoin:ThomasWaldmann) +License: UNKNOWN + +Files: MoinMoin/action/login.py + MoinMoin/action/logout.py +Copyright: 2005-2006, Radomirs Cirskis +License: UNKNOWN + +Files: MoinMoin/logfile/__init__.py + MoinMoin/script/maint/cleancache.py +Copyright: 2005-2007, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/action/DeletePage.py + MoinMoin/action/rss_rc.py +Copyright: 2006-2007, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: wiki/server/wikiserver.py + wikiserver.py +Copyright: 2007, MoinMoin:ForrestVoight +License: UNKNOWN + +Files: MoinMoin/_tests/__init__.py + MoinMoin/events/xapian_index.py +Copyright: 2007, MoinMoin:KarolNowak +License: UNKNOWN + +Files: MoinMoin/parser/_creole.py + MoinMoin/parser/text_creole.py +Copyright: 2007, MoinMoin:RadomirDopieralski (creole 0.5 implementation) +License: UNKNOWN + +Files: MoinMoin/action/Load.py + MoinMoin/macro/_tests/test_Hits.py +Copyright: 2007-2008, MoinMoin:ReimarBauer +License: UNKNOWN + +Files: MoinMoin/script/server/__init__.py + MoinMoin/script/server/standalone.py +Copyright: 2008, MoinMoin:ForrestVoight +License: UNKNOWN + +Files: wiki/server/moin + wiki/server/moin.wsgi +Copyright: 2008, by MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/js/fckeditorcode_gecko_1.js + wiki/htdocs/applets/FCKeditor/editor/js/fckeditorcode_ie_1.js +Copyright: D=FCKCodeFormatter.Format(D);for (var i=0;i. All rights reserved +License: BSD (2 clause) + +Files: contrib/TWikiDrawPlugin/packages/Acme/JPM/Encoders/GifEncoder.java +Copyright: 1996,1998, by Jef Poskanzer . All rights reserved +License: BSD (2 clause) + +Files: MoinMoin/filter/EXIF.py +Copyright: 2002, Gene Cash All rights reserved + license is intended to be similar to the FreeBSD license +License: BSD (2 clause) + +Files: docs/licenses/twikidraw.txt +Copyright: 1996,1998, by Jef Poskanzer + 2001, Motorola. All Rights Reserved + 2000, by Peter Thoeny, Peter@ThoenySPAMBLOCK.com. It +License: BSD + +Files: MoinMoin/support/thfcgi.py +Copyright: Peter strand 2001 +License: GPL (v2) + +Files: contrib/phpwiki_migration/phpwiki2moinmoin.py +Copyright: 2004, The Anarcat +License: GPL + +Files: docs/licenses/pikipiki.txt +Copyright: 1999-2000, Martin Pool +License: GPL-2+ + +Files: README +Copyright: 2006-2008, The MoinMoin development team, see + 2000-2006, by Juergen Hermann +License: GPL-2+ + +Files: MoinMoin/server/daemon.py +Copyright: 2001-2004, Twisted Matrix Laboratories + 2005, Nir Soffer + HOLDERS BE +License: MIT/X11 (BSD like) + +Files: MoinMoin/support/tarfile.py +Copyright: 2002, Lars Gustbel +License: MIT/X11 (BSD like) + +Files: MoinMoin/_tests/pep8.py +Copyright: HOLDERS + 2006, Johann C. Rocholl +License: MIT/X11 (BSD like) + +Files: wiki/config/more_samples/ui_wikiconfig_snippet +Copyright: (depends on theme) +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/thumbs_up.gif +Copyright: ,<5B ><&%iH g|tLuRU%Yu*RBkVT`fc-Z5T@bz&>S+J+H!/"PeHf_e; +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/avi.gif +Copyright: 0 +License: UNKNOWN + +Files: wiki/server/moin.cgi +Copyright: 2000-2005, by Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/version.py +Copyright: 2000-2006, Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/__init__.py +Copyright: 2000-2006, by Juergen Hermann +License: UNKNOWN + +Files: contrib/TWikiDrawPlugin/src/CH/ifa/draw/appframe/LightweightDrawApplet.java +Copyright: 2001, Motorola - All rights reserved +License: UNKNOWN + +Files: MoinMoin/action/LocalSiteMap.py +Copyright: 2001, Steve Howell +License: UNKNOWN + +Files: setup.cfg +Copyright: 2001, by Jrgen Hermann +License: UNKNOWN + +Files: MoinMoin/action/fullsearch.py +Copyright: 2001, by Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/action/AttachFile.py +Copyright: 2001, by Ken Sugino (sugino@mediaone.net) +License: UNKNOWN + +Files: MoinMoin/wikixml/__init__.py +Copyright: 2001-2002, Juergen Hermann +License: UNKNOWN + +Files: MANIFEST.in +Copyright: 2001-2002, by Jrgen Hermann +License: UNKNOWN + +Files: MoinMoin/request/request_cgi.py +Copyright: 2001-2003, by Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/server/server_standalone.py +Copyright: 2001-2004, MoinMoin:JuergenHermann +License: UNKNOWN + +Files: MoinMoin/caching.py +Copyright: 2001-2004, by Juergen Hermann +License: UNKNOWN + +Files: setup.py +Copyright: 2001-2005, by Jrgen Hermann +License: UNKNOWN + +Files: MoinMoin/util/diff3.py +Copyright: 2002, Florian Festi +License: UNKNOWN + +Files: wiki/htdocs/common/js/infobox.js +Copyright: 2002, Klaus Knopper +License: UNKNOWN + +Files: MoinMoin/parser/_ParserBase.py +Copyright: 2002, by Taesu Pyo +License: UNKNOWN + +Files: MoinMoin/stats/languages.py +Copyright: 2002-2004, Juergen Hermann , # Part of the code is +License: UNKNOWN + +Files: MoinMoin/action/RenamePage.py +Copyright: 2002-2004, Michael Reinsch +License: UNKNOWN + +Files: MoinMoin/support/HeaderFixed.py +Copyright: 2002-2004, Python Software Foundation +License: UNKNOWN + +Files: MoinMoin/wikixml/_tests/test_marshal.py +Copyright: 2002-2004, by Juergen Hermann +License: UNKNOWN + +Files: MoinMoin/macro/MonthCalendar.py +Copyright: 2002-2007, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/action/SubscribeUser.py +Copyright: 2003, Daniela Nicklas +License: UNKNOWN + +Files: MoinMoin/i18n/tools/check_i18n.py +Copyright: 2003, Florian Festi, Nir Soffer, Thomas Waldmann +License: UNKNOWN + +Files: MoinMoin/auth/sslclientcert.py +Copyright: 2003, Martin v. Loewis +License: UNKNOWN + +Files: MoinMoin/_tests/test_error.py +Copyright: 2003-2004, by Nir Soffer +License: UNKNOWN + +Files: MoinMoin/theme/modern.py +Copyright: 2003-2005, Nir Soffer, Thomas Waldmann +License: UNKNOWN + +Files: MoinMoin/support/htmlmarkup.py +Copyright: 2003-2006, Edgewall Software + 2006, MoinMoin:AlexanderSchremmer +License: UNKNOWN + +Files: MoinMoin/wikidicts.py +Copyright: 2003-2007, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/macro/Action.py +Copyright: 2004, 2007, Johannes Berg +License: UNKNOWN + +Files: wiki/server/mointwisted.cmd +Copyright: 2004, Alexander Schremmer +License: UNKNOWN + +Files: MoinMoin/parser/text_rst.py +Copyright: 2004, Matthew Gilbert +License: UNKNOWN + +Files: MoinMoin/script/old/repair_language.py +Copyright: 2004, Nir Soffer +License: UNKNOWN + +Files: MoinMoin/util/_tests/test_pysupport.py +Copyright: 2004, Oliver Graf +License: UNKNOWN + +Files: MoinMoin/server/server_twisted.py +Copyright: 2004, Thomas Waldmann, Oliver Graf, Nir Soffer +License: UNKNOWN + +Files: wiki/server/moinmodpy.htaccess +Copyright: 2004, by Oliver Graf +License: UNKNOWN + +Files: MoinMoin/parser/text_pascal.py +Copyright: 2004-2005, Johannes Berg +License: UNKNOWN + +Files: MoinMoin/macro/PageHits.py +Copyright: 2004-2005, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: wiki/server/mointwisted +Copyright: 2004-2005, Thomas Waldmann, Nir Soffer +License: UNKNOWN + +Files: wiki/server/mointwisted.py +Copyright: 2004-2005, Thomas Waldmann, Oliver Graf, Nir Soffer +License: UNKNOWN + +Files: wiki/server/moinmodpy.py +Copyright: 2004-2005, by Oliver Graf +License: UNKNOWN + +Files: MoinMoin/script/maint/globaledit.py +Copyright: 2004-2006, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/script/maint/mailtranslators.py +Copyright: 2004-2007, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/macro/Hits.py +Copyright: 2004-2008, MoinMoin:ReimarBauer +License: UNKNOWN + +Files: contrib/images/logos/santa2-moin.png +Copyright: 2005, (using The GIMP, it's great stuff.)pIDATx{kp@$`cp1q#|RSgNzvf&3=I{Rb'Zblcq0HBwi}n{ #;^<:!uR Hj!jr[ERq!'HGV cFitFiBJj@SH
  • )"DPY&SvL)1kJYR)K@)c!DB@ +License: UNKNOWN + +Files: MoinMoin/support/xapwrap/index.py +Copyright: 2005, Divmod Inc. See LICENSE file for details +License: UNKNOWN + +Files: MoinMoin/util/lock.py +Copyright: 2005, Florian Festi, Nir Soffer +License: UNKNOWN + +Files: MoinMoin/parser/text_docbook.py +Copyright: 2005, Henry Ho +License: UNKNOWN + +Files: MoinMoin/util/bdiff.py +Copyright: 2005, Matt Mackall +License: UNKNOWN + +Files: MoinMoin/formatter/pagelinks.py +Copyright: 2005, Nir Soffer +License: UNKNOWN + +Files: MoinMoin/conftest.py +Copyright: 2005, Nir Soffer, 2007, Alexander Schremmer +License: UNKNOWN + +Files: MoinMoin/theme/rightsidebar.py +Copyright: 2005, Nir Soffer +License: UNKNOWN + +Files: MoinMoin/action/Despam.py +Copyright: 2005, by ???, Thomas Waldmann +License: UNKNOWN + +Files: wiki/server/moin_flup_wsgi.py +Copyright: 2005, by Anakim Border +License: UNKNOWN + +Files: MoinMoin/converter/_tests/test_text_html_text_moin_wiki.py +Copyright: 2005, by Bastian Blank +License: UNKNOWN + +Files: MoinMoin/formatter/text_docbook.py +Copyright: 2005, by MoinMoin:Petr Pytelka (small modifications) + 2005, by MoinMoin:AlexanderSchremmer (small modifications) + 2005,2008, by Mikko Virkkil +License: UNKNOWN + +Files: MoinMoin/action/backup.py +Copyright: 2005, by MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/search/_tests/test_search.py +Copyright: 2005, by Nir Soffer +License: UNKNOWN + +Files: MoinMoin/_tests/maketestwiki.py +Copyright: 2005, by Thomas Waldmann +License: UNKNOWN + +Files: MoinMoin/script/migration/migutil.py +Copyright: 2005,2007, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/formatter/text_gedit.py +Copyright: 2005-2006, Bastian Blank, Florian Festi, Thomas Waldmann, Reimar Bauer +License: UNKNOWN + +Files: MoinMoin/script/import/irclog.py +Copyright: 2005-2007, MoinMoin:AlexanderSchremmer +License: UNKNOWN + +Files: MoinMoin/security/antispam.py +Copyright: 2005-2008, MoinMoin:ThomasWaldmann +License: UNKNOWN + +Files: MoinMoin/util/thread_monitor.py +Copyright: 2006, Alexander Schremmer +License: UNKNOWN + +Files: MoinMoin/PageGraphicalEditor.py +Copyright: 2006, Bastian Blank, Florian Festi +License: UNKNOWN + +Files: MoinMoin/parser/text_diff.py +Copyright: 2006, Emilio Lopes, inspired by previous work +License: UNKNOWN + +Files: MoinMoin/auth/mysql_group.py +Copyright: 2006, Nick Phillips +License: UNKNOWN + +Files: MoinMoin/action/userprefs.py +Copyright: 2006, Radomir Dopieralski +License: UNKNOWN + +Files: MoinMoin/script/old/migration/152_to_1050300.py +Copyright: 2006, Thomas Waldmann +License: UNKNOWN + +Files: MoinMoin/_tests/test_sourcecode.py +Copyright: 2006, by Armin Rigo (originally only testing for tab chars) +License: UNKNOWN + +Files: contrib/DesktopEdition/setup_py2exe.py +Copyright: 2006, by MoinMoin:YourNameHere +License: UNKNOWN + +Files: MoinMoin/util/moinoid.py +Copyright: 2006-2007, Johannes Berg +License: UNKNOWN + +Files: MoinMoin/action/supplementation.py +Copyright: 2006-2007, MoinMoin:ReimarBauer +License: UNKNOWN + +Files: MoinMoin/action/serveopenid.py +Copyright: 2006-2008, Johannes Berg +License: UNKNOWN + +Files: MoinMoin/macro/EmbedObject.py +Copyright: 2006-2008, MoinMoin:ReimarBauer +License: UNKNOWN + +Files: MoinMoin/support/python_compatibility.py +Copyright: 2007, Heinrich Wendel +License: UNKNOWN + +Files: contrib/googleimport/driver.py +Copyright: 2007, MoinMoin:AlexanderSchremmer +License: UNKNOWN + +Files: MoinMoin/userprefs/__init__.py +Copyright: 2007, MoinMoin:Johannesberg +License: UNKNOWN + +Files: MoinMoin/_template.py +Copyright: 2007, MoinMoin:YourNameHere +License: UNKNOWN + +Files: jabberbot/capat.py +Copyright: 2007, by Robert Lehmann +License: UNKNOWN + +Files: MoinMoin/parser/text_csv.py +Copyright: 2007-2008, Johannes Berg +License: UNKNOWN + +Files: MoinMoin/parser/_tests/test_unicode.py +Copyright: 2007-2008, by Raphael Bossek +License: UNKNOWN + +Files: MoinMoin/parser/_tests/test_text_csv.py +Copyright: 2008, by MoinMoin:ReimarBauer +License: UNKNOWN + +Files: contrib/images/logos/mastermoin1.png +Copyright: 3yM +License: UNKNOWN + +Files: wiki/underlay/pages/HelpOnActions(2f)AttachFile/attachments/unzip2.png +Copyright: 5L~p>lH~}N2SeZW>i}m 5*c;73%c+W6QBHJb=n[E{1Kkf0 +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/dialog/fck_universalkey/keyboard_layout.gif +Copyright: @1K#=O3A +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/skins/office2003/toolbar/find.gif +Copyright: @1R`s8u@!;,pH,r)PJC9A8RUPX@HL[.K(Ch8!-(oE (3:9- :#F^z/"1"F('1C'$F:5B;EC0)C+!7L;A; +License: UNKNOWN + +Files: wiki/htdocs/modern/img/draft.png +Copyright: @8g&2@/'b*qfSXMD*R8`c%Q +License: UNKNOWN + +Files: MoinMoin/macro/PageList.py +Copyright: @: 2001-2003, Juergen Hermann +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/dialog/common/images/reset.gif +Copyright: C\$; +License: UNKNOWN + +Files: wiki/underlay/pages/HelpOnActions(2f)AttachFile/attachments/unzip5.png +Copyright: DH+EiUpU6 +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/images/smiley/msn/tounge_smile.gif +Copyright: F818J(Y*SM4U+3N$?{}"Jd_.$'g}Z +License: UNKNOWN + +Files: wiki/htdocs/modern/img/admon-tip.png +Copyright: F_=u>Ne?p#RS~>Nndt7:;Z-[L?8=@\}V?z;AM_xk k#@3,^,11N%d,jR?g%X4t#9tY4| +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/de.js +Copyright: Fontanil + 2003-2005, Frederico Caldeira Knabben +License: UNKNOWN + +Files: MoinMoin/_tests/compat.py +Copyright: Holger Krekel. """ +License: UNKNOWN + +Files: MoinMoin/converter/text_html_text_moin_wiki.py +Copyright: International Organization for Standardization 1986, + 2005-2006, Bastian Blank, Florian Festi, Reimar Bauer + sign, U+00A9 ISOnum --> +License: UNKNOWN + +Files: wiki/underlay/pages/HelpOnLinking(2f)NotesLinks/attachments/docprop.jpg +Copyright: J(Ij`-T>JIT + m'p+/OCDv\AoKg&+0LY;sRQ5-+H(SQWBUD + )+@#/&g;7|Uj&J*jm3BqL;B:m +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif +Copyright: JY&jb+:0+ +License: UNKNOWN + +Files: wiki/underlay/pages/SystemPagesSetup/attachments/Hebrew.zip +Copyright: MailTo +License: UNKNOWN + +Files: wiki/underlay/pages/HelpOnTables/attachments/MiniPage.png +Copyright: P(8^lA'bkt" b@A(ab@A(ab@A(ab@UrARUzP6%PP;YzGOT?\KK<"~g%}"9Vz:'e[3:v86WNy~L?O'CmmwkfYVcnm;lKe}:%D/?79pgP!m.FC.A1(FJj5DY{PLN4*OD"0zi+'\B-(r +License: UNKNOWN + +Files: wiki/underlay/pages/HelpOnParsers(2f)ReStructuredText(2f)RstPrimer/revisions/00000001 +Copyright: This document has been placed in the public domain +License: UNKNOWN + +Files: wiki/htdocs/common/moinmoin.png +Copyright: UPSSg;goT?~YYLOCQ_ cx,!ku5&|v*=9C3J3WRf?qtN(~))4L1e\kXHQG6EYAJ'\'GgSS +License: UNKNOWN + +Files: wiki/underlay/pages/SystemPagesSetup/attachments/Hungarian.zip +Copyright: azt. Vannak klnleges rsmdok, amelyeket a rendszer automatikusan bels vagy kls linkknt, esetleg begyazott kpknt ismer fel +License: UNKNOWN + +Files: contrib/images/logos/mastermoin2.png +Copyright: cc)C+p,nscca'caQl;eF,4\h$ +License: UNKNOWN + +Files: contrib/images/logos/star-moin.png +Copyright: eY<8& +License: UNKNOWN + +Files: wiki/underlay/pages/SystemPagesSetup/attachments/EuropeanPortuguese.zip +Copyright: [WikiMoinMoin|MoinMoin +License: UNKNOWN [executar o + +Files: MoinMoin/multiconfig.py +Copyright: from a +License: UNKNOWN + +Files: wiki/underlay/pages/SystemPagesSetup/attachments/Italian.zip +Copyright: gli utenti anonimi possano usufruire delle caratteristiche della sessione normale, impostare `anonymous_session_lifetime` +License: UNKNOWN + +Files: wiki/underlay/pages/SystemPagesSetup/attachments/Czech.zip +Copyright: jsou soust nzv strnek + strnky se zobraz seznam strnek, kter na ni odkazuj. Odkazy na strnky kter zatm neexistuj jsou zabrazeny erven nebo uvozeny otaznkem: kliknutm na takov odkaz je mon strnku vytvoit. Toto je jeden ze zpsob, jak vytvoit novou strnku: pidat nov WikiNazev na existujc strnku, nechat si zobrazit nhled, kliknout na nov odkaz a vytvoit strnku (vce detail viz NapovedaTvorbaStranky) + jsou s tou aktualn spznm se mete dostat vybrnm jedn z tchto akc: + prosted, kde je kladen draz na snadn pstup k informacm a k jejich modifikaci + vyhledvn + soust InterWiki prostoru, co znamen, e je mon jednodue odkazovat na mnostv informac dostupnch na jinch veejnch wiki strnkch +License: UNKNOWN + +Files: MoinMoin/i18n/fr.MoinMoin.po +Copyright: qu'un code de rcupration du mot de passe\n" +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/license.txt +Copyright: the + 1991, 1999, Free Software Foundation, Inc +License: UNKNOWN + +Files: wiki/htdocs/applets/FCKeditor/editor/dialog/fck_about/lgpl.html +Copyright: the library, and + 1991, 1999, Free Software Foundation, Inc. 59 Temple Place, Suite +License: UNKNOWN + --- moin-1.7.1.orig/debian/prerm +++ moin-1.7.1/debian/prerm @@ -0,0 +1,38 @@ +#!/bin/sh + +set -e + +rename_conffile_rollback () { +# syntax: rename_conffile_rollback old_name new_name +# +# Roll back the renaming of a conffile from "old_name" to "new_name". +# +# Call this function from a postrm script in the event $1 is "abort-upgrade" +# or "abort-install" is after having used rename_conffile_prepare() in the +# preinst. + + # local conffile + + # Validate arguments. + if [ $# -ne 1 ]; then + echo "$0: usage error: rename_conffile_rollback() called with wrong number of arguments (expected 1, got $#)." + exit 2 + fi + + _old_conffile="$1" + _new_conffile="$2" + + # If the temporary file created by rename_conffile_prepare() exists, + # rename _new_conffile to _old_conffile. + if [ -e "$_old_conffile.python-moinmoin.moved" ]; then + echo "Rolling back renaming of conffile $_old_conffile to $_new_conffile." >&2 + mv "$_new_conffile" "$_old_conffile" + rm "$_old_conffile.python-moinmoin.moved" + fi +} + +#DEBHELPER# + +if [ "$1" = "abort-install" ] || [ "$1" = "abort-upgrade" ]; then + rename_conffile_rollback /etc/moin/moinmaster.py /etc/moin/mywiki.py +fi --- moin-1.7.1.orig/debian/NEWS +++ moin-1.7.1/debian/NEWS @@ -0,0 +1,82 @@ +moin (1.7.0) unstable; urgency=low + + * New upstream release, requiring content migration. + + Automated migration: + 1. Add your MoinMoin wikis to /etc/moin/wikilist, and invoke + moin-mass-migrate as root + 3. Let packaging routines mass-migrate as needed in the future + + Manual migration: + See /usr/share/doc/moinmoin-common/README.Migration(.gz). + + -- Jonas Smedegaard Sun, 22 Jun 2008 11:15:47 +0200 + +moin (1.6.3-1) unstable; urgency=low + + * New helper script moin-mass-migrate: + Add your MoinMoin wikis to /etc/moin/wikilist to automatically apply + migration scripts on package updates, or whenever you invoke the + script yourself. + See /usr/share/doc/moinmoin-common/README.Migration(.gz) for more + info on the migration routines themselves. + + -- Jonas Smedegaard Wed, 23 Apr 2008 12:13:48 +0200 + +moin (1.6.2-1) unstable; urgency=low + + * FCKeditor removed from Debian installation! + The graphical editor, FCKeditor, is disabled with Debian, due to + security concerns: The version of FCKeditor included with MoinMoin + is older than the one maintained separately for Debian, and due to + security issues with the software in the past it has been judged too + risky to maintain multiple copies of the software with the + distribution. + The editor is provided as example files, so you can manually + reinstate it again if you understand and acknowledge the security + implications of doing so. + + -- Jonas Smedegaard Tue, 08 Apr 2008 23:59:28 +0200 + +moin (1.5.7) unstable; urgency=low + + * New simplified upstream migration routine. Please read + /usr/share/doc/moinmoin-common/README.Migration(.gz) for more info. + + -- Jonas Smedegaard Fri, 16 Mar 2007 17:30:17 +0100 + +moin (1.5) unstable; urgency=low + + * Many config options have changed. Please read upstream changelog for + details on required adjustments to local setups. + * Non-english underlay pages is now distributed as packages. Make sure + to visit SystemPagesSetup after upgrade of underlay if you use non- + english pages. + + -- Jonas Smedegaard Wed, 21 Dec 2005 12:46:22 +0100 + +moin (1.3) unstable; urgency=low + + * Older MoinMoin data does not work with current MoinMoin library, and + automated upgrade is not possible. Please read the migration section + of /usr/share/doc/moinmoin-common/README.Debian(.gz) for more info. + + -- Jonas Smedegaard Mon, 11 Apr 2005 13:55:57 +0200 + +moin (1.2.2-1) unstable; urgency=low + + * it is not allowed any more to create user accounts with user names + matching config.page_group_regex - please check manually that you do + not already have such users existing (like a user named + "AdminGroup"): + cd data/user ; grep name=.*Group * # there should be no output! + + -- Jonas Smedegaard Thu, 17 Jun 2004 05:12:48 +0200 + +moin (1.2-1) unstable; urgency=low + + * Several changes in this new upstream version - your current MoinMoin + wiki may not work correctly after updating to this version. Please + read /usr/share/moin/data/text/HelpOnUpdating for details. + + -- Jonas Smedegaard Fri, 27 Feb 2004 01:34:24 +0100 --- moin-1.7.1.orig/debian/pyversions +++ moin-1.7.1/debian/pyversions @@ -0,0 +1 @@ +2.3- --- moin-1.7.1.orig/debian/README.packaging +++ moin-1.7.1/debian/README.packaging @@ -0,0 +1,3 @@ + * List of latest changesets: http://hg.thinkmo.de/moin/1.5 + * Fetch changesets from upstream Hg: + (hash=69f39c1607c5;cset=434;no=00$cset;wget -O ${no}_cset${cset}.patch "http://hg.thinkmo.de/moin/1.5?cs=${hash};style=raw") --- moin-1.7.1.orig/debian/wikilist +++ moin-1.7.1/debian/wikilist @@ -0,0 +1,12 @@ +# This file is used by moin-mass-migrate script to migrate the listed +# wikis. Run this script when upgrading moin to an incompatible new +# version that requires migrating data. +# +# moin-mass-migrate su's to the listed user and then runs moin migration +# with the specified protocol-stripped url. +# +# It's also possible to let a user list setup files in ~user/.moin/wikilist +# in their home directory. To do so, list only the user's name, without +# url. The format of ~/.moin/wikilist is the same as this file. + +#www-data wiki.example.org/ --- moin-1.7.1.orig/debian/control.in +++ moin-1.7.1/debian/control.in @@ -0,0 +1,24 @@ +Source: moin +Section: net +Priority: optional +Maintainer: Jonas Smedegaard +Standards-Version: 3.7.3 +Build-Depends: @cdbs@ +Vcs-Git: git://git.debian.org/git/collab-maint/moin.git +Vcs-Browser: http://git.debian.org/?p=collab-maint/moin.git;a=summary +Homepage: http://moinmo.in/ + +Package: python-moinmoin +Architecture: all +Section: python +Depends: ${python:Depends} +Provides: ${python:Provides}, moinmoin-common +Replaces: python2.3-moinmoin (<< 1.5.3-1.1), python2.4-moinmoin (<< 1.5.3-1.1), moinmoin-common +Conflicts: python2.3-moinmoin (<< 1.5.3-1.1), python2.4-moinmoin (<< 1.5.3-1.1), moinmoin-common +Recommends: exim4 | mail-transport-agent, python-xapian +Suggests: apache2 | httpd-cgi | libapache2-mod-python | libapache-mod-python | python-twisted-web | python-twisted | libapache2-mod-fcgid | libapache2-mod-fastcgi | libapache-mod-fastcgi, miscfiles | wordlist, python-4suite-xml, python-gdchart, python-docutils (>= 0.3.10), antiword, catdoc, python-pyxmpp +Description: Python clone of WikiWiki - library + A WikiWikiWeb is a collaborative hypertext environment, with an + emphasis on easy access to and modification of information. MoinMoin + is a Python WikiClone that allows you to easily set up your own wiki, + only requiring a Web server and a Python installation. --- moin-1.7.1.orig/debian/control +++ moin-1.7.1/debian/control @@ -0,0 +1,24 @@ +Source: moin +Section: net +Priority: optional +Maintainer: Jonas Smedegaard +Standards-Version: 3.7.3 +Build-Depends: devscripts (>= 2.10.7), quilt, patchutils (>= 0.2.25), debhelper (>= 5.0.44), cdbs (>= 0.4.43), python-dev (>= 2.3.5-11), python-support (>= 0.3.2), dh-buildinfo +Vcs-Git: git://git.debian.org/git/collab-maint/moin.git +Vcs-Browser: http://git.debian.org/?p=collab-maint/moin.git;a=summary +Homepage: http://moinmo.in/ + +Package: python-moinmoin +Architecture: all +Section: python +Depends: ${python:Depends} +Provides: ${python:Provides}, moinmoin-common +Replaces: python2.3-moinmoin (<< 1.5.3-1.1), python2.4-moinmoin (<< 1.5.3-1.1), moinmoin-common +Conflicts: python2.3-moinmoin (<< 1.5.3-1.1), python2.4-moinmoin (<< 1.5.3-1.1), moinmoin-common +Recommends: exim4 | mail-transport-agent, python-xapian +Suggests: apache2 | httpd-cgi | libapache2-mod-python | libapache-mod-python | python-twisted-web | python-twisted | libapache2-mod-fcgid | libapache2-mod-fastcgi | libapache-mod-fastcgi, miscfiles | wordlist, python-4suite-xml, python-gdchart, python-docutils (>= 0.3.10), antiword, catdoc, python-pyxmpp +Description: Python clone of WikiWiki - library + A WikiWikiWeb is a collaborative hypertext environment, with an + emphasis on easy access to and modification of information. MoinMoin + is a Python WikiClone that allows you to easily set up your own wiki, + only requiring a Web server and a Python installation. --- moin-1.7.1.orig/debian/README.Debian +++ moin-1.7.1/debian/README.Debian @@ -0,0 +1,129 @@ +moin for Debian +--------------- + +This Debian package has been tested mostly as CGI script with Apache 1.3. + +It should work with any web server supporting either of these: + + * CGI + * FastCGI + * Apache Python module + * Twisted + + +Example: A single wiki as CGI with Apache2 +------------------------------------------ + + 1) Create and populate /var/www/mywiki + # mkdir /var/www/mywiki + # cp -r /usr/share/moin/server/moin.cgi /var/www/mywiki + # mkdir /var/lib/mywiki + # cp -r /usr/share/moin/data /usr/share/moin/underlay /var/lib/mywiki + + 2) Pass on the wiki to Apache: + # chown -R www-data: /var/www/mywiki /var/lib/mywiki + + 3) Configure Apache2: + Add the following as /etc/apache2/sites-available/mywiki: + + + ServerName wiki.example.org + DocumentRoot /var/www/mywiki/ + Alias /moin_static170/ "/usr/share/moin/htdocs/" + ScriptAlias /MyWiki "/var/www/mywiki/moin.cgi" + + + 4) Configure MoinMoin: + Edit /etc/moin/farmconfig.py to comment out data_dir and + data_underlay_dir (we need those defined separately for each wiki) + + Edit /etc/moin/mywiki.py to include these lines: + + sitename = u'MyWiki' # [Unicode] + data_dir = '/var/lib/mywiki/data' + data_underlay_dir = '/var/lib/mywiki/underlay' + + Edit /etc/moin/wikilist to include this line: + + www-data wiki.example.org/ + + 5) Activate wiki: + # a2ensite mywiki + # invoke-rc.d apache2 reload + + 6) Enjoy your new wiki at http://your.site/MyWiki/ + + +For more complex setups for apache 1.3 and 2.0, you may find inspiration +in *.conf files below /usr/share/doc/python-moinmoin/examples/*.conf . + +For more info, both related to above example and other setups like +Twisted or standalone, read the upstream file +/usr/share/doc/python-moinmoin/INSTALL.html . + + +Migrating from earlier version of moin +-------------------------------------- + +Please follow the upgrade description in +/usr/share/doc/python-moinmoin/README.migration(.gz). beware that the +document was written upstream so some info may not apply to this Debian +package. + +Debian packaging includes a helper script moin-mass-migrate to +automatically apply these migration scripts on package updates (or +whenever you invoke the script yourself). Add your MoinMoin wikis to +/etc/moin/wikilist to enable the automation. + +See also these links for additional cleanup after migration: + + http://moinmoin.wikiwikiweb.de/RemovingUnwantedLanguages + http://moinmoin.wikiwikiweb.de/RemovingSystemPages + + +Always use farmconfig +--------------------- + +The Debian packaging of MoinMoin has farmconfig enabled by default, and +it is recommended to always use farmconfig instead of wikiconfig.py. + +Some upgrades of MoinMoin require migration of data (as was the case +from 1.2.4 to 1.3.4). Future Debian packaging routines may offer to do +the migration automatically, but only for farmconfig wikis! + + +FCKeditor removed from Debian installation +------------------------------------------ + +The graphical editor, FCKeditor, is disabled with Debian, due to +security concerns: The version of FCKeditor included with MoinMoin is +older than the one maintained separately for Debian, and due to security +issues with the software in the past it has been judged too risky to +maintain multiple copies of the software with the distribution. + +The editor is provided as example files, so you can manually reinstate +it again if you understand and acknowledge the security implications of +doing so. + + +Additional notes +---------------- + +If you want to customize the visual layout of the wiki, copy the htdoc +directory as well, change the Alias line, and (optionally) change the +url_prefix option in moin_config.py. + +The dictionary can be improved by adding (symlinks to) wordlists to the +data/dict. If one of the wordlist packages (eg. wenglish, wdutch, +miscfiles) is installed you can link to /usr/share/dict/words or the +file(s) directly. Alternatively (or in addition) you can put other +wordlists into the moin dict folder. One place to look for wordlists is +here: http://wetelephant.cotse.com/wordlists/ + +Beware if copying /usr/share/moin to a different location: The symlink +/usr/share/moin/data/dict/word may need to be adjusted to properly point +to /usr/share/dict/words - or replaced as described above. + +Read more about the options on the wiki page HelpOnConfiguration. + + -- Jonas Smedegaard Tue, 22 Mar 2005 03:05:47 +0100 --- moin-1.7.1.orig/debian/preinst +++ moin-1.7.1/debian/preinst @@ -0,0 +1,70 @@ +#!/bin/sh + +set -e + +rename_conffile_prepare () { +# syntax: rename_conffile_prepare old_name new_name official_md5sum ... +# +# Check a conffile "old_name" against a list of canonical MD5 checksums. If +# the file's current MD5 checksum matches one of the "official_md5sum" +# operands provided, then rename the conffile to "new_file" and create a +# flag file indicating that we have done so. +# +# We leave the flag file around until the package is configured so that we +# can roll this operation back if package installation fails. +# +# Call this function from a preinst script in the event $1 is "upgrade" or +# "install" and verify $2 to ensure the package is being upgraded from a +# version (or installed over a version removed-but-not-purged) prior to the +# one in which the conffile was renamed. + + #local conffile current_checksum + + # Validate arguments. + if [ $# -lt 3 ]; then + echo "$0: usage error: rename_conffile_prepare() called with wrong number of arguments (expected at least 3, got $#)." >&2 + exit 2 + fi + + _old_conffile="$1" + shift + + _new_conffile="$1" + shift + + # We only have something to do if the _old_conffile exists and the + # _new_conffile doesn't. + if [ -e "$_old_conffile" ] && ! [ -e "$_new_conffile" ]; then + # Calculate _old_conffile's checksum. + _current_checksum=$(md5sum < "$_old_conffile" | sed 's/[[:space:]].*//') + # Compare it to each supplied checksum. + while [ -n "$1" ]; do + + _old_checksum="$1" + shift + + _old_pkgver="$1" + shift + + if [ "$_current_checksum" = "$_old_checksum" ]; then + # We found a match; rename the conffile and stop looking. + echo "Found old conffile (version $_old_pkgver): Renaming from $_old_conffile to $_new_conffile." >&2 + mv "$_old_conffile" "$_new_conffile" \ + > "$_old_conffile.python-moinmoin.moved" + break + fi + done + fi +} + +#DEBHELPER# + +if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then + if dpkg --compare-versions "$2" lt "1.5.2"; then + rename_conffile_prepare \ + /etc/moin/moinmaster.py /etc/moin/mywiki.py \ + 0691ca2ee1a91d81e6010f92e5eb4e62 1.3.4-3 \ + 53921d5995c4f8f7ee2dc75868837248 'unknown' \ + 342a585c1a0255e8cbfaca607d068276 1.4.99+1.5.0rc1-1 + fi +fi --- moin-1.7.1.orig/debian/moin-update-wikilist.1 +++ moin-1.7.1/debian/moin-update-wikilist.1 @@ -0,0 +1,30 @@ +.TH moin-update-wikilist 1 +.SH NAME +moin\-update\-wikilist \- add or remove user from /etc/moin/wikilist +.PP +.SH SYNOPSIS +moin\-update\-wikilist +.PP +.SH DESCRIPTION +moin\-update\-wikilist is designed to be made suid root, but not installed +suid by default. If made suid, it allows users to add or remove their names +from the /etc/moin/wikilist file. If a user's name is not in the file, +it will be added; if the name is already present, it will be removed. +.PP +If your name is in /etc/moin/wikilist, the moin\-mass\-rebuild(8) +command will look for a ~/.moin/wikilist file, and rebuild the wikis listed +in that file. +.PP +.SH OPTIONS +None. +.PP +.SH AUTHOR +Jonas Smedegaard +.PP +.SH HISTORY +moin\-update\-wikilist (and this manual page) is heavily based on +ikiwiki\-update\-wikilist written by Joey Hess for +use with the wiki-compiler ikiwiki. +.PP +.PP + --- moin-1.7.1.orig/debian/install +++ moin-1.7.1/debian/install @@ -0,0 +1,3 @@ +debian/moin-mass-migrate /usr/sbin/ +debian/moin-update-wikilist /usr/bin/ +debian/wikilist /etc/moin/ --- moin-1.7.1.orig/debian/README.cdbs-tweaks +++ moin-1.7.1/debian/README.cdbs-tweaks @@ -0,0 +1,128 @@ +CDBS tweak +========== + +CDBS is great. In some corner cases, however, some parts of CDBS +sometimes needs a few tweaks to work optimally. + +This is a collection of such tweaks. The goal is for these tweaks to be +absorbed into upstream CDBS. We just haven't found time yet to discuss +them at the CDBS developers' mailinglist. And possible we do not all +agree that the tweaks are so great - therefore this "staging area". + +If you found this file below debian/ subdir in a source package, most +probably only a subset of the below mentioned tweaks are relevant and +have been shipped with the package. The repository of all these tweaks +is here: svn://svn.debian.org/build-common/people/js/overlay/ + +Web access: http://svn.debian.org/wsvn/build-common/people/js/overlay/ + + + +New buildinfo rule +------------------ + +See package description for "buildinfo" for more info. + + + +Improved support for multiple compilations +------------------------------------------ + +Create and clean builddir _after_ resolving per-package DEB_BUILDDIR. + +Honour per-package DEB_BUILDDIR in makefile and autotools classes. + +Support multiple build flavors in makefile and autotools classes. + + + +Various improvements to python-distutils class +---------------------------------------------- + +Use full path to Python interpreter (Python Policy section 1.3.2). + +Add CDBS_BUILD_DEPENDS to old policy method. + +Fix CDBS_BUILD_DEPENDS in new policy methods to only depend on debhelper +when actually used. + +Fix DEB_PYTHON_SIMPLE_PACKAGES sometimes installed twice (and only one +of them honouring DEB_PYTHON_COMPILE_VERSION). + +Unify install path using new DEB_PYTHON_DESTDIR. + +Quote install path. + + + +New python-autotools class +-------------------------- + +Handle autotools-based Python packaging. + + + +New python-sugar class +---------------------- + +Handle packaging of Sugar activities. + + + +New perl-build class +-------------------- + +Handle Perl modules using Module::Build. + + + +New copyright-check rule +------------------------ + +Refuse to build if the source is found to contain different copyright +info than earlier builds. + + + +New kernelpatches rule +---------------------- + +Small wrapper around dh-kpatches, taking care of build-dependencies too. + + + +New package-relations rule +-------------------------- + +Improved build-dependency handling (merging multiple dependencies on +same packages), and add dependency handling for binary packages (to ease +maintaining identical build-dependencies and dependencies for eg. Perl +modules meeding runtime stuff for buildtime tests). + + + +New routines for handling upstream tarball +------------------------------------------ + +Rules and variables to help downloading, validating and repackaging +upstream tarball. + +Implements the rules print-version and get-orig-source commonly used +for group-maintained packages with Debian-specific patches maintained in +SVN or some other VCS, and automated fetching virgin upstream tarball +(possibly massaged after download e.g. to strip non-DFSG material). + + + +Support for custom BTS info +--------------------------- + +Include BTS control info found in debian/*.bts files, or alternatively +redirect bug reports to the email address defined in DEB_BTS_EMAIL. + + + +New dict class +-------------- + +Rules for packaging ispell, aspell, myspell and wordlist dictionaries. --- moin-1.7.1.orig/debian/changelog +++ moin-1.7.1/debian/changelog @@ -0,0 +1,1353 @@ +moin (1.7.1-1ubuntu1) intrepid; urgency=low + + * Drop recommendation of python-xml, the packages isn't anymore in + sys.path. + + -- Matthias Klose Mon, 20 Oct 2008 16:54:08 +0000 + +moin (1.7.1-1) unstable; urgency=low + + * New upstream release. Closes: bug#492233, thanks to Teodor. + + Fixes bogus empty page creation. Closes: bug#489146, thanks to + Sam Morris. + * Recommend python-xml, needed for RSS feeds. Closes: bug#488777, + thanks to Sam Morris. + * Add patch 10001 to disable RenderAsDocbook if python-xml is not + available. Closes: bug#487741, thanks to Franklin Piat. + * Update cdbs snippets: + + Move dependency cleanup to new local snippet package-relations.mk. + + Update copyright-check output to more closely match proposed new + copyright file format. + + Update README.cdbs-tweaks. + + -- Jonas Smedegaard Thu, 24 Jul 2008 23:50:51 +0200 + +moin (1.7.0-3) unstable; urgency=low + + * Simplify /etc/moin/wikilist format: "USER URL" (drop unneeded middle + CONFIG_DIR that was wrongly advertised as DATA_DIR). Make + moin-mass-migrate handle both formats and warn about deprecation of + the old one. + + -- Jonas Smedegaard Sun, 22 Jun 2008 21:17:13 +0200 + +moin (1.7.0-2) unstable; urgency=low + + * Add NEWS item (targeted for upstream 1.7.0 release) about need for + migration. Bump firstcompat migration hint in postinst. + * Suggest python-pyxmpp. + * Recommend webserver packages (instead of suggesting them). Favor + apache2, and rewrite README.Debian example to use apache2. Add + python-twisted-web, libapache-mod-fcgid and libapache2-mod-fastcgi + as fallback recommendations. Stop recommending apache (provided by + httpd-cgi). + * Drop conflicting/replacing moin (even oldstable has + python-moinmoin). + * Merge moinmoin-common into python-moinmoin. + Rationale: separation of common stuff was no longer needed when + Python policy 2 made it possible to provide a single binary package + for all supported versions of Python. On the other hand it didn't + hurt anything either. + When the mass-migration routine was recently added, it got tied to + the wrong package. Instead of adding even more complexity, it makes + better sense to simplify instead. + * Install the "moin" script normally (not as example script). Closes: + bug#487511, thanks to Franklin Piat. + * Fix servertweaks sed rules to properly hardcode configdir /etc/moin + for the various server scripts. Closes: bug#487507, thanks to + Franklin Piat. + * Add patch 20002 to hardcode configdir /etc/moin for "moin" script. + * Improve README.Debian example to setup wikilist, and improve + wikilist commented out example to match README.Debian. Closes: + bug#487531, thanks to Franklin Piat. + * Fix wikilist header comment to talk about data dir (not config dir). + * Semi-auto-update debian/control to update dependencies: + DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean + + -- Jonas Smedegaard Sun, 22 Jun 2008 16:57:20 +0200 + +moin (1.7.0-1) unstable; urgency=low + + * New upstream release. + * Unfuzz patch. + * Suggest python-4suite-xml (not python-4suite). Closes: bug#434431, + thanks to Raphael Bossek, Franklin PIAT and Matthias Klose. + * Drop obsolete instructions in README.Debian. Closes: bug#365069, + thanks to Mike O'Connor. + * Recommend python-xapian, and suggest antiword and catdoc. Closes: + bug#486473, thanks to Sam Morris. + * Update debian/copyright-hints. + * Update local cdbs snippets: + + Relax copyright-check to only warn about its discoveries. Closes: + bug#487073, thanks to Lucas Nussbaum. + + Update dependency cleanup to strip cdbs 0.4.27 (not 0.4.27-1). + * Semi-auto-update debian/control to update build-dependencies: + DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean + + -- Jonas Smedegaard Sun, 22 Jun 2008 02:52:47 +0200 + +moin (1.6.3-1) unstable; urgency=high + + * New upstream release. + Highlights: + + Security fix: major ACL and superuser priviledge escalation if + using ACL entries other than "Known:" or "All:" and/or a non-empty + superuser list. + + Security fix: ACL processing sometimes wrong when + acl_hierarchic=True. + + No longer check protocol for {{transclusion_targets}}. + + Fixed TableOfContents macro for included pages. + + server_fastcgi: added Config.port = None. + + category: search matches categories even if there are comment lines + between the horizontal rule and the real categories. + + Added 'notes' to config.url_schemas, to use notes://notessrv/... + to invoke your Lotus Notes client. + + Immediately login user after creating a new user profile via + UserPreferences. + * Set urgency=high due to security fixes. + * Add new helper script moin-mass-migrate, based on the ikiwiki script + ikiwiki-mass-upgrade written by Joey Hess. + Add NEWS entry, and rewrite migration section in README.Debian. + * Add new helper script moin-update-wikilist, based on the ikiwiki + script ikiwiki-update-wikilist written by Joey Hess. + * Update cdbs tweaks: + + Strip any non-printable characters in copyright-check.mk. Update + copyright-hints. + + Relax python-central build-dependencies in python-distutils.mk. + * Bump debhelper compatibility level to 6 (was 4). + * Bump standards-version to 3.7.3 (no changes needed). + * Rely on dh_lintian (already included in cdbs debhelper.mk rule) to + install lintian overrides. + * Drop custom distribution support (unmaintained for some time now). + * Drop support for old Python policy. + * Remove no longer true comments in debian/rules. + * Semi-auto-update debian/control to update build-dependencies: + DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean + + -- Jonas Smedegaard Wed, 23 Apr 2008 12:24:37 +0200 + +moin (1.6.2-1) unstable; urgency=low + + * New upstream release. Closes: bug#461920. + + Drop HG snapshot patches 0*: applied upstream. + + Drop security patch 10010: Fixed differently upstream. + * Update upstream source URL in debian/copyright, debian/rules and + debian/watch. + * Avoid graphical editor (based on old version of FCKeditor): + + Add patch 20001 to always use text editor + + Install FCKeditor files only as example files + + Add NEWS item about the change + + Drop patch 10011 patching known security issues with the editor. + Closes: bug#467363. + * Packaging moved to collab-maint Git at Alioth. Update VCS-* hints. + * Update upstream URL in Homepage hint. + * Update cdbs tweaks: + + Support zip in upstream-tarball.mk + + Use ~ as repackaging delimiter in upstream-tarball.mk to make room + for point releases and cleaned up rerelease + + Rename top srcdir in repackaged tarball to $pkg-$ver.orig to + comply with Developers Reference 6.7.8.2. + + Support mangling upstream version string in upstream-tarball.mk + + Drop wget options broken with recent versions of wget in + update-tarball.mk + + Drop unneeded buildcore.mk override (just set environment flag + manually when needed instead). + + Update copyright-check.mk to use licensecheck script, and store + newline-delimited hints + * Update copyright_hints. + * Semi-auto-update debian/control to update build-dependencies: + DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean + + -- Jonas Smedegaard Tue, 08 Apr 2008 23:59:28 +0200 + +moin (1.5.8-5.1) unstable; urgency=high + + * NMU with maintainer consent, urgency for security updates + * update upstream patches to moin-1.5 branch revision 856 to fix bugs + + cross-site scripting vulnerabilities using AttachFile, + CVE-2008-0781 + + directory traversal in MOIN_ID cookie vulnerability, + CVE-2008-0782 (Closes: #462984) + + XSS problem in login, CVE-2008-780 + + -- Thomas Viehmann Tue, 19 Feb 2008 22:38:10 +0100 + +moin (1.5.8-5) unstable; urgency=high + + * Acknowledge NMU. + + Rename patch to 10011 (to match documented naming scheme). + + Unfuzz patch. + * Use Vcs-* fields (not XS-Vcs-* fields) in debian/control. + + -- Jonas Smedegaard Sun, 21 Oct 2007 17:39:47 +0200 + +moin (1.5.8-4.1) unstable; urgency=high + + * Non-maintainer upload by the testing-security team + * Include upstream patch to enable whitelisting, instead of + insufficient blacklisting for file uploads (Closes: #429205) + Fixes: CVE-2007-5156, CVE-2007-3163, CVE-2007-2630, CVE-2006-0658 + + -- Steffen Joeris Sun, 21 Oct 2007 14:43:37 +0000 + +moin (1.5.8-4) unstable; urgency=low + + * Sync with upstream HG development source as of today (patchset 851): + + Avoid out-of-space file corruption of "current" page. + + Fix translation of "Toggle line numbers" link. + * Move Homepage to own field (from pseudo-field in long description). + + -- Jonas Smedegaard Sat, 29 Sep 2007 19:16:43 +0200 + +moin (1.5.8-3) unstable; urgency=high + + * Acutally apply the added patch in 1.5.8-2. + * Raise to urgency=high as these are only security-related bugfixes. + + -- Jonas Smedegaard Sun, 16 Sep 2007 21:57:48 +0200 + +moin (1.5.8-2) unstable; urgency=low + + * Sync with upstream HG development source as of today (patchset 849): + + XSS fix with RenamePage and and DeletePage + + ACL fix: only send Sun, 16 Sep 2007 20:05:00 +0200 + +moin (1.5.8-1) unstable; urgency=low + + * New upstream release. + * Drop all earlier patches from upstream Mercurial: applied upstream. + * Sync with upstream HG development source as of today (patchset 845). + * Add XS-Vcs-Svn and XS-Vcs-Browser fields to debian/control. + * Update cdbs tweaks: + + Various improvements to update-tarball. + * Better duplicate build-dependency cleanup in debian/rules, and semi- + auto-update debian/control: + DEB_BUILD_OPTIONS=cdbs-autoupdate fakeroot debian/rules pre-build + * Replace deprecated ${Source-Version} with Use binNMU-safe + ${source:Version} in debian/control. Thanks to Lintian. + * Remove MoinMoin/i18n/meta.py in clean target. + + -- Jonas Smedegaard Mon, 03 Sep 2007 02:31:41 +0200 + +moin (1.5.7-3) unstable; urgency=high + + * Sync with upstream HG development source, including a security fix: + + XSS fix for AttachFile 'do' parameter. + CVE-2007-2423. Closes: bug#422408, thanks to EN Douli for discovery + and to Florian Weimer for reporting to Debian BTS. + * Update local cdbs tweaks: + + Improved upstream-tarball handling. + + Minor updates to debain/README.cdbs-tweaks. + * Cleanup duplicate build-dependencies. + * Set urgency=high due to the upstream security fix. + + -- Jonas Smedegaard Sun, 06 May 2007 10:01:44 +0200 + +moin (1.5.7-2) unstable; urgency=high + + * Sync with upstream HG development source, including a security fix: + + Respect ACLs in MonthCalendar macro. + * Update local cdbs tweaks: + + Check for copyrights at pre-build (at clean we might run before + actual cleanup has finished). + + Add new upstream-tarball.mk: get-orig-source target and more. + + Update debain/README.cdbs-tweaks. + * Set urgency=high due to the upstream security fix. + + -- Jonas Smedegaard Wed, 04 Apr 2007 10:48:07 +0200 + +moin (1.5.7-1) unstable; urgency=low + + * New upstream release. Closes: Bug#384349. + Highlights: + + XSS Fixes (already fixed in Debian NMU). + + Improved LDAP authentication. + + Various GUI editor improvements (but still buggy!). + + Attachments can be overwritten, moved to a different page, and + referenced. + + Various performance improvements. + + Rendering fixes (especially workarounds for IE6 bugs). + + Simplified migration routine. Please read + /usr/share/doc/moinmoin-common/README.Migration(.gz). + + Fix for forgotten password email login URL. + + Google sitemap support: ?action=sitemap. + + Updated translations: i18n strings, system and help pages. + + Hyphens are now allowed in usernames. Closes: Bug#383909. + + Improved docutils and ReST support. + * Acknowledge NMUs. Closes: Bug#373464, #383841, #410338, thanks to + Josselin Mouette, Pierre Habouzit, Martin Zobel-Helas and Toni + Mueller. + * Reorganize patches. + + Extend patches to 5 digits to make room for Hg changesets. + + Adjust debian/patches/README to mention Hg (not Arch). + + Use quilt (not the simple cdbs-internal patch system). + * Add patches to bring in sync with upstream Hg (patchset 822). + * Remove parts of CVE-2007-0857 applied upstream (changesets 805-806). + Rename patch to follow new 5-digit scheme. + * Rewrite README.packaging to describe getting changesets from Hg (not + Arch). + * Update CDBS tweaks: + + Update copyright-check.mk: Look for "(c)" too, avoid non-printable + characters, verbose error report. + + Update buildinfo.mk: Fix touchfile to run only once. + + Major overhaul of python-distutils.mk: Syncronize with main cdbs, + which adds support for new Python policy, and massive rewrite to + bring back functionality broken in the default implementation of + that new policy. + + Replace auto-update.mk with (overload of) buildcore.mk. + + Add README.cdbs-tweaks documenting the added tweaks. + + Advertise README.cdbs-tweaks in debian/rules. + * Enable new Python policy, except when DEB_BUILD_OPTIONS contains + "sarge". Closes: Bug#373464 (thanks to Pierre Habouzit and ). + * Bump up Standards-Version to 3.7.2 for non-default distros. + * Adjust long description to not mention dropped pythonXX-moinmoin. + * As stated in README.Debian, CGI interface has had most testing: + + Revert to suggesting apache in favor of libapache(2)-python. + + Suggest httpd-cgi (not httpd) as fallback. + * Cleanup and improve debian/rules: + + Use (newly improved!) tweaked cdbs again, to also support + distributions using the old python policy. + + Restore rules aaplying only to old python policy. + + Add switch to declare variables varying between python policies. + + Stitch together README.Debian from parts, referring to build- + dependent default python version, and leaving out section on + multiple packages when using new python policy. + + Stitch together README.Debian and moinmoin-common.postinst in + pre-build, and remove in clean. This avoids distributing changes + and then loosing it again automatically at next build. + + Add more comments. + + Move build targets to switch distribution down to the bottom. + * Update debian/copyright: + + Add new copyright for Bubblehelp infoboxes (license: GPLv2). + + Add new copyright for EXIF filter (license: BSD-like). + + Fix non-unicode Character (copyright-holder Peter Ã…strand). + * No longer install docs/CHANGES.config dropped upstream. + * Add note to README.Debian about risk of dict symlink breaking if + copying and using the data from a different location. This relates + only to the recent NMU changing (without documentaing!!!) from + static to shared symlink. + * Use Build-depends (not Build-depends-Indep) for non-default + distributions. + * Tightened pyversions to only include 2.3 and higher. + * Suppress lintian warnings about INSTALL.html in docs (contains + valuable info on further steps than automated in this packaging) and + non-executable scripts in underlay (they should never be executed + from there). + + -- Jonas Smedegaard Fri, 16 Mar 2007 18:07:48 +0100 + +moin (1.5.3-1.2) unstable; urgency=low + + * Non-maintainer upload. + * Adding patch from BTS to fix CVE-2007-0857 (Closes: #410338) + + -- Martin Zobel-Helas Tue, 27 Feb 2007 10:00:39 +0100 + +moin (1.5.3-1.1) unstable; urgency=low + + [ Pierre Habouzit ] + * Non-maintainer upload. + * Update package to the last python policy (Closes: #373464). + * Bump Standards-Version to 3.7.2. + + [ Josselin Mouette ] + * Update Suggests now that mod_python packages were rebuilt. + * Build-depend on python-dev, python-all-dev is too much. + * python-moinmoin needs python-support for a few private modules. + + -- Josselin Mouette Sat, 30 Sep 2006 11:28:58 +0200 + +moin (1.5.3-1) unstable; urgency=medium + + * New upstream release. Closes: bug#363354 (thanks to Bob Tanner + ). + * Drop all patches: they are all included upstream now. + * Raise to urgency=medium due to XSS fix. + + -- Jonas Smedegaard Wed, 19 Apr 2006 13:40:13 +0200 + +moin (1.5.2-7) never-really-released; urgency=low + + * Add patches to match upstream changeset 473. + * Mention source of upstream patches in debian/copyright. + + -- Jonas Smedegaard Mon, 13 Mar 2006 11:59:40 +0100 + +moin (1.5.2-6) unstable; urgency=medium + + * Add patches to match upstream changeset 457. + + Fixes mild security issue when SuperUser is wrongly configured. + * Raise to urgency=medium due to the above mild security issue. + * Improve wording of renaming in preinst, and emit only a single long + line on error. + * Update TODO with a bunch of entries. + * Add README.packaging to source, with hints about, well, packaging. + + -- Jonas Smedegaard Thu, 23 Feb 2006 00:02:28 +0100 + +moin (1.5.2-5) unstable; urgency=low + + * Fix parsing options within preinst. + * While at it, improve preinst to include a package version next to + each md5sum. + * Fix a few typos (missing "echo" and line continuation) in preinst + and postinst, and change their indentation. + + -- Jonas Smedegaard Sat, 18 Feb 2006 14:16:58 +0100 + +moin (1.5.2-4) unstable; urgency=low + + * Whoops: Fix line-continuation in preinst. + + -- Jonas Smedegaard Fri, 17 Feb 2006 20:21:55 +0100 + +moin (1.5.2-3) unstable; urgency=low + + * Add patches to match upstream changeset 450. + * Add md5sum of 1.4.99+1.5.0rc1 configfile to preinst rename routine. + * ReST parser is again included by default: + + Suggest recent python2.3-docutils. + + Drop TODO item about packaging rst separately. + * Semi-auto-update debian/control. + + -- Jonas Smedegaard Fri, 17 Feb 2006 02:02:11 +0100 + +moin (1.5.2-2) unstable; urgency=low + + * Add patches to match upstream cset 446. + + -- Jonas Smedegaard Thu, 16 Feb 2006 17:38:25 +0100 + +moin (1.5.2-1) unstable; urgency=low + + * Official packaging of new upstream release, incorporating the work + documented in the below two changelog entries (thanks to Overfiend). + + Fixes running as python handler in apache 1.x. Closes: bug#339543 + (thanks to Nick Phillips ). + + Favor quoted-printable for email notifications over base64. This + closes: bug#343621 (thanks to "Brian T. Sniffen" + ). + * Move cdbs auto-update enabling into local snippet. + * Correct namespace of cdbs snippet buildinfo.mk + * Correct namespace and improve cdbs snippet copyright-check.mk. + * Use Homepage instead of Website in debian/control, per DDR 6.2.4. + * Improve watch file: Use special sf-syntax, and simplify regex. + * Semi-auto-update debian/control. + * Add hint about python-moinmoin to moinmoin-common long description + (thanks to Alexander Schremmer ). + * Improve wording of README.Debian: + + Recommend reading upstream INSTALL.html not only for other kinds + of setup but also for more info on the one with example provided. + + Mention in section about farmconfig that this is enabled in Debian + by default. + Both thanks to Alexander Schremmer . + * Relax conflict/replacement of moin, and tighten dependencies on + moinmoin-common. This closes: bug#347450 (thanks to Raphael Bossek + ). + + -- Jonas Smedegaard Sat, 11 Feb 2006 00:55:30 +0100 + +moin (1.5.2-0.branden.1) unstable; urgency=low + + * Local NMU to package latest upstream release, 1.5.2. + + * debian/configtweaks.sed: Normalize whitespace so upstream changes to it + don't provoke changed-conffile prompts. + * debian/rules: Clean up the logic for munging the upstream wikifarm config + files a little. Remove a useless use of cat. + + * Upstream has renamed the moinmaster.py wikifarm example script to + mywiki.py; add logic to moinmoin-common's maintainer scripts to rename the + conffile likewise on package upgrades. + + debian/moinmoin-common.preinst: (new) Perform renaming, if applicable. + + debian/moinmoin-common.postinst: Finalize renaming. + + debian/moinmoin-common.prerm: (new) Roll back renaming if package + upgrade or install is aborted, and if renaming took place in the preinst. + + -- Branden Robinson Wed, 8 Feb 2006 00:37:35 -0500 + +moin (1.5.1+1.5.2rc1-0.branden.1) unstable; urgency=low + + * Local NMU to package latest upstream release candidate, 1.5.2rc1. + + * debian/rules: UPDATE.html vanished upstream; stop trying to ship it. + * debian/rules: Search for farmconfig files in config/wikifarm, since they + have moved upstream. Also remove the -and -not -name wikiconfig.py test + from the corresponding find command, since the single-site wikiconfig.py + is stored in the parent directory, where it won't be found. + + -- Branden Robinson Sat, 4 Feb 2006 15:31:24 -0500 + +moin (1.4.99+1.5.0rc1-1) unstable; urgency=low + + * New upstream prerelease. Closes: bug#339363 (thanks to Saku Ytti + ). + * Add note to NEWS about non-english underlay pages now distributed as + packages attached to SystemPagesSetup. Add TODO item about packaging + non-english underlay pages as Debian packages instead (or as well?). + + -- Jonas Smedegaard Wed, 21 Dec 2005 12:52:05 +0100 + +moin (1.4.99+1.5.0beta6-1) experimental; urgency=low + + * New upstream prerelease. + * Drop quoting more than just copyright and licensing of GPL texts in + debian/copyright, to avoid lintian complaining about wrong address. + + -- Jonas Smedegaard Fri, 16 Dec 2005 23:57:38 +0100 + +moin (1.4.99+1.5.0beta5-1) experimental; urgency=low + + * New upstream prerelease. + + Fixes mod_python adaptor failing to handle Location correctly. + Closes: bug#339543 (thanks to Nick Phillips ). + + Licensing issues fixed for cplusplus and java parser modules. + + -- Jonas Smedegaard Tue, 13 Dec 2005 01:54:19 +0100 + +moin (1.4.99+1.5.0beta4-1) experimental; urgency=low + + * Improve wording of use of non-default Python versions in + README.Debian (thanks to Michael Schmitt ). + * Refer to specific further reading beyond the simple exaple setup + in README.Debian. + * Drop python2.2-moinmoin - it might still work but too little tested + for upstream to support it. + * Drop support for woody backports. + * Include new doc files docs/CHANGES.config and docs/HACKS. + * Improve debian/copyright: + + Added ReStructured Text Parser: GPL. + + Added FCKeditor: LGPL. + + Added daemon.py: BSD-like. + + Added thfcgi.py: GPL. + + Added NetRube_Upload: Free use. + + Added wz_jsgraphics: GPL. + + Added IE7: LGPL. + + Added phpwiki2moinmoin: GPL. + * Strip Mega Upload and other unused parts of FCKeditor from source, + as suggested by upstream of FCKeditor. + * Strip cplusplus and java parser modules from source, as licensing + info is simply "all rights reserved". + * Add new cdbs snippet to check at build time for changed copyright + notices. + * Strip irrelevant parts of FCKeditor, and move documentation parts + below below /usr/share/doc/.../FCKeditor/ . + * Add note to NEWS about loads of config changes requiring manual + adjustments after examining upstream changelog. + * Add notes to TODO about things I should do before final release but + haven't found time to do yet... + * Drop a TODO note about fixing a cache bug: Can't even reproduce it + myself anymore, so probably fixed upstream already without my + reporting it :-P . + + -- Jonas Smedegaard Thu, 24 Nov 2005 21:02:12 +0100 + +moin (1.4.99+1.5.0beta3-1) experimental; urgency=low + + * New upstream prerelease. Closes: bug#339363 (thanks to Nick Phillips + ). + * Drop all patches: They are all included upstream now. + * Update danish l12n. + + -- Jonas Smedegaard Tue, 15 Nov 2005 00:05:29 +0100 + +moin (1.3.5-1) unstable; urgency=low + + * New upstream release. Closes: bug#331222 (thanks to Steffen Joeris + ). + * Drop patches now included upstream: + - 001_patch-867 + - 002_patch-868 + - 003_patch-869 + * Add upstream post-release patches, and manually add patch version: + + 001_patches-883-935.patch + + 202_make_patchlevel-visible.patch + * Add note to debian/TODO about ant command to compile TWikiDrawPlugin + using gcj (still not included as build.xml is broken: requires + internet access in the build environment :-P ). + * Bump up standards-version to 3.6.2. + * Improve notes on simple sample setup in README.Debian: + + Store data below outside webroot to avoid leaking private info. + Closes: bug#308764 (thanks to Olivier Sessink + ). + + Setup underlay. + + Mention (briefly) non-Apache setups. + + Comment out variables in farmconfig defined locally in each wiki. + Closes: bug#326172 (thanks to Branden Robinson + ). + + -- Jonas Smedegaard Fri, 4 Nov 2005 16:21:57 +0100 + +moin (1.3.4.really.1.3.5rc1-1) unstable; urgency=low + + * New upstream prerelease. + * Use pristine source again (I believe it is ok to distribute the java + binary with source when its source is included too - a fresh compile + for inclusion in a binary package is still on the TODO). + * Add small note pointing an unofficial home of TwikiDrawPlugin at + http://debian.jones.dk/auryn/pool-all/official/moin/twikidraw/ + * Drop prepatch now included upstream: + - 11_failsafe_i18_clean + * Drop patches included upstream: + - 22_danish_locale_update + - 25_allow_singlequote_in_acounts + - 27_xslt_fix + * Add upstream post-rc patches and drop older patches they supercede: + + 001_patch-867 + + 002_patch-868 + + 003_patch-869 + - 22_german_locale_update + - 24_twikidraw_strip_cr + - 26_fallback_to_iso8859-1_dicts + * Renumber remaining patch, and add README about numbering scheme: + - 02_dict_is_local + + 201_dict_is_local + * Adjust path in source to changelog and docs. + * Added copyright and licensing info of pikipiki, twikidraw and lupy + to debian/copyright. + * UTF-encode debian/copyright. + * Bump up watch file to version 3. + * Move examples to subdir debian/examples. + * Add a couple of example scripts for maintaining underlay dirs. + + -- Jonas Smedegaard Sun, 31 Jul 2005 13:26:40 +0200 + +moin (1.3.4-6) unstable; urgency=low + + * Patch user.py to allow account names containing single-quotes. + Closes: bug#317514 (thanks to Marco d'Itri ). + * Small update to german (de) locale. Closes: bug#313952 (thanks to + Jens Seidel ). + * Update local python cdbs snippet (and manually strip spurious build- + dependency build-essential due to bug#316034). + * Only do cdbs debian/rules auto-update when DEB_BUILD_OPTIONS=update. + * Patch action/SpellCheck.py to fallback to iso8859-1 encoded dicts. + * Tweak paths in all patches to apply in first attempt by cdbs. + * Fix XSLT brokennes (using info found here: + http://moinmoin.wikiwikiweb.de/MoinMoinBugs/XsltParserOnDebian ). + Actually - it is still broken to me, but at least the error is now a + different one (and may only relate to the XsltVersion test page)... + * Strip comments in underlay about only editing on masterwiki + (especially for templates they are confusing). + + -- Jonas Smedegaard Sat, 9 Jul 2005 14:19:53 +0200 + +moin (1.3.4-5) unstable; urgency=medium + + * Run dh-python a bit earlier (bug#172283 resurfacing) to get python + code optimized at install time. (this breaks woody backport support + but that was already broken anyway). + * Include unversioned python-gdchart suggestion only for + python2.3-moinmoin package. + * Set urgency=medium as the changes are small but the gain is high. + + -- Jonas Smedegaard Fri, 6 May 2005 22:42:40 +0200 + +moin (1.3.4-4) unstable; urgency=low + + * Use prdownloads.sourceforge.net for upstream source in copyright. + * Make suggestions Python-versioned. + * Add hint to README.Debian on easing migration with mc. + * Add pointers to additional cleanup code on moinmoin..de wiki. + * Install README.Debian with all packages. Closes: bug#304540. + * Include example configs for apache 1.3 and 2.0. Closes: bug#284424. + * . + + -- Jonas Smedegaard Thu, 5 May 2005 00:25:14 +0200 + +moin (1.3.4-3) unstable; urgency=high + + * Drop transitional binary package "moin", as it is only relevant for + users of testing and unstable, and there it causes unpleasant + surprises more(?) than it helps. Closes: bug#304054, #303957 (thanks + to Toni Mueller and others). + * Improve migration section of README.Debian and refer NEWS item to + that instead of directly to README.migration. Closes: bug#204146 + (thanks to Markku Tavasti and Aaron + Bentley ). + * Remove TODO item related to the above. + * Force using/aoviding specific python version also for scripts + installed as part of the library. + * Set urgency=high as these changes (together with removing the old + "moin" package from the archive) "fixes" breakage of existing + unstable and testing moin installs. + + -- Jonas Smedegaard Mon, 11 Apr 2005 13:55:57 +0200 + +moin (1.3.4-2) unstable; urgency=low + + * Official release. + * README.Debian updated and improved. Closes: bug#201580 (thanks to + Hanspeter Kunz and others). + * LocalSpellingWords is now utf-8 encoded. Closes: bug#302602 thanks + to Martin F. Krafft and others for reporting + this). + * INSTALL.html is included now. Closes: bug#302339 (thanks to Paul + ). + + -- Jonas Smedegaard Fri, 8 Apr 2005 04:44:24 +0200 + +moin (1.3.4-1.0.jones.3) unstable; urgency=low + + * Have cdbs snippet get python version from 'python -V' like dh_python + does it. + * Simply have a rule for each of woody, sarge and ubuntu, untied to + the standard build to force switch distro and then stay with it. + * Hardcode dependencies for library packages (dh_python is broken: + adds dependency always on default python). + * Make scripts executable. + + -- Jonas Smedegaard Fri, 8 Apr 2005 03:08:30 +0200 + +moin (1.3.4-1.0.jones.2) unstable; urgency=low + + * Handle ubuntu and woody builds as DEB_BUILD_OPTIONS. + * Make source of ubuntu build be moin1.3 (they have old moin released + already and want both distributed concurrently). + * Correct hashbang-line in example files of library packages. + * Improve python cdbs snippet, and setup variables in separate one. + + -- Jonas Smedegaard Thu, 31 Mar 2005 00:20:22 +0200 + +moin (1.3.4-1.0.jones.1) unstable; urgency=low + + * Split into several binary packages: moinmoin-common with data and + and python2.x-moinmoin with libraries built for each version of + Python. + * Suggest 4suite non-python-versioned. + * Fix encoding of handcrafted LocalSpellingWords wikipage. + * Update and improve README.Debian. Closes: bug#201580 (thanks to + Hanspeter Kunz and others). + * Include INSTALL.html. + * Conflict with old moin. + + * Prerelease...! + + -- Jonas Smedegaard Wed, 30 Mar 2005 04:56:07 +0200 + +moin (1.3.4-1) unstable; urgency=low + + * New upstream release. Closes: bug#287006, #291527 (thanks for the + patience, everyone). + + XMLRPC fixed. Closes: bug#285555, #285672 (thanks to Kai Weber + and Christian Grigis ). + * Extend dependency on http daemons to include libapache2-mod-python. + * Drop some patches (for arguments on remaining patches see + http://moinmoin.wikiwikiweb.de/DebianPatches ): + + Adopted upstream: + - 06_interwiki_update.diff + - 07_avoid_hardcoded_pythonversion.patch + - 21_danish_locale_fixup.diff + - 22_danish_locale_update.diff + + Possibly too tight for some (preserved in source tarball): + - 01avoid_world_write_access.diff + + Implemented differently upstream: + - 03_enable_farm_config.diff + + Obsolete: + - 05ftversion_is_revision.diff + * Add patch 22_danish_locale_update.diff. + * Rebuild MoinMoin/i18n/ after patching to make sure all is in sync. + * Suggest 4suite non-python-versioned. + * Drop obsolete example config. + * Disable (but keep) bad-permission-check rule (world-write patch + dropped - see above). + * Use local cdbs snippet to invoke dh_buildinfo. + * Rename NEWS.Debian to NEWS to get properly installed. + * Patch MoinMoin/i18n to not fail if cleaned files doesn't exist (and + include the patch in source below debian/prepatches). + * Fix cdbs hint to not compress example Python scripts. + * Use CHANGES (not the more verbose Changelog) as upstream changelog. + * Add patch 24_twikidraw_strip_cr.diff. Closes: bug#297960 (thanks to + Pedro Zorzenon Neto ). + * Include pristine config files as example files. + * Update and correct README.Debian. + * Use cdbs debian/control auto-update (and enhance local cdbs snippets + to use it). + + -- Jonas Smedegaard Tue, 22 Mar 2005 03:05:47 +0100 + +moin (1.2.4-1) unstable; urgency=high + + * New upstream release. + Fixes: + + fixed "None" pagename bug in fullsearch/titlesearch. + + fixed projection CSS usage. + + the compiled page is removed when a page is deleted, so no ghost + page appears after deletion. + + fixed AbandonedPages day-break problem. + + fixed [[GetVal(WikiDict,key)]]. + + the msg box is now outside content div on PageEditor, too. + + privacy fix for email notifications: you don't see other email + addresses in To: any more. mail_from is now also used for To: + header field, but we don't really send email to that address. + + privacy fix for /MoinEditorBackup pages that were made on previews + of pages that were not saved in the end. + + fix double content div on PageEditor preview. + Other changes: + + workaround for broken Microsoft Internet Explorer, the page editor + now stops expanding to the right (e.g. with rightsidebar theme). + Nevertheless it is a very good idea to use a non-broken and more + secure browser like Mozilla, Firefox or Opera! + + from MoinMoin.util.antispam import SecurityPolicy in your + moin_config.py will protect your wiki from at least the known + spammers. See MoinMoin:AntiSpamGlobalSolution for details. + + xmlrpc plugin for usage logging, currently used for antispam + accesses. + + (re-)added some configurable meta tags. + + i18n updates/fixes, new: nb. + + New UserPreferences switch: + you may subscribe to trivial changes (when you want to be notified + about ALL changes to pages, even if the author deselected to send + notifications). This closes: bug#269456 (thanks to Laurent Fousse + for the - slightly different - patch). + + New AttachList and AttachInfo macros - thanks to Nigel + Metheringham and Jacob Cohen. + * Update TODO (one wish solved in the new upstream release). + * Update danish locale. + * Add (commented out) new antispam setting to farm_config.py. + * Patch to avoid hardcoded python version (thanks to my own clever + build targets :-) ). + * Set urgency=high to hopefully get this bugfix release into sarge. + + -- Jonas Smedegaard Fri, 29 Oct 2004 13:35:35 +0200 + +moin (1.2.3-1) unstable; urgency=high + + * New upstream release. Closes: Bug#265376, #263564 (thanks to Douglas F. + Calvert and Kai Weber ): + + fixed NameError "UnpicklingError" in user.py + + Security-related bugfix: reverts done by bots or leechers... + There was a bad, old bug that triggered if you did not use ACLs. In that + case, moin used some simple (but wrong and incomplete) function to + determine what a user (or bot) may do or may not do. The function is now + fixed to allow only read and write to anon users, and only delete and + revert to known users additionally - and disallow everything else. + + avoid creation of unneccessary pages/* directories + + removed double content divs in general info and history info pages + + fixed wiki xmlrpc getPageHTML + + fixed rightsidebar logout URL, also fixed top banner to link to FrontPage + + use config.page_front_page and .page_title_index for robots meta tag + (whether it uses index,follow or index,nofollow), not hardcoded english + page names + + ACL security fix for PageEditor, thanks to Dr. Pleger for reporting + + default options for new users are same as for anon users + + do not show excluded actions at bottom of page + + i18n updated: ja, de, zh + + editor: removed the columns size setting, just using 100% of browser + window width (it didn't work because of that anyway). Also removed that + "reduce editor size" link at top of editor as you would lose your + changes when using it. + * Remember to strip twikidraw.jar from source tarball. + * Set urgency=high due to the above security-related bugfixes, and due + to twikidraw.jar erronously provided with the earlier release. + * Drop patch included upstream: 11_UnpicklingError.diff. + * Drop cleaning debian/dh-buildinfo (never created - must've been from + a manual test run). + * Added danish localisation for newly added reject string. + * Added note in README.Debian about the need for CGI support. Closes: + Bug#260861 (thanks to , although not using the + provided diff). + * Udate watch file: + + Use generic sourceforge "prdownload" host, which seems to be the + only option currently - although working only for checking, not + for automated downloads. + + Add comment about usage of the file. + + Add comment about brokenness of sourceforge URL. + + Make URL as generic as possible. + * Update TODO (add note on *.py optimizing below /usr/share/moin). + + -- Jonas Smedegaard Fri, 20 Aug 2004 17:17:42 +0200 + +moin (1.2.2-1) unstable; urgency=low + + * New upstream release. Closes: Bug#254756 (thanks to Ben + ): + + Improved diff generation (python 2.3 difflib used and local copy + dropped). + + Scripts changed to use #!/usr/bin/env python. + + Users now _must_ specify a password when creating a new account. + + User accounts matching config.page_group_regex are now illegal. + Note: existing accounts must be manually checked (read upstream + changelog for more info). + + subscription email sending now honours ACLs correctly. + + Several markup / rendering / user interface fixes/improvements. + + RSS fixes: non-ASCII characters; UTC timestamps; RecentChanges ok. + + Better email generation: Message-ID header; standards compliant + subject; use config.mail_from with "lost my password" emails. + + Improved file attachments handling. + + Themes improvements, and new theme "rightsidebar" added. + + Crashing bugs fixed: diffs for deleted pages; xml footnotes; + SystemInfo with empty editlog. + + Improved robots hints. + + Translation updates / fixes, and russian i18n added. + + TitleIndex now sorts case-insensitively. + + New macro: PageHits.py. + * Include patch for UnpicklingError bug (thanks again to Ben + ). + * Drop hashbang patches: fixed upstream now. + * Improve woody backport-ability: + + Set DEB_PYTHON_COMPILE_VERSION immediately (use := instead of =). + + Add newline when changing hashbang (bug in perl 5.6?). + + Include difflib from python 2.2.3. + * Update InterWiki.txt. + * Small but important fix to danish localisation: + s/BrugerIndstillinger/BrugerProfil/g . + * Standards-version 3.6.1 (no changes needed). + + -- Jonas Smedegaard Thu, 17 Jun 2004 07:27:16 +0200 + +moin (1.2.1-1) unstable; urgency=low + + * New upstream release. + + wiki/data/plugin/__init__.py added (closes: Bug#235225) + + plugin processors work now, too + + fixed displaying non-existant translations of SiteNavigation in + footer + + fixed zh-tw iso name (wrong zh_tw -> correct zh-tw) + + fixed reversed diffs in RecentChanges RSS + + fixed "last change" info in footer (wasn't updated) + + fixed event.log missing pagename (and other) information + + fixed horizontal line thickness >1 + + fixed setup.py running from CVS workdir + + fixed crash when doing action=info on first revision of a page + + fixed hostname truncation in footer + + minor css fixes + + fixed clear msg links (they missed quoting, leading to strange page + names when you click on some of them) + + fixed python colorizer processor + + fixed quoting of stats cache filenames + + catched "bad marshal data" error when switching python versions + + updated danish, japanese, serbian and chinese i18n, and + maintainance scripts now included with source (closes: Bug#220913) + + new "viewonly" theme + + New scripts for xmlrpc-tools and account checking added + * Include as separate file the patch to enable farm_config by default. + * Remove debian/buildinfo in clean target. + * Make CGI script executable. + * Improved python version handling in debian/rules: + + Current python version hardcoded only once (to ease upgrading to + next major release) + + Patch hashbang of all scripts to use unversioned python (closes: + bug#236254) + + Check in clean target that no new versioned python scripts slips + through + + Support explicit using python2.2 (needed for backport to woody) + simply by setting "DEB_BUILD_OPTIONS=python22" at build time. + + Tighten build-dependency on cdbs to support the above + * Add note to debian/copyright about java applet stripped from source. + * Unfuzz patches, and update 11_danish_l10n_updates (all earlier + changes adopted upstream, minor new corrections added). + * Replace patch 06_wikipedia_url_update with a larger and more general + 06_interwiki_update (matching update done upstream on MoinMaster). + * Minor tweaks to farm_config.py. + * Update example config with more ACL stuff and update l12n. + * Move some files from cgi-bin dir out as example scripts. + * Add some items to TODO. + + -- Jonas Smedegaard Sun, 21 Mar 2004 14:15:15 +0100 + +moin (1.2-1) unstable; urgency=low + + * New upstream release. Closes: Bug#229759. + + Support for persistent environments twisted-web, standalone, + mod_python and FastCGI (none of them tested with Debian) in + addition to plain CGI. + + Caching of rendered pages. + + Improved, internal diff handling. + + Support for http basic auth. + + Configurable timezone offset. + + Configurable cookie lifetime. + + Theme support. + + Improved logfile access. Closes: Bug#224218. + + Support for automatic page refreshing. + + Improved UserPreferences layout (most options suppressed until + user has logged in). + + Support for dictionary definitions. + + Improved UTF8 support (but still ISO-8859-1 by default). + + Improved "wiki groups" handling. + + Mostly HTML 4.01 Strict compliant HTML, and use of CSS for visual + markup. + + Updated (and further improved to handle imagemaps) TWikiDrawPlugin + (not included with this Debian package). + + Fixed email headers and encoding. + * Updated debian/copyright: + + Drop info included in debian/changelog + + Update copyright and licensing info (only cosmetic changes, and + years covered updated) + * Add NEWS.Debian suggesting to read HelpOnUpdating for needed local + updates. + * Update patches. + + Unfuzz. + + Drop outdated 04german_locale_update.diff + + New danish l18n update. + * Remove obsolete (and temporarily disabled) simplified login patch. + * Tighten access rights to 0750/0640 (giving world read access doesn't + make sense with ACLs - as pointed out in upstream comment). Also, no + longer "shout" at upstream default (no longer world write, only + group write - which is still unnecessary in most situations). + * Ignore PNG files in compile time access rights check. + * Update farm_config.py and sample config.py to match upstream + changes. + * Enable farm_config by default. + * Avoid installing as Debian native package. + * Recommend mail-transport-agent. + * Suggest httpd, libapache-mod-python, twisted or + libapache-mod-fastcgi. + + -- Jonas Smedegaard Fri, 27 Feb 2004 01:34:24 +0100 + +moin (1.1.cvs20031026-1) unstable; urgency=low + + * New CVS snapshot. + * Shrink l10n patch to only include da.py file (translated text files + are included upstream). + * Change suggestion to python2.3-4suite (not in Debian yet, but + hopefully one day...). + * Disable patch 21_simplify_new_login.diff (it wad buggy, and upstream + has changed userform design). + * Add symlink from /usr/share/dict/words to + /usr/share/moin/data/dict/words. + * Add new /etc/moin/farm_config.py, and update example moin_config.py + to use it. + * Correct make target so dh_buildinfo is actually used (closes: + Bug#211416). + * The scripts in site-packages are not meant to be executed, so strip + hashbang altogether (closes: Bug#206395). The actual scripts are + provided at /usr/share/doc/moin/examples, because they need tweaking + to include local config of each installed wiki (closes: Bug#210451). + + -- Jonas Smedegaard Mon, 27 Oct 2003 03:09:51 +0100 + +moin (1.1.cvs20030814-1) unstable; urgency=low + + * New CVS snapshot. + * Update to python2.3 (closes: Bug#205143). + * Add a couple of wishlist items to TODO. + + -- Jonas Smedegaard Thu, 14 Aug 2003 02:39:27 +0200 + +moin (1.1.cvs20030802-3) unstable; urgency=low + + * Even more updates to danish l10n. + + -- Jonas Smedegaard Sat, 9 Aug 2003 16:48:56 +0200 + +moin (1.1.cvs20030802-2) unstable; urgency=low + + * Update danish l10n. + * Patch userform.py to simply login for first time users. + * Update example config to use new security scheme, and include l10n + of both template, category and form pages. + * Add watch file. + + -- Jonas Smedegaard Thu, 7 Aug 2003 13:07:18 +0200 + +moin (1.1.cvs20030802-1) unstable; urgency=low + + * New CVS snapshot. + + Added Croatian + + added ACL support, written by Gustavo Niemeyer of Conectiva and + Thomas Waldmann. See HelpOnAccessControlLists for more infos. + * Switch to cdbs. + * Standards-version 3.6.0. + * Re-include wikiext.py (still unfinished, but at least compiles + without error now). + * Use (and build-depend on) dh-buildinfo. + + -- Jonas Smedegaard Sun, 3 Aug 2003 21:47:21 +0200 + +moin (1.1.cvs20030430-1) unstable; urgency=medium + + * New CVS snapshot. + Security fixes: + + [ 522246 ] Transparently recode localized messages + + [ 685003 ] Using "preview" button when editing can lose data + + use gmtime() for time handling + + [[Include]] accepts relative page names + New features: + + if a fancy link starts with '^' (i.e. if it has the form + "[^http:... ...]"), it's opened in a new window + + moin-dump: New option "--page" + + list items set apart by empty lines are now also set apart + visually (by adding the CSS class "gap" to
  • ) + + selection to add categories to a page in the editor (use preview + button to add more than one category) + + `MailTo` macro for adding spam-safe email links to a page + + added "revert" link to PageInfo view (which makes DeletePage more + safe in public wikis, since you can easily revive deleted pages + via revert) + + `config.mail_login` can be set to "user pwd", if you need to + use SMTP AUTH + + replaced `config.page_template_ending` by a more flexible setting + named `config.page_template_regex` + + `config.edit_locking` can be set to None (old behaviour, no + locking), 'warn ' (warn about concurrent edits, but + do not enforce anything), or 'lock ' (strict locking) + + if user has a homepage, a backup of save/preview text is saved as + an attachment named `moin-editor-backup.txt` + + `[[Navigation]]` macro for slides and subpage navigation + + ../SubPageOfParent links + + Selection for logged in users (i.e. no bots) to extend the listing + of recent changes beyond the default limits + + `config.shared_intermap` can be a list of filenames (instead of a + single string) + + [[ShowSmileys]] displays ALL smileys, including user-defined ones + + Updated the XSLT parser to work with 4Suite 1.0a1 + + "save" check for security.Permissions + + editor returns to including page when editing an included page + + the Include macro has new parameters (from, to, sort, items) and + is able to include more than one page (via a regex pattern) + Unfinished or experimental features: + + SystemAdmin macro + * Remove Debian-specific danish pages (they where all adopted + upstream). + * Roll back danish translation a few days to avoid newest unwanted + changes. + * Urgency medium because of the security issues. + * Update to latest version of CBS (Colin's Build System). + * Declare compliance with Debian Policy 3.5.9 (no changes needed). + * Update license info (added the year 2003) and add license of + PikiPiki. + * Update example config to include switching to MoinMoinMannen (thanks + to Jonas Furberg ) on authorized access. + * Update patches. + + Fix yet another bad permission setting. + + Remove danish translation updates included upstream now. + + Drop restructuring of configuration page (too lazy to maintain + them). + + -- Jonas Smedegaard Wed, 30 Apr 2003 22:04:29 +0200 + +moin (1.1.cvs20021222-1) unstable; urgency=low + + * New CVS snapshot. + + Make sure (again!) that twikidraw.jar is stripped from source. + Bugfixes also in 1.0 branch: + + correct handling of spaces in attachment filenames and URLs + Bugfixes: + + Create unique anchors for repeated titles + New features: + + "#pragma section-numbers 2" only displays section numbers for + headings of level 2 and up (similarly for 3 to 6) + + reciprocal footnote linking (definition refers back to reference) + + "Ex-/Include system pages" link for title index + + `config.smileys` for user-defined smileys + + new fancy diffs + + `config.hosts_deny` to forbid access based on IP address + Content updates: + + New language: it + + New language: sv (conflicting with da, grrr!) + + CSS improved + + Locale hint added on all pages + + Misc corrections and improvements + + Section "Arbitrary Page Names" moved from HelpForBeginners to + HelpOnLinking + + HelpOnConfiguration: Updated + + HelpOnInstalling_2fBasicInstallation: Add link to download site + + HelpOnMacros: Updated + + HelpOnSmileys: Line up example smileys in two rows + + SystemInfo: SystemAdmin macro removed + + RecentChanges: RandomQuote added + + WikiSandBox: Sample image and drawing added + * Remove CHANGELOG.old from CVS snapshot (my mess - not from + upstream). + * Switch to using Colin's Build System + + Invoke dh_python before dh_installdep (see BUG#172283) + + Get rid of bash dependency + + Isolate and update source patches. + * Scan at build time for evil chmod 777 and fail if found (found yet + another one in filesys.py). + * Remove byte-compiled configfile in postinst. + * Move (instead of patch and duplicate) german LocalSpellingWords. + * Enable all options in example config, and put all examples in same + folder. + * Add locale hint to danish pages. + * Update danish translated pages (only Hj_e6lpForBegyndere affected). + * Run a 'make test' at build time. + + -- Jonas Smedegaard Sun, 22 Dec 2002 22:32:26 +0100 + +moin (1.1.cvs20021129-1) unstable; urgency=low + + * New CVS snapshot. + + config.title1, config.title2, config.page_footer1, + config.page_footer2 can now be callables and will be called with + the "request" object as a single argument (note that you should + accept any keyword arguments in order to be compatible to future + changes) + + "config.html_pagetitle" allows you to set a specific HTML page + title (if not set, it defaults to "config.sitename") + + if a quick link starts with '^', it opens in a new window; help + now opens in a new window also + + last edit action is stored into "last-edited" file, and + displayed in the page footer + + Bugfix for wrong mail notifications + * Use new dh_python to calculate dependencies and handle compilation + at install-time, and depend on debhelper at least version 4.1.25 + that introduced the script. + * Change to use debhelper V4 now that it is needed anyway. + * Update TODO: Remove gdchart suggestion is done. + * Look for revision instead of version in optional 4suite module + (since current 4suite does that). This closes: Bug#171304 thanks to + Michael Schuerig . + + -- Jonas Smedegaard Sun, 1 Dec 2002 04:04:29 +0100 + +moin (1.1.cvs20021008-1) unstable; urgency=low + + * New CVS snapshot. + + handle corrupt cookies gracefully. + + Remove obsolete SecurityPolicy code from moin_config.py. + * Correct path to local dict directory (thanks to Dave Carrigan + for not giving up). This closes (for real) + Bug#163441. + + -- Jonas Smedegaard Tue, 8 Oct 2002 06:12:19 +0200 + +moin (1.1.cvs20020909-4) unstable; urgency=low + + * Remove badly coded and unused file wikiext.py (closes: bug#162246). + + -- Jonas Smedegaard Wed, 25 Sep 2002 12:47:04 +0200 + +moin (1.1.cvs20020909-3) unstable; urgency=low + + * Add postinst and prerm scripts found in python-optik. + + -- Jonas Smedegaard Tue, 24 Sep 2002 00:46:48 +0200 + +moin (1.1.cvs20020909-2) unstable; urgency=low + + * Suggest python-gdchart, and enable gdchart test. + + -- Jonas Smedegaard Mon, 23 Sep 2002 06:08:18 +0200 + +moin (1.1.cvs20020909-1) unstable; urgency=low + + * New CVS snapshot. + + -- Jonas Smedegaard Thu, 12 Sep 2002 20:18:17 +0200 + +moin (1.1.cvs20020805-2) unstable; urgency=low + + * Update danish config script to reflect new policy setup. + + -- Jonas Smedegaard Thu, 29 Aug 2002 03:42:20 +0200 + +moin (1.1.cvs20020805-1) unstable; urgency=low + + * New CVS snapshot. + * Build against python 2.2. Update (build-)dependencies respectively. + + -- Jonas Smedegaard Thu, 29 Aug 2002 03:06:58 +0200 + +moin (1.1.cvs20020715-2) unstable; urgency=low + + * Danish locale updates. + + -- Jonas Smedegaard Wed, 17 Jul 2002 02:13:51 +0200 + +moin (1.1.cvs20020715-1) unstable; urgency=low + + * New CVS Snapshot (nothing changed, actually, but needed a new source + for the next item...). + * Remove TwikiDrawApplet.jar from source. Will probably package it + seperately, but needs to go in non-free, because use of AWT makes it + require jre2. + * A few corrections to danish locale. + + -- Jonas Smedegaard Tue, 16 Jul 2002 06:26:34 +0200 + +moin (1.1.cvs20020711-4) unstable; urgency=low + + * Update WikiPedia InterWiki URL. + * Updates to danish locale, and a few additions to german locale. + * Added some danish help pages. + + -- Jonas Smedegaard Tue, 16 Jul 2002 05:28:19 +0200 + +moin (1.1.cvs20020711-3) unstable; urgency=low + + * Add some danish translated pages (and pass them upstream as well). + * Empty LocalSpellingWords (it was all german), except for a few + universal entries. Add the original file as example. + * Add my own danish localized config as example. + * Change default dir and file umask to 0755 and 0644. World writable + stuff is BAD! + * Suggest python2.1-4suite for xslt support (which is disabled by + default). + * Minor updates to danish locale. + * Use Makefile, and add a 'make test' (disabled for now...). + * Move intro text below the form in UserPreferences, to help type- + without-reading kind of new users. + + -- Jonas Smedegaard Sun, 14 Jul 2002 19:33:33 +0200 + +moin (1.1.cvs20020711-2) unstable; urgency=low + + * Remove wordlist link. Debian policy (and LFS?) says it to be a + relative link which (obviously) fails when moved somewhere else. + * Rewrite README.Debian and lower wordlist from Recommends to + Suggests, to reflect the above. + + -- Jonas Smedegaard Fri, 12 Jul 2002 19:22:02 +0200 + +moin (1.1.cvs20020711-1) unstable; urgency=high + + * New upstream CVS snapshot. + * Urgency high: Acouple of XSS vulnerabilities fixed today. + * My danish translation is adopted upstream now, Thanks :-) + * Remove MoinMoin/i18n/__init__.py.orig i left there when translating. + * Add dict folder with a link to site-wide words, and make a comment + about it in README.Debian. + * Recommend wordlist to support the above. + + -- Jonas Smedegaard Thu, 11 Jul 2002 21:59:15 +0200 + +moin (1.1.cvs20020623-6) unstable; urgency=low + + * Minor updates to danish locale. + * Add to danish locale a hint about logging in when denied access - as + suggested in documentaion at HelpOnConfiguration/SecurityPolicy + (wanted to do english as well, but that is not a locale :-( !!!). + + -- Jonas Smedegaard Sat, 29 Jun 2002 02:28:42 +0200 + +moin (1.1.cvs20020623-5) unstable; urgency=low + + * Explicitly note upstream author (apart from being mentioned in + License). + * Update danish l10n. + + -- Jonas Smedegaard Tue, 25 Jun 2002 18:56:46 +0200 + +moin (1.1.cvs20020623-4) unstable; urgency=low + + * Correct fatal quoting errors in danish locale. + + -- Jonas Smedegaard Tue, 25 Jun 2002 05:21:21 +0200 + +moin (1.1.cvs20020623-3) unstable; urgency=low + + * Add danish translation. + * Mention MoinMoin in short description (thanks to Luca De Vitis). + + -- Jonas Smedegaard Tue, 25 Jun 2002 04:46:31 +0200 + +moin (1.1.cvs20020623-2) unstable; urgency=low + + * Move scripts from /usr/bin to examples (not really sure if they are + useful out-of-the-box on Debian). + * The package is real (Closes: #150761). + + -- Jonas Smedegaard Sun, 23 Jun 2002 16:23:56 +0200 + +moin (1.1.cvs20020623-1) unstable; urgency=low + + * First unofficial release. + * Uncomment gdchart import attempt from moin_config.py for a small + speed gain. + + -- Jonas Smedegaard Sun, 23 Jun 2002 14:44:21 +0200 --- moin-1.7.1.orig/debian/watch +++ moin-1.7.1/debian/watch @@ -0,0 +1,3 @@ +# Run the "uscan" command to check for upstream updates and more. +version=3 +http://static.moinmo.in/files/moin-([\d+\.]+|\d+)\.tar\.gz debian uupdate --no-pristine --- moin-1.7.1.orig/debian/servertweaks.sed +++ moin-1.7.1/debian/servertweaks.sed @@ -0,0 +1,8 @@ +### This is sed code: "s" lines must end with a tab! ### +# Also beware of leading spaces in some text strings... + +# This file is used for all server scripts + +# Enable system-wide farmconfig, and avoid wikiconfig +s ^\([[:space:]\#]*\)\(sys.path.insert([[:digit:]]\+,[[:space:]]\+\)'/path/to/wikiconfigdir'\().*\) #\2'/etc/moin'\3 +s ^\([[:space:]\#]*\)\(sys.path.insert([[:digit:]]\+,[[:space:]]\+\)'/path/to/farmconfigdir'\().*\) \2'/etc/moin'\3 --- moin-1.7.1.orig/debian/copyright +++ moin-1.7.1/debian/copyright @@ -0,0 +1,264 @@ +This is MoinMoin packaged for Debian. + +Upstream source: http://static.moinmo.in/files + +Upstream patches: +http://arch.thinkmo.de/cgi-bin/archzoom.cgi/arch@arch.thinkmo.de--2003-archives/moin--main--1.5 + + +NB! Binary java applet included in upstream source is excluded from +distribution with debian. + +Upstream author: Jürgen Hermann + + + +Copyright and Licensing info, generally for MoinMoin: + +Copyright (c) 2000 - 2004 by Jürgen Hermann +All rights reserved, see COPYING for details. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + + + +MoinMoin is based on PikiPiki, this is PikiPiki's copyright: + + Copyright (C) 1999, 2000 Martin Pool + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + +The PikiPiki homepage is at http://sourcefrog.net/projects/piki/. + + + +Copyright and Licensing info, TwikiDrawPlugin java applet: + +TWikiDraw is based on Erich Gamma's JHotDraw 5.1. (JHotDraw is copyright +1996, 1997 by IFA Informatik and Erich Gamma, +erich_gamma@acmSPAMBLOCK.org . It is hereby granted that this software +can be used, copied, modified, and distributed without fee provided that +this copyright notice appears in all copies. ) + +TWikiDraw uses ACME Labs' GifEncoder to convert a drawing into a GIF +file format. (GifEncoder is Copyright (C)1996,1998 by Jef Poskanzer, +jef@acmeSPAMBLOCK.com . All rights reserved. THIS SOFTWARE IS PROVIDED +BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN +NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE.) + +TWikiDraw uses some ideas of KmWiki drawing applet. + +TWikiDraw: Copyright 2000 by Peter Thoeny, Peter@ThoenySPAMBLOCK.com. It +is hereby granted that this software can be used, copied, modified, and +distributed without fee provided that this copyright notice appears in +all copies. + +Modifications Copyright (C) 2001 Motorola. All Rights Reserved. + +PeterThoeny created TWikiDraw based on above software + +CrawfordCurrie made a number of improvements. + + + +Copyright and Licensing info, Lupy: + +# This module is part of the Lupy project and is Copyright 2003 Amir +# Bakhtiar (amir@divmod.org). This is free software; you can redistribute +# it and/or modify it under the terms of version 2.1 of the GNU Lesser +# General Public License as published by the Free Software Foundation. + + + +Copyright and Licensing info, rst.py ReStructured Text Parser: + + @copyright: 2004 by Matthew Gilbert + and by Alexander Schremmer + @license: GNU GPL, see COPYING for details. + + + +Copyright and Licensing info, FCKeditor: + + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2004 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + + + +Copyright and Licensing info, daemon.py: + +Copyright (c) 2005 Nir Soffer + +Twisted, the Framework of Your Internet +Copyright (c) 2001-2004 Twisted Matrix Laboratories. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + +Copyright and Licensing info, thfcgi.py: + + Copyright Peter Ã…strand 2001 + + Modified for MoinMoin by Oliver Graf 2003 + + Added "external application" support, refactored code + by Alexander Schremmer + + For code base see: + http://cvs.lysator.liu.se/viewcvs/viewcvs.cgi/webkom/thfcgi.py?cvsroot=webkom + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + + +Copyright and Licensing info, NetRube_Upload (part of FCKeditor): + +' File: NetRube_Upload.asp +' Version: NetRube Upload Class Version 2.1 Build 20050228 +' Author: NetRube +' Email: NetRube@126.com +' Date: 02/28/2005 +' Comments: The code for the Upload. +' This can free usage, but please +' not to delete this copyright information. +' If you have a modification version, +' Please send out a duplicate to me. + + + +Copyright and Licensing info, wz_jsgraphics (part of FCKeditor): + +Copyright (c) 2002-2003 Walter Zorn. All rights reserved. +Created 3. 11. 2002 by Walter Zorn +Last modified: 11. 6. 2003 + +High Performance JavaScript Graphics Library. +Provides methods +- to draw lines, rectangles, ellipses, polygons + with specifiable line thickness, +- to fill rectangles and ellipses +- to draw text. +NOTE: Operations, functions and branching have rather been optimized +to efficiency and speed than to shortness of source code. + +This program is free software; +you can redistribute it and/or modify it under the terms of the +GNU General Public License as published by the Free Software Foundation; +either version 2 of the License, or (at your option) any later version. +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; +without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +See the GNU General Public License +at http://www.gnu.org/copyleft/gpl.html for more details. + + + +Copyright and Licensing info, IE7: + + Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/) + License: http://creativecommons.org/licenses/LGPL/2.1/ + + + +Copyright and Licensing info, phpwiki2moinmoin: + + Copyright (C) 2004 The Anarcat + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +any later version. + + + +Copyright and Licensing info, infobox.js: + +// Bubblehelp infoboxes, (C) 2002 Klaus Knopper +// You can copy/modify and distribute this code under the conditions +// of the GNU GENERAL PUBLIC LICENSE Version 2. + + + +Copyright and Licensing info, MoinMoin/filter/EXIF.py: + +# Contains code from "exifdump.py" originally written by Thierry Bousch +# and released into the public domain. +# +# Updated and turned into general-purpose library by Gene Cash +# +# This copyright license is intended to be similar to the FreeBSD license. +# +# Copyright 2002 Gene Cash All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the +# distribution. +# +# THIS SOFTWARE IS PROVIDED BY GENE CASH ``AS IS'' AND ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR +# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# This means you may do anything you want with this code, except claim you +# wrote it. Also, if it breaks you get to keep both pieces. + + + +On Debian GNU systems the both GNU General Public License (GPL) and GNU +Lesser General Public License (LGPL) can be found below +/usr/share/common-licenses. --- moin-1.7.1.orig/debian/pycompat +++ moin-1.7.1/debian/pycompat @@ -0,0 +1 @@ +2 --- moin-1.7.1.orig/debian/examples/apache20.conf +++ moin-1.7.1/debian/examples/apache20.conf @@ -0,0 +1,31 @@ + + ServerName wiki.site.com + DocumentRoot /var/www/wiki.site.com + SuexecUserGroup jonas jonas + + + Options +ExecCGI + + + # Use default themes + Alias /wiki/ /usr/share/moin/htdocs/ + + AcceptPathInfo On + + RewriteEngine On + + RewriteRule ^/moin(/(.*))? /$2 [last,R] + + RewriteRule ^/wiki/ - [last] + RewriteRule ^/robots.txt - [last] + RewriteRule ^/favicon.ico - [last] + RewriteRule ^/?(.*) /var/www/wiki.site.com/moin.cgi/$1 [last,type=application/x-httpd-cgi] + + + + ServerName www.wiki.site.com + ServerAlias *.wiki.site.com + RewriteEngine On + RewriteRule / http://wiki.site.com/ [R] + TransferLog /dev/null + --- moin-1.7.1.orig/debian/examples/remove-from-underlay-en.py +++ moin-1.7.1/debian/examples/remove-from-underlay-en.py @@ -0,0 +1,32 @@ +#!/usr/bin/python +from glob import glob +from os import renames +from os.path import join, dirname, basename, normpath, abspath + +def pages_by_lang(pagesdir): + """Returns a dictionary of #language to page path.""" + pages = {} + for path in glob(join(pagesdir,'*','revisions', '00000001')): + pages.setdefault(scan_for_lang(path), + []).append(basename(dirname(dirname(normpath(path))))) + return pages + +def scan_for_lang(path): + """Returns #language from path or 'None' if #language not found.""" + for line in file(path): + # We assume no language declaration can occur after a blank line + if line[0] != '#': + break + if line.startswith('#language '): + return line.split()[1] + return None + +def move_unwanted(pagesdir, unwanteddir, wantedlangs=[None, 'en']): + pages = pages_by_lang(pagesdir) + for lang, paths in pages.iteritems(): + if lang not in wantedlangs: + for pagedir in paths: + renames(join(pagesdir, pagedir), join(unwanteddir, pagedir)) + +if __name__ == '__main__': + move_unwanted(abspath('./underlay_en/pages'), abspath('./unwanted_en/pages')) --- moin-1.7.1.orig/debian/examples/apache13.conf +++ moin-1.7.1/debian/examples/apache13.conf @@ -0,0 +1,28 @@ + + ServerName wiki.site.com + DocumentRoot /var/www/wiki.site.com + + + Options +ExecCGI + + + # Use default themes + Alias /wiki/ /usr/share/moin/htdocs/ + + RewriteEngine On + + RewriteRule ^/moin(/(.*))? /$2 [last,R] + + RewriteRule ^/wiki/ - [last] + RewriteRule ^/robots.txt - [last] + RewriteRule ^/favicon.ico - [last] + RewriteRule ^/?(.*) /var/www/wiki.site.com/moin.cgi/$1 [last,type=application/x-httpd-cgi] + + + + ServerName www.wiki.site.com + ServerAlias *.wiki.site.com + RewriteEngine On + RewriteRule / http://wiki.site.com/ [R] + TransferLog /dev/null + --- moin-1.7.1.orig/debian/examples/remove-if-ok-underlay-from-data.sh +++ moin-1.7.1/debian/examples/remove-if-ok-underlay-from-data.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# THIS CODE PROVIDES NO WARRANTY bla bla... +# Cleanup the datadir +# cleanupdatadir.sh /path/to/underlaydir /path/to/datadir + +for i in `find "$1"/pages -type d -mindepth 1 -maxdepth 1 -printf "%f\n"`; do + find "$2"/pages/"$i" -type d -maxdepth 0 -ok rm -rf '{}' ';' +done --- moin-1.7.1.orig/debian/cdbs/1/rules/package-relations.mk +++ moin-1.7.1/debian/cdbs/1/rules/package-relations.mk @@ -0,0 +1,50 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2004-2006 Jonas Smedegaard +# Description: Resolve, cleanup and apply package relationships +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_package_relations +_cdbs_rules_package_relations = 1 + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +# Merge build-dependencies on same packages +# TODO: rewrite (in perl, probably) to be more generic +CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bcdbs (>= 0.4.43)/ s/ *,* *\bcdbs (>= \(0.4.23-1.1\|0.4.27\|0.4.39\)) *,* */, /g') +CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bcdbs (>= 0.4.39)/ s/ *,* *\bcdbs (>= \(0.4.23-1.1\|0.4.27\)) *,* */, /g') +CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bcdbs (>= 0.4.27)/ s/ *,* *\bcdbs (>= \(0.4.23-1.1\)) *,* */, /g') +CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 5.0.44)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\|4.2.21\|4.2.28\|5\|5.0.37.2\)) *,* */, /g') +CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 5.0.37.2)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\|4.2.21\|4.2.28\|5\)) *,* */, /g') +CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 5)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\|4.2.21\|4.2.28\)) *,* */, /g') +CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 4.2.28)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\|4.2.21\)) *,* */, /g') +CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 4.2.21)/ s/ *,* *\bdebhelper (>= \(4.1.60\|4.2.0\)) *,* */, /g') +CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bdebhelper (>= 4.2.0)/ s/ *,* *\bdebhelper (>= \(4.1.60\)) *,* */, /g') + +# Cleanup superfluous commas +CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//') + +# Apply CDBS-declared dependencies to binary packages +$(patsubst %,binary-predeb/%,$(DEB_PACKAGES)) :: binary-predeb/%: + echo 'cdbs:Depends=$(CDBS_DEPENDS_ALL), $(or $(CDBS_DEPENDS_$(cdbs_curpkg)),$(CDBS_DEPENDS))' \ + | sed -e 's/ *,/,/g' -e 's/^ *, *//' -e 's/ *, *$$//' \ + >> debian/$(cdbs_curpkg).substvars + +endif --- moin-1.7.1.orig/debian/cdbs/1/rules/upstream-tarball.mk +++ moin-1.7.1/debian/cdbs/1/rules/upstream-tarball.mk @@ -0,0 +1,139 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2007-2008 Jonas Smedegaard +# Description: Convenience rules for dealing with upstream tarballs +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_upstream_tarball +_cdbs_rules_upstream_tarball := 1 + +include $(_cdbs_rules_path)/buildvars.mk$(_cdbs_makefile_suffix) + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.39) + +# Prefix for upstream location of all upstream tarballs (mandatory!) +#DEB_UPSTREAM_URL = + +DEB_UPSTREAM_PACKAGE = $(DEB_SOURCE_PACKAGE) +DEB_UPSTREAM_TARBALL_VERSION = $(if $(strip $(DEB_UPSTREAM_REPACKAGE_EXCLUDE)),$(DEB_UPSTREAM_VERSION:$(DEB_UPSTREAM_REPACKAGE_DELIMITER)$(DEB_UPSTREAM_REPACKAGE_TAG)=),$(DEB_UPSTREAM_VERSION)) +DEB_UPSTREAM_TARBALL_EXTENSION = tar.gz +# Checksum to ensure integrity of downloadeds using get-orig-source (optional) +#DEB_UPSTREAM_TARBALL_MD5 = + +DEB_UPSTREAM_WORKDIR = ../tarballs + +# Perl regexp to change locally used string into that in upstream URL and srcdir +#DEB_UPSTREAM_TARBALL_VERSION_MANGLE +cdbs_upstream_tarball_version_mangled = $(if $(strip $(DEB_UPSTREAM_TARBALL_VERSION_MANGLE)),$(shell echo '$(DEB_UPSTREAM_TARBALL_VERSION)' | perl -pe '$(DEB_UPSTREAM_TARBALL_VERSION_MANGLE)'),$(DEB_UPSTREAM_TARBALL_VERSION)) + +# Base filename (without extension) as used in upstream URL +DEB_UPSTREAM_TARBALL_BASENAME = $(DEB_UPSTREAM_PACKAGE)-$(cdbs_upstream_tarball_version_mangled) + +# Base directory within tarball +DEB_UPSTREAM_TARBALL_SRCDIR = $(DEB_UPSTREAM_PACKAGE)-$(cdbs_upstream_tarball_version_mangled) + +# Space-delimited list of directories and files to strip (optional) +#DEB_UPSTREAM_REPACKAGE_EXCLUDE = CVS .cvsignore doc/rfc*.txt doc/draft*.txt +DEB_UPSTREAM_REPACKAGE_TAG = dfsg +DEB_UPSTREAM_REPACKAGE_DELIMITER = ~ + +cdbs_upstream_tarball = $(DEB_UPSTREAM_TARBALL_BASENAME).$(DEB_UPSTREAM_TARBALL_EXTENSION) +cdbs_upstream_local_tarball = $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_TARBALL_VERSION).orig.$(if $(findstring $(DEB_UPSTREAM_TARBALL_EXTENSION),tgz),tar.gz,$(DEB_UPSTREAM_TARBALL_EXTENSION)) +cdbs_upstream_repackaged_basename = $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_TARBALL_VERSION)$(DEB_UPSTREAM_REPACKAGE_DELIMITER)$(DEB_UPSTREAM_REPACKAGE_TAG).orig +cdbs_upstream_uncompressed_tarball = $(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_TARBALL_VERSION).orig.tar + +# # These variables are deprecated +_cdbs_deprecated_vars += DEB_UPSTREAM_TARBALL DEB_UPSTREAM_LOCAL_TARBALL DEB_UPSTREAM_REPACKAGE_TARBALL +_cdbs_deprecated_vars += DEB_UPSTREAM_REPACKAGE_EXCLUDES +DEB_UPSTREAM_REPACKAGE_EXCLUDE += $(DEB_UPSTREAM_REPACKAGE_EXCLUDES) + +print-version: + @@echo "Debian version: $(DEB_VERSION)" + @@echo "Upstream version: $(DEB_UPSTREAM_TARBALL_VERSION)" + +get-orig-source: + @@dh_testdir + @@mkdir -p "$(DEB_UPSTREAM_WORKDIR)" + + @if [ ! -s "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" ] ; then \ + if [ -f "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" ] ; then \ + rm "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" ; \ + fi ; \ + echo "Downloading $(cdbs_upstream_local_tarball) from $(DEB_UPSTREAM_URL)/$(cdbs_upstream_tarball) ..." ; \ + wget -nv -T10 -t3 -O "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" "$(DEB_UPSTREAM_URL)/$(cdbs_upstream_tarball)" ; \ + else \ + echo "Upstream source tarball have been already downloaded: $(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" ; \ + fi + + @md5current=`md5sum "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" | sed -e 's/ .*//'`; \ + if [ -n "$(DEB_UPSTREAM_TARBALL_MD5)" ] ; then \ + if [ "$$md5current" != "$(DEB_UPSTREAM_TARBALL_MD5)" ] ; then \ + echo "Expecting upstream tarball md5sum $(DEB_UPSTREAM_TARBALL_MD5), but $$md5current found" ; \ + echo "Upstream tarball md5sum is NOT trusted! Possible upstream tarball forge!" ; \ + echo "Purging downloaded file. Try new download." ; \ + rm -f "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" ; \ + false ; \ + else \ + echo "Upstream tarball is trusted!" ; \ + fi; \ + else \ + echo "Upstream tarball NOT trusted (current md5sum is $$md5current)!" ; \ + fi + +# TODO: Rewrite using make variables like cdbs_upstream_unpack_cmd and +# DEB_UPSTREAM_SUPPORTED_COMPRESSIONS (recent dpkg supports bz2) + @untar="tar -x -C"; \ + case "$(cdbs_upstream_local_tarball)" in \ + *.tar.gz) unpack="gunzip -c";; \ + *.tar.bz2) unpack="bunzip2 -c"; uncompress="bunzip2";; \ + *.tar.Z) unpack="uncompress -c"; uncompress="uncompress";; \ + *.zip) unpack="unzip -q"; uncompress="false"; untar="-d"; nopipe="true";; \ + *.tar) unpack="cat"; uncompress="true";; \ + *) echo "Unknown extension for upstream tarball $(cdbs_upstream_local_tarball)"; false;; \ + esac && \ + if [ -n "$(strip $(DEB_UPSTREAM_REPACKAGE_EXCLUDE))" ] || [ "$$uncompress" = "false" ]; then \ + echo "Repackaging tarball ..." && \ + mkdir -p "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" && \ + if [ -n "$$nopipe" ]; then \ + $$unpack "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" \ + $$untar "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" $(patsubst %,--exclude='%',$(DEB_UPSTREAM_REPACKAGE_EXCLUDE)); \ + else \ + $$unpack "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)" \ + | $$untar "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" $(patsubst %,--exclude='%',$(DEB_UPSTREAM_REPACKAGE_EXCLUDE)); \ + fi && \ + if [ "$(DEB_UPSTREAM_TARBALL_SRCDIR)" != "$(cdbs_upstream_repackaged_basename)" ]; then \ + mv -T "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)/$(DEB_UPSTREAM_TARBALL_SRCDIR)" "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)/$(cdbs_upstream_repackaged_basename)"; \ + fi && \ + if [ -n "$(strip $(DEB_UPSTREAM_REPACKAGE_EXCLUDE))" ]; then \ + GZIP=-9 tar -b1 -czf "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_repackaged_basename).tar.gz" -C "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" "$(cdbs_upstream_repackaged_basename)"; \ + else \ + GZIP=-9 tar -b1 -czf "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_uncompressed_tarball).gz" -C "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)" "$(cdbs_upstream_repackaged_basename)"; \ + fi && \ + echo "Cleaning up" && \ + rm -rf "$(DEB_UPSTREAM_WORKDIR)/$(DEB_UPSTREAM_REPACKAGE_TAG)"; \ + elif [ -n "$$uncompress" ]; then \ + echo "Recompressing tarball ..." && \ + $$uncompress "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_local_tarball)"; \ + gzip -9 "$(DEB_UPSTREAM_WORKDIR)/$(cdbs_upstream_uncompressed_tarball)"; \ + fi + +DEB_PHONY_RULES += print-version get-orig-source + +endif --- moin-1.7.1.orig/debian/cdbs/1/rules/buildinfo.mk +++ moin-1.7.1/debian/cdbs/1/rules/buildinfo.mk @@ -0,0 +1,40 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2004-2006 Jonas Smedegaard +# Description: Generate and include build information +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_buildinfo +_cdbs_rules_buildinfo = 1 + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), dh-buildinfo + +common-install-arch common-install-indep:: debian/stamp-buildinfo + +debian/stamp-buildinfo: + dh_buildinfo + touch debian/stamp-buildinfo + +clean:: + rm -f debian/stamp-buildinfo + +endif --- moin-1.7.1.orig/debian/cdbs/1/rules/copyright-check.mk +++ moin-1.7.1/debian/cdbs/1/rules/copyright-check.mk @@ -0,0 +1,111 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2005-2008 Jonas Smedegaard +# Description: Check for changes to copyright notices in source +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_copyright-check +_cdbs_rules_copyright-check := 1 + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), devscripts (>= 2.10.7) + +# Set to yes to fail on changed/new hints are found +#DEB_COPYRIGHT_CHECK_STRICT := yes + +# Single regular expression for files to include or ignore +DEB_COPYRIGHT_CHECK_REGEX = .* +DEB_COPYRIGHT_CHECK_IGNORE_REGEX = ^(debian/.*|(.*/)?config\.(guess|sub|rpath)(\..*)?)$ + +pre-build:: debian/stamp-copyright-check + +debian/stamp-copyright-check: + @echo 'Scanning upstream source for new/changed copyright notices...' + @echo licensecheck -c '$(DEB_COPYRIGHT_CHECK_REGEX)' -r --copyright -i '$(DEB_COPYRIGHT_CHECK_IGNORE_REGEX)' * \ + "| some-output-filtering..." + +# Perl in shell in make requires extra care: +# * Single-quoting ('...') protects against shell expansion +# * Double-dollar ($$) expands to plain dollar ($) in make + @licensecheck -c '$(DEB_COPYRIGHT_CHECK_REGEX)' -r --copyright -i '$(DEB_COPYRIGHT_CHECK_IGNORE_REGEX)' * \ + | LC_ALL=C perl -e \ + 'print "Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=XXX\n";'\ + 'print "Upstream-Name: Untrusted draft - double-check copyrights yourself!\n\n";'\ + '$$n=0; while (<>) {'\ + ' s/[^[:print:]]//g;'\ + ' if (/^([^:\s][^:]+):[\s]+(\S.*?)\s*$$/) {'\ + ' $$files[$$n]{name}=$$1;'\ + ' $$files[$$n]{license}=$$2;'\ + ' };'\ + ' if (/^\s*\[Copyright:\s*(\S.*?)\s*\]/) {'\ + ' $$files[$$n]{copyright}=$$1;'\ + ' };'\ + ' /^$$/ and $$n++;'\ + '};'\ + 'foreach $$file (@files) {'\ + ' $$file->{license} =~ s/\s*\(with incorrect FSF address\)//;'\ + ' $$file->{license} =~ s/\s+\(v([^)]+) or later\)/-$$1+/;'\ + ' $$file->{license} =~ s/\s*(\*No copyright\*)\s*// and $$file->{copyright} = $$1;'\ + ' $$file->{license} =~ s/^\s*(GENERATED FILE)/UNKNOWN ($$1)/;'\ + ' $$file->{license} =~ s/\s+(GENERATED FILE)/ ($$1)/;'\ + ' $$file->{copyright} =~ s/(?<=(\b\d{4}))(?{$$y=$$^N})\s*[,-]\s*((??{$$y+1}))\b/-$$2/g;'\ + ' $$file->{copyright} =~ s/(?<=\b\d{4})\s*-\s*\d{4}(?=\s*-\s*(\d{4})\b)//g;'\ + ' $$file->{copyright} =~ s/\b(\d{4})\s+([\S^\d])/$$1, $$2/g;'\ + ' $$file->{copyright} =~ s/^\W*\s+\/\s+//g;'\ + ' $$file->{copyright} =~ s/\s+\/\s+\W*$$//;'\ + ' $$file->{copyright} =~ s/\s+\/\s+/\n\t/g;'\ + ' $$pattern = "$$file->{license} [$$file->{copyright}]";'\ + ' push @{ $$patternfiles{"$$pattern"} }, $$file->{name};'\ + '};'\ + 'foreach $$pattern ( sort {'\ + ' @{$$patternfiles{$$b}} <=> @{$$patternfiles{$$a}}'\ + ' ||'\ + ' $$a cmp $$b'\ + ' } keys %patternfiles ) {'\ + ' ($$license, $$copyright) = $$pattern =~ /(.*) \[(.*)\]/s;'\ + ' print "Files: ", join("\n\t", sort @{ $$patternfiles{$$pattern} }), "\n";'\ + ' print "Copyright: $$copyright\n";'\ + ' print "License: $$license\n\n";'\ + '};'\ + > debian/copyright_newhints + @patterncount="`cat debian/copyright_newhints | sed 's/^[^:]*://' | LANG=C sort -u | grep . -c -`"; \ + echo "Found $$patterncount different copyright and licensing combinations." + @if [ ! -f debian/copyright_hints ]; then touch debian/copyright_hints; fi + @newstrings=`diff -u debian/copyright_hints debian/copyright_newhints | sed '1,2d' | egrep '^\+' - | sed 's/^\+//'`; \ + if [ -n "$$newstrings" ]; then \ + echo "$(if $(DEB_COPYRIGHT_CHECK_STRICT),ERROR,WARNING): The following new or changed copyright notices discovered:"; \ + echo; \ + echo "$$newstrings"; \ + echo; \ + echo "To fix the situation please do the following:"; \ + echo " 1) Investigate the above changes and update debian/copyright as needed"; \ + echo " 2) Replace debian/copyright_hints with debian/copyright_newhints"; \ + $(if $(DEB_COPYRIGHT_CHECK_STRICT),exit 1,:); \ + else \ + echo 'No new copyright notices found - assuming no news is good news...'; \ + rm -f debian/copyright_newhints; \ + fi + touch $@ + +clean:: + rm -f debian/stamp-copyright-check + +endif --- moin-1.7.1.orig/debian/cdbs/1/class/python-distutils.mk +++ moin-1.7.1/debian/cdbs/1/class/python-distutils.mk @@ -0,0 +1,296 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Colin Walters +# Copyright © 2006 Marc Dequènes (Duck) +# Copyright © 2006,2007 Jonas Smedegaard +# Description: manage Python modules using the 'distutils' build system +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02111-1307 USA. +# + +# This class provides rules for old and new Python policy. Leaving +# DEB_PYTHON_SYSTEM unset selects the old behavior. The pysupport and +# pycentral methods are available to comply with new policy. Don't forget +# to update your 'debian/control'. (Build-Depends are correctly generated +# if you are using the auto control generation feature.) + + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_python_distutils +_cdbs_class_python_distutils = 1 + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) +include $(_cdbs_class_path)/langcore.mk$(_cdbs_makefile_suffix) + + +# common variables +DEB_PYTHON_SETUP_CMD = setup.py +DEB_PYTHON_CLEAN_ARGS = -a +DEB_PYTHON_BUILD_ARGS = --build-base="$(CURDIR)/$(DEB_BUILDDIR)/build" +DEB_PYTHON_INSTALL_ARGS_ALL = --no-compile -O0 + +# We always install into target package, unlike DEB_DESTDIR +ifndef DEB_PYTHON_SYSTEM +DEB_PYTHON_DESTDIR = $(CURDIR)/debian/$(cdbs_curpkg) +else +# Arrrrgh - except for new python policy that broke the promise! :-( +DEB_PYTHON_DESTDIR = $(DEB_DESTDIR) +endif + + +ifndef DEB_PYTHON_SYSTEM +########################### old policy method ########################### + +$(warning ########################################################) +$(warning Your package does not conform to the new Python policy.) +$(warning Please consider updating. Here is some documentation:) +$(warning http://wiki.debian.org/DebianPython/NewPolicy) +$(warning http://wiki.debian.org/DebianPythonFAQ) +$(warning ########################################################) + +DEB_PYTHON_COMPILE_VERSION = +DEB_PYTHON_VERSIONS = 2.1 2.2 2.3 2.4 2.5 + +cdbs_python_current_version := $(shell /usr/bin/python -V 2>&1 | sed 's/^[^0-9]*\([0-9]\+.[0-9]\+\)[^0-9].*/\1/') +cdbs_python_next_version := $(shell expr '$(cdbs_python_current_version)' : '[^0-9]*\([0-9]\+\).').$(shell expr '(' '$(cdbs_python_current_version)' : '[^0-9]*[0-9]\+.\([0-9]\+\)' ')' + 1) + +# This variable is deprecated. +DEB_PYTHON_REAL_LIB_PACKAGES = $(strip $(filter $(patsubst %,python%%,$(DEB_PYTHON_VERSIONS)),$(filter-out $(DEB_PYTHON_PACKAGES_EXCLUDE),$(DEB_ALL_PACKAGES)))) +_cdbs_deprecated_vars += DEB_PYTHON_REAL_LIB_PACKAGES +_cdbs_deprecated_DEB_PYTHON_REAL_LIB_PACKAGES_default := $(DEB_PYTHON_REAL_LIB_PACKAGES) +# New in 0.x.y. +DEB_PYTHON_MODULE_PACKAGES = $(DEB_PYTHON_REAL_LIB_PACKAGES) + +DEB_PYTHON_MODULE_ARCH_PACKAGES = $(filter $(DEB_PYTHON_MODULE_PACKAGES), $(DEB_ARCH_PACKAGES)) +DEB_PYTHON_MODULE_INDEP_PACKAGES = $(filter $(DEB_PYTHON_MODULE_PACKAGES), $(DEB_INDEP_PACKAGES)) + +# If no versioned python library packages found, grab all simpler ones +ifeq (,$(DEB_PYTHON_MODULE_ARCH_PACKAGES)) +# This variable is deprecated. +DEB_PYTHON_SIMPLE_PACKAGES = $(strip $(filter python-%,$(filter-out $(DEB_PYTHON_PACKAGES_EXCLUDE),$(DEB_ALL_PACKAGES)))) +_cdbs_deprecated_vars += DEB_PYTHON_SIMPLE_PACKAGES +_cdbs_deprecated_DEB_PYTHON_SIMPLE_PACKAGES_default := $(DEB_PYTHON_SIMPLE_PACKAGES) +# New in 0.x.y. +DEB_PYTHON_MODULE_PACKAGES = $(DEB_PYTHON_SIMPLE_PACKAGES) +endif + +ifeq (,$(DEB_PYTHON_MODULE_ARCH_PACKAGES)) +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python-dev (>= $(cdbs_python_current_version)), python-dev (<< $(cdbs_python_next_version)) +else +cdbs_python_build_versions := $(filter-out -%,$(subst -, -,$(patsubst python%,%,$(DEB_PYTHON_MODULE_ARCH_PACKAGES)))) +comma := , +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), $(patsubst %,python%-dev$(comma),$(cdbs_python_build_versions)) python +endif + +cdbs_python_compile_version = $(DEB_PYTHON_COMPILE_VERSION) +cdbs_python_curpkg_build_versions = $(filter-out -%,$(subst -, -,$(patsubst python%,%,$(cdbs_curpkg)))) + +# This class can optionally utilize debhelper's "dh_python" command. Just +# be sure you include debhelper.mk before including this file. +ifdef _cdbs_rules_debhelper +ifneq (,$(strip $(filter 2.4,$(cdbs_python_build_versions)))) +# Python 2.4 support +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 4.2.28) +else +# Python 2.3 support +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 4.1.60) +endif + +DEB_DH_PYTHON_ARGS = $(addprefix -V ,$(cdbs_python_compile_version)) $(DEB_DH_PYTHON_ARGS_ALL) $(DEB_DH_PYTHON_ARGS_$(cdbs_curpkg)) +endif + + +else +########################## new policy methods ########################### + +# This variable is deprecated. +DEB_PYTHON_MODULE_PACKAGE = $(firstword $(filter-out %-doc %-dev %-common, $(DEB_PACKAGES))) +_cdbs_deprecated_vars += DEB_PYTHON_MODULE_PACKAGE +_cdbs_deprecated_DEB_PYTHON_MODULE_PACKAGE_default := $(DEB_PYTHON_MODULE_PACKAGE) +# New in 0.x.y. +# TODO: Use DEB_PYTHON_MODU*LE_PACKAGE but without firstword function (requires abi bump!) +DEB_PYTHON_MODULE_PACKAGES = $(DEB_PYTHON_MODULE_PACKAGE) + +DEB_PYTHON_MODULE_ARCH_PACKAGES = $(filter $(DEB_PYTHON_MODULE_PACKAGES), $(DEB_ARCH_PACKAGES)) +DEB_PYTHON_MODULE_INDEP_PACKAGES = $(filter $(DEB_PYTHON_MODULE_PACKAGES), $(DEB_INDEP_PACKAGES)) + +# This variable is deprecated +## FIXME: Die if used together with pycentral, that does not support it! +## FIXME: Warn if used without debhelper: is applied with dh_pysupport. +## TODO: Check if usable also with old python policy: was added to deprecated dh_python too. +DEB_PYTHON_PRIVATE_MODULES_DIRS = +_cdbs_deprecated_vars += DEB_PYTHON_PRIVATE_MODULES_DIRS + +# check python system +cdbs_use_xs_field := $(shell grep -q "^XS-Python-Version:" debian/control && echo yes) +cdbs_selected_pycompat := $(shell if [ -e debian/pycompat ]; then cat debian/pycompat; fi) +cdbs_pycompat = $(cdbs_selected_pycompat) +ifeq (pysupport, $(DEB_PYTHON_SYSTEM)) + ifeq (, $(cdbs_selected_pycompat)) + cdbs_pycompat = 2 + endif # use pycompat + # warning pysupport compatibility mode + ifneq (, $(cdbs_use_xs_field)) + $(warning Use of XS-Python-Version and XB-Python-Version fields in 'debian/control' is deprecated with pysupport method, use 'debian/pyversions' if you need to specify specific versions) + endif # use XS field (compat) +else + ifeq (pycentral, $(DEB_PYTHON_SYSTEM)) + ifeq (, $(cdbs_selected_pycompat)) + cdbs_pycompat = 2 + endif # use pycompat + else + ifneq (, $(DEB_PYTHON_SYSTEM)) + $(error unsupported Python system: $(DEB_PYTHON_SYSTEM) (select either pysupport or pycentral)) + else + ifneq (, $(cdbs_use_xs_field)) + $(error Your package uses the new Python policy; you must set DEB_PYTHON_SYSTEM to "pysupport" or "pycentral".) + endif + ifneq (, $(cdbs_selected_pycompat)) + ifeq (yes, $(shell expr $(cdbs_selected_pycompat) \> 1 >/dev/null && echo yes)) + $(error Your package uses the new Python policy; you must set DEB_PYTHON_SYSTEM to "pysupport" or "pycentral".) + endif + endif # use pycompat + endif # unknown method + endif # pycentral +endif # pysupport + +# Calculate cdbs_python_build_versions +cdbs_python_current_version := $(shell pyversions -vd) +ifeq (,$(DEB_PYTHON_MODULE_ARCH_PACKAGES)) + # check if current is in build versions + ifneq ($(cdbs_python_current_version), $(filter $(cdbs_python_current_version), $(shell pyversions -vr))) + cdbs_python_compile_version := $(firstword $(strip $(sort $(shell pyversions -vr)))) + cdbs_python_build_versions := $(cdbs_python_compile_version) + else + cdbs_python_build_versions := $(cdbs_python_current_version) + endif +else +cdbs_python_build_versions := $(shell pyversions -vr) +endif # archall + +# check if build is possible +ifeq (, $(cdbs_python_build_versions)) +ifeq (pysupport, $(DEB_PYTHON_SYSTEM)) +$(error invalid setting in 'debian/pyversions') +else +$(error invalid setting for XS-Python-Version) +endif # system selected +endif # build versions empty + + +# Declare Build-Deps for packages using this file +# This class can optionally utilize debhelper's "dh_python" command. Just +# be sure you include debhelper.mk before including this file. +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.43) +ifdef _cdbs_rules_debhelper +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.37.2) +endif +ifeq (,$(DEB_PYTHON_MODULE_ARCH_PACKAGES)) + ifneq (, $(cdbs_python_compile_version)) + CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python$(cdbs_python_compile_version)-dev, python (>= 2.3.5-11) + else + CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python-dev (>= 2.3.5-11) + endif +else +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python-all-dev (>= 2.3.5-11) +endif +ifeq (pysupport, $(DEB_PYTHON_SYSTEM)) +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python-support (>= 0.3.2) +else +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), python-central (>= 0.5.6) +endif + +# TODO: Support multiple python modules built for different python versions +cdbs_python_curpkg_build_versions = $(cdbs_python_build_versions) + +DEB_DH_PYTHON_ARGS = $(DEB_DH_PYTHON_ARGS_ALL) $(DEB_DH_PYTHON_ARGS_$(cdbs_curpkg)) $(DEB_PYTHON_PRIVATE_MODULES_DIRS) $(DEB_PYTHON_PRIVATE_MODULES_DIRS_$(cdbs_curpkg)) + +endif + + +########################## all policy methods ########################### + +pre-build:: + mkdir -p python-module-stamp + + +# build stage +$(patsubst %,build/%,$(DEB_PYTHON_MODULE_INDEP_PACKAGES) $(DEB_PYTHON_MODULE_ARCH_PACKAGES)) :: build/% : python-module-stamp/% + +$(patsubst %,python-module-stamp/%,$(DEB_PYTHON_MODULE_INDEP_PACKAGES)) :: python-module-stamp/%: + cd $(DEB_SRCDIR) && /usr/bin/python$(cdbs_python_compile_version) $(DEB_PYTHON_SETUP_CMD) build $(DEB_PYTHON_BUILD_ARGS) + touch $@ + +$(patsubst %,python-module-stamp/%,$(DEB_PYTHON_MODULE_ARCH_PACKAGES)) :: python-module-stamp/%: + for buildver in $(cdbs_python_curpkg_build_versions); do \ + cd $(DEB_SRCDIR) && /usr/bin/python$$buildver $(DEB_PYTHON_SETUP_CMD) build $(DEB_PYTHON_BUILD_ARGS); \ + done + touch $@ + + +# install stage +$(patsubst %,install/%,$(DEB_PYTHON_MODULE_INDEP_PACKAGES)) :: install/%: + cd $(DEB_SRCDIR) && /usr/bin/python$(cdbs_python_compile_version) $(DEB_PYTHON_SETUP_CMD) install --root="$(DEB_PYTHON_DESTDIR)" $(DEB_PYTHON_INSTALL_ARGS_ALL) $(DEB_PYTHON_INSTALL_ARGS_$(cdbs_curpkg)) + +$(patsubst %,install/%,$(DEB_PYTHON_MODULE_ARCH_PACKAGES)) :: install/%: + for buildver in $(cdbs_python_curpkg_build_versions); do \ + cd $(DEB_SRCDIR) && /usr/bin/python$$buildver $(DEB_PYTHON_SETUP_CMD) install --root="$(DEB_PYTHON_DESTDIR)" $(DEB_PYTHON_INSTALL_ARGS_ALL) $(DEB_PYTHON_INSTALL_ARGS_$(cdbs_curpkg)); \ + done + + +# This class can optionally use debhelper's commands. Just +# be sure you include debhelper.mk before including this file. +ifdef _cdbs_rules_debhelper + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: +ifdef DEB_PYTHON_SYSTEM +ifeq (pysupport, $(DEB_PYTHON_SYSTEM)) + dh_pysupport -p$(cdbs_curpkg) $(DEB_PYTHON_PRIVATE_MODULES_DIRS) $(DEB_PYTHON_PRIVATE_MODULES_DIRS_$(cdbs_curpkg)) +else + dh_pycentral -p$(cdbs_curpkg) +endif +endif + dh_python -p$(cdbs_curpkg) $(DEB_DH_PYTHON_ARGS) +endif + + +# clean stage +clean:: $(patsubst %,python-module-clean/%,$(DEB_PYTHON_MODULE_INDEP_PACKAGES) $(DEB_PYTHON_MODULE_ARCH_PACKAGES)) + +$(patsubst %,python-module-clean/%,$(DEB_PYTHON_MODULE_INDEP_PACKAGES)) :: python-module-clean/%: + -cd $(DEB_SRCDIR) && /usr/bin/python$(cdbs_python_compile_version) $(DEB_PYTHON_SETUP_CMD) clean $(DEB_PYTHON_CLEAN_ARGS) + +$(patsubst %,python-module-clean/%,$(DEB_PYTHON_MODULE_ARCH_PACKAGES)) :: python-module-clean/%: + -for buildver in $(cdbs_python_curpkg_build_versions); do \ + cd $(DEB_SRCDIR) && /usr/bin/python$$buildver $(DEB_PYTHON_SETUP_CMD) clean $(DEB_PYTHON_CLEAN_ARGS); \ + done + +clean:: +ifdef DEB_PYTHON_SYSTEM +ifeq (, $(cdbs_selected_pycompat)) + echo "$(cdbs_pycompat)" >debian/pycompat +endif # use pycompat +endif + rm -rf python-build-stamp + +# Calling setup.py clean may create .pyc files, so we need a final cleanup +# pass here. +clean:: + find . -name '*.pyc' -exec rm '{}' ';' + +endif --- moin-1.7.1.orig/debian/patches/README +++ moin-1.7.1/debian/patches/README @@ -0,0 +1,3 @@ +0xxxx: Backports from newer upstream Hg. +1xxxx: Possibly relevant for upstream adoption. +2xxxx: Only relevant for official Debian release. --- moin-1.7.1.orig/debian/patches/series +++ moin-1.7.1/debian/patches/series @@ -0,0 +1,3 @@ +10001_disable_RenderAsDocbook_if_no_xml.patch +20001_disable_gui_editor.patch +20002_hardcode_configdir.patch --- moin-1.7.1.orig/debian/patches/20002_hardcode_configdir.patch +++ moin-1.7.1/debian/patches/20002_hardcode_configdir.patch @@ -0,0 +1,16 @@ +diff --git a/setup.py b/setup.py +index ff7c7a9..20d04d5 100644 +--- a/setup.py ++++ b/setup.py +@@ -167,9 +167,8 @@ class build_scripts_create(build_scripts): + % script_vars) + else: + file.write("#! %(python)s\n" +- "#Fix and uncomment those 2 lines if your moin command doesn't find the MoinMoin package:\n" +- "#import sys\n" +- "#sys.path.insert(0, '%(package_location)s')\n" ++ "import sys\n" ++ "sys.path.insert(0, '/etc/moin')\n" + "from %(package)s.script.%(module)s import run\n" + "run()\n" + % script_vars) --- moin-1.7.1.orig/debian/patches/20001_disable_gui_editor.patch +++ moin-1.7.1/debian/patches/20001_disable_gui_editor.patch @@ -0,0 +1,24 @@ +diff --git a/wiki/config/wikifarm/farmconfig.py b/wiki/config/wikifarm/farmconfig.py +index e28a4d0..fe92537 100644 +--- a/wiki/config/wikifarm/farmconfig.py ++++ b/wiki/config/wikifarm/farmconfig.py +@@ -183,3 +183,7 @@ class FarmConfig(DefaultConfig): + # Enable graphical charts, requires gdchart. + #chart_options = {'width': 600, 'height': 300} + ++ # The GUI WYSISYG editor is not installed with Debian. ++ # See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info ++ editor_force = True ++ editor_default = 'text' # internal default, just for completeness +diff --git a/wiki/config/wikifarm/mywiki.py b/wiki/config/wikifarm/mywiki.py +index bb76249..1089bd4 100644 +--- a/wiki/config/wikifarm/mywiki.py ++++ b/wiki/config/wikifarm/mywiki.py +@@ -32,3 +32,7 @@ class Config(FarmConfig): + + data_dir = '/org/mywiki/data/' + ++ # The GUI WYSISYG editor is not installed with Debian. ++ # See /usr/share/doc/$(cdbs_curpkg)/README.Debian for more info ++ editor_force = True ++ editor_default = 'text' # internal default, just for completeness --- moin-1.7.1.orig/debian/patches/10001_disable_RenderAsDocbook_if_no_xml.patch +++ moin-1.7.1/debian/patches/10001_disable_RenderAsDocbook_if_no_xml.patch @@ -0,0 +1,18 @@ +diff --git a/MoinMoin/config/multiconfig.py b/MoinMoin/config/multiconfig.py +index 6e8c6fd..c443e2b 100644 +--- a/MoinMoin/config/multiconfig.py ++++ b/MoinMoin/config/multiconfig.py +@@ -245,6 +245,13 @@ class DefaultConfig(object): + 'MyPages', # only works when used with a non-default SecurityPolicy (e.g. autoadmin) + 'CopyPage', # has questionable behaviour regarding subpages a user can't read, but can copy + ] ++ ++ #Render As Docbook requires python-xml. ++ try: ++ from xml.dom.ext.reader import Sax ++ except ImportError: ++ actions_excluded.append('RenderAsDocbook') ++ + allow_xslt = False + antispam_master_url = "http://master.moinmo.in/?action=xmlrpc2" + --- moin-1.7.1.orig/debian/patches.off/10011_FCKeditor_whitelist_instead_of_blacklist.patch +++ moin-1.7.1/debian/patches.off/10011_FCKeditor_whitelist_instead_of_blacklist.patch @@ -0,0 +1,63 @@ +diff -ruNp moin-1.5.8.orig/wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/php/config.php moin-1.5.8/wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/php/config.php +--- moin-1.5.8.orig/wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/php/config.php 2006-05-11 18:24:01.000000000 +0200 ++++ moin-1.5.8/wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/connectors/php/config.php 2007-10-21 17:43:01.000000000 +0200 +@@ -32,8 +32,8 @@ $Config['UserFilesPath'] = '/UserFiles/' + // Attention: The above 'UserFilesPath' must point to the same directory. + $Config['UserFilesAbsolutePath'] = '' ; + +-$Config['AllowedExtensions']['File'] = array() ; +-$Config['DeniedExtensions']['File'] = array('php','php3','php5','phtml','asp','aspx','ascx','jsp','cfm','cfc','pl','bat','exe','dll','reg','cgi') ; ++$Config['AllowedExtensions']['File'] = array('7z', 'aiff', 'asf', 'avi', 'bmp', 'csv', 'doc', 'flv', 'gif', 'gz', 'gzip', 'jpeg', 'jpg', 'mid', 'mov', 'mp3', 'mp4', 'mpc', 'mpeg', 'mpg', 'ods', 'odt', 'pdf', 'png', 'ppt', 'pxd', 'qt', 'ram', 'rar', 'rm', 'rmi', 'rmvb', 'rtf', 'sdc', 'sitd', 'swf', 'sxc', 'sxw', 'tar', 'tgz', 'tif', 'tiff', 'txt', 'vsd', 'wav', 'wma', 'wmv', 'xls', 'xml', 'zip') ; ++$Config['DeniedExtensions']['File'] = array() ; + + $Config['AllowedExtensions']['Image'] = array('jpg','gif','jpeg','png') ; + $Config['DeniedExtensions']['Image'] = array() ; +@@ -44,4 +44,4 @@ $Config['DeniedExtensions']['Flash'] = a + $Config['AllowedExtensions']['Media'] = array('swf','fla','jpg','gif','jpeg','png','avi','mpg','mpeg') ; + $Config['DeniedExtensions']['Media'] = array() ; + +-?> +\ Intet linjeskift ved filafslutning ++?> +diff -ruNp moin-1.5.8.orig/wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/php/config.php moin-1.5.8/wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/php/config.php +--- moin-1.5.8.orig/wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/php/config.php 2006-05-11 18:24:01.000000000 +0200 ++++ moin-1.5.8/wiki/htdocs/applets/FCKeditor/editor/filemanager/upload/php/config.php 2007-10-21 17:43:01.000000000 +0200 +@@ -26,8 +26,8 @@ $Config['Enabled'] = false ; + // Path to uploaded files relative to the document root. + $Config['UserFilesPath'] = '/UserFiles/' ; + +-$Config['AllowedExtensions']['File'] = array() ; +-$Config['DeniedExtensions']['File'] = array('php','php3','php5','phtml','asp','aspx','ascx','jsp','cfm','cfc','pl','bat','exe','dll','reg','cgi') ; ++$Config['AllowedExtensions']['File'] = array('7z', 'aiff', 'asf', 'avi', 'bmp', 'csv', 'doc', 'flv', 'gif', 'gz', 'gzip', 'jpeg', 'jpg', 'mid', 'mov', 'mp3', 'mp4', 'mpc', 'mpeg', 'mpg', 'ods', 'odt', 'pdf', 'png', 'ppt', 'pxd', 'qt', 'ram', 'rar', 'rm', 'rmi', 'rmvb', 'rtf', 'sdc', 'sitd', 'swf', 'sxc', 'sxw', 'tar', 'tgz', 'tif', 'tiff', 'txt', 'vsd', 'wav', 'wma', 'wmv', 'xls', 'xml', 'zip') ; ++$Config['DeniedExtensions']['File'] = array() ; + + $Config['AllowedExtensions']['Image'] = array('jpg','gif','jpeg','png') ; + $Config['DeniedExtensions']['Image'] = array() ; +@@ -35,4 +35,4 @@ $Config['DeniedExtensions']['Image'] = a + $Config['AllowedExtensions']['Flash'] = array('swf','fla') ; + $Config['DeniedExtensions']['Flash'] = array() ; + +-?> +\ Intet linjeskift ved filafslutning ++?> +diff -ruNp moin-1.5.8.orig/wiki/htdocs/applets/FCKeditor/fckconfig.js moin-1.5.8/wiki/htdocs/applets/FCKeditor/fckconfig.js +--- moin-1.5.8.orig/wiki/htdocs/applets/FCKeditor/fckconfig.js 2006-05-11 18:24:01.000000000 +0200 ++++ moin-1.5.8/wiki/htdocs/applets/FCKeditor/fckconfig.js 2007-10-21 17:43:01.000000000 +0200 +@@ -153,8 +153,8 @@ FCKConfig.FlashBrowserWindowHeight = FCK + + FCKConfig.LinkUpload = true ; + FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/upload/' + FCKConfig.QuickUploadLanguage + '/upload.' + _QuickUploadLanguage ; +-FCKConfig.LinkUploadAllowedExtensions = "" ; // empty for all +-FCKConfig.LinkUploadDeniedExtensions = ".(php|php3|php5|phtml|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|dll|reg|cgi)$" ; // empty for no one ++FCKConfig.LinkUploadAllowedExtensions = ".('7z', 'aiff', 'asf', 'avi', 'bmp', 'csv', 'doc', 'flv', 'gif', 'gz', 'gzip', 'jpeg', 'jpg', 'mid', 'mov', 'mp3', 'mp4', 'mpc', 'mpeg', 'mpg', 'ods', 'odt', 'pdf', 'png', 'ppt', 'pxd', 'qt', 'ram', 'rar', 'rm', 'rmi', 'rmvb', 'rtf', 'sdc', 'sitd', 'swf', 'sxc', 'sxw', 'tar', 'tgz', 'tif', 'tiff', 'txt', 'vsd', 'wav', 'wma', 'wmv', 'xls', 'xml', 'zip')$" ; // empty for all ++FCKConfig.LinkUploadDeniedExtensions = "" ; // empty for no one + + FCKConfig.ImageUpload = true ; + FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/upload/' + FCKConfig.QuickUploadLanguage + '/upload.' + _QuickUploadLanguage + '?Type=Image' ; +@@ -172,4 +172,4 @@ FCKConfig.SmileyColumns = 8 ; + FCKConfig.SmileyWindowWidth = 320 ; + FCKConfig.SmileyWindowHeight = 240 ; + +-if( window.console ) window.console.log( 'Config is loaded!' ) ; // @Packager.Compactor.RemoveLine +\ Intet linjeskift ved filafslutning ++if( window.console ) window.console.log( 'Config is loaded!' ) ; // @Packager.Compactor.RemoveLine --- moin-1.7.1.orig/debian/patches.off/01avoid_world_write_access.diff +++ moin-1.7.1/debian/patches.off/01avoid_world_write_access.diff @@ -0,0 +1,209 @@ +diff -ruN moin-1.2.2.orig/MoinMoin/action/AttachFile.py moin-1.2.2/MoinMoin/action/AttachFile.py +--- moin-1.2.2.orig/MoinMoin/action/AttachFile.py 2004-06-06 01:58:36.000000000 +0200 ++++ moin-1.2.2/MoinMoin/action/AttachFile.py 2004-06-17 06:45:32.052919832 +0200 +@@ -454,7 +454,7 @@ + stream.write(filecontent) + finally: + stream.close() +- os.chmod(fpath, 0666 & config.umask) ++ os.chmod(fpath, 0640 & config.umask) + + bytes = len(filecontent) + msg = _("Attachment '%(target)s' (remote name '%(filename)s')" +diff -ruN moin-1.2.2.orig/MoinMoin/action/SpellCheck.py moin-1.2.2/MoinMoin/action/SpellCheck.py +--- moin-1.2.2.orig/MoinMoin/action/SpellCheck.py 2004-06-06 01:58:39.000000000 +0200 ++++ moin-1.2.2/MoinMoin/action/SpellCheck.py 2004-06-17 06:45:32.053919805 +0200 +@@ -80,7 +80,7 @@ + request.clock.start('dict.cache') + wordsfiles = _getWordsFiles() + if dbhash: +- wordsdict = dbhash.open(cachename, 'n', 0666 & config.umask) ++ wordsdict = dbhash.open(cachename, 'n', 0640 & config.umask) + else: + wordsdict = {} + +diff -ruN moin-1.2.2.orig/MoinMoin/caching.py moin-1.2.2/MoinMoin/caching.py +--- moin-1.2.2.orig/MoinMoin/caching.py 2004-06-06 01:58:16.000000000 +0200 ++++ moin-1.2.2/MoinMoin/caching.py 2004-06-17 06:45:32.055919751 +0200 +@@ -18,14 +18,14 @@ + + # create cache if necessary + if not os.path.isdir(config.cache_dir): +- os.mkdir(config.cache_dir, 0777 & config.umask) +- os.chmod(config.cache_dir, 0777 & config.umask) ++ os.mkdir(config.cache_dir, 0750 & config.umask) ++ os.chmod(config.cache_dir, 0750 & config.umask) + + # create arena if necessary + arena_dir = os.path.join(config.cache_dir, arena) + if not os.path.isdir(arena_dir): +- os.mkdir(arena_dir, 0777 & config.umask) +- os.chmod(arena_dir, 0777 & config.umask) ++ os.mkdir(arena_dir, 0750 & config.umask) ++ os.chmod(arena_dir, 0750 & config.umask) + + def _filename(self): + return os.path.join(config.cache_dir, self.arena, self.key) +@@ -64,7 +64,7 @@ + shutil.copyfile(filename, self._filename()) + + try: +- os.chmod(self._filename(), 0666 & config.umask) ++ os.chmod(self._filename(), 0640 & config.umask) + except OSError: + pass + +@@ -72,7 +72,7 @@ + open(self._filename(), 'wb').write(content) + + try: +- os.chmod(self._filename(), 0666 & config.umask) ++ os.chmod(self._filename(), 0640 & config.umask) + except OSError: + pass + +diff -ruN moin-1.2.2.orig/MoinMoin/config.py moin-1.2.2/MoinMoin/config.py +--- moin-1.2.2.orig/MoinMoin/config.py 2004-06-06 01:58:23.000000000 +0200 ++++ moin-1.2.2/MoinMoin/config.py 2004-06-17 06:45:32.057919697 +0200 +@@ -154,7 +154,7 @@ + # and receive a FORBIDDEN for anything except viewing a page + 'ua_spiders': 'archiver|crawler|google|htdig|httrack|jeeves|larbin|leech|linkbot' + + '|linkmap|linkwalk|mercator|mirror|robot|scooter|search|sitecheck|spider|wget', +- 'umask': 0770, # with 0777 ACLs are rather pointless! ++ 'umask': 0750, # with access from all ACLs are rather pointless! + # XXX UNICODE fix + 'upperletters': 'A-Z\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd2\xd3\xd4\xd5\xd6\xd8\xd9\xda\xdb\xdc\xdd\xc7\xd0\xd1\xde', + 'url_prefix': '/wiki', +diff -ruN moin-1.2.2.orig/MoinMoin/logfile/logfile.py moin-1.2.2/MoinMoin/logfile/logfile.py +--- moin-1.2.2.orig/MoinMoin/logfile/logfile.py 2004-06-06 01:58:31.000000000 +0200 ++++ moin-1.2.2/MoinMoin/logfile/logfile.py 2004-06-17 06:45:32.059919643 +0200 +@@ -117,7 +117,7 @@ + elif name == "_output": + self._output = open(self.__filename, 'a') + try: +- os.chmod(self.__filename, 0666 & config.umask) ++ os.chmod(self.__filename, 0640 & config.umask) + except OSError: + pass + return self._output +diff -ruN moin-1.2.2.orig/MoinMoin/PageEditor.py moin-1.2.2/MoinMoin/PageEditor.py +--- moin-1.2.2.orig/MoinMoin/PageEditor.py 2004-06-06 01:58:36.000000000 +0200 ++++ moin-1.2.2/MoinMoin/PageEditor.py 2004-06-17 06:46:24.217507393 +0200 +@@ -682,8 +682,8 @@ + page_filename = self._text_filename() + + if not os.path.isdir(config.backup_dir): +- os.mkdir(config.backup_dir, 0777 & config.umask) +- os.chmod(config.backup_dir, 0777 & config.umask) ++ os.mkdir(config.backup_dir, 0750 & config.umask) ++ os.chmod(config.backup_dir, 0750 & config.umask) + + if os.path.isfile(page_filename) and not is_deprecated and self.do_revision_backup: + filesys.rename(page_filename, os.path.join(config.backup_dir, +@@ -693,7 +693,7 @@ + self.set_raw_body(text) + + # replace old page by tmpfile +- os.chmod(tmp_filename, 0666 & config.umask) ++ os.chmod(tmp_filename, 0640 & config.umask) + filesys.rename(tmp_filename, page_filename) + return os.path.getmtime(page_filename) + +diff -ruN moin-1.2.2.orig/MoinMoin/user.py moin-1.2.2/MoinMoin/user.py +--- moin-1.2.2.orig/MoinMoin/user.py 2004-06-17 06:01:18.000000000 +0200 ++++ moin-1.2.2/MoinMoin/user.py 2004-06-17 06:45:32.069919372 +0200 +@@ -56,7 +56,7 @@ + userdictpickle = os.path.join(config.user_dir, "userdict.pickle") + pickle.dump(_name2id, open(userdictpickle,'w')) + try: +- os.chmod(userdictpickle, 0666 & config.umask) ++ os.chmod(userdictpickle, 0640 & config.umask) + except OSError: + pass + id = _name2id.get(searchName, None) +@@ -315,8 +315,8 @@ + if not self.id: return + + if not os.path.isdir(config.user_dir): +- os.mkdir(config.user_dir, 0777 & config.umask) +- os.chmod(config.user_dir, 0777 & config.umask) ++ os.mkdir(config.user_dir, 0750 & config.umask) ++ os.chmod(config.user_dir, 0750 & config.umask) + + self.last_saved = str(time.time()) + +@@ -336,7 +336,7 @@ + data.close() + + try: +- os.chmod(self.__filename(), 0666 & config.umask) ++ os.chmod(self.__filename(), 0640 & config.umask) + except OSError: + pass + +@@ -443,7 +443,7 @@ + bmfile.write(str(tm)+"\n") + bmfile.close() + try: +- os.chmod(self.__filename() + ".bookmark", 0666 & config.umask) ++ os.chmod(self.__filename() + ".bookmark", 0640 & config.umask) + except OSError: + pass + try: +@@ -589,7 +589,7 @@ + trailfile.write('\n'.join(self._trail)) + trailfile.close() + try: +- os.chmod(self.__filename() + ".trail", 0666 & config.umask) ++ os.chmod(self.__filename() + ".trail", 0640 & config.umask) + except OSError: + pass + +diff -ruN moin-1.2.2.orig/MoinMoin/util/filesys.py moin-1.2.2/MoinMoin/util/filesys.py +--- moin-1.2.2.orig/MoinMoin/util/filesys.py 2004-06-06 01:58:23.000000000 +0200 ++++ moin-1.2.2/MoinMoin/util/filesys.py 2004-06-17 06:45:32.071919318 +0200 +@@ -14,7 +14,7 @@ + ### Misc Helpers + ############################################################################# + +-def makeDirs(name, mode=0777): ++def makeDirs(name, mode=0750): + """ Like os.makedirs(), but with explicit chmod() calls. + Fixes some practical permission problems on Linux. + """ +diff -ruN moin-1.2.2.orig/MoinMoin/wikidicts.py moin-1.2.2/MoinMoin/wikidicts.py +--- moin-1.2.2.orig/MoinMoin/wikidicts.py 2004-06-06 01:58:16.000000000 +0200 ++++ moin-1.2.2/MoinMoin/wikidicts.py 2004-06-17 06:45:32.072919291 +0200 +@@ -288,7 +288,7 @@ + + pickle.dump(data, open(picklefile, 'w')) + try: +- os.chmod(picklefile, 0666 & config.umask) ++ os.chmod(picklefile, 0640 & config.umask) + except OSError: + pass + # remember it globally (persistent environments) +diff -ruN moin-1.2.2.orig/wiki/data/text/HelpOnConfiguration moin-1.2.2/wiki/data/text/HelpOnConfiguration +--- moin-1.2.2.orig/wiki/data/text/HelpOnConfiguration 2004-06-06 01:58:16.000000000 +0200 ++++ moin-1.2.2/wiki/data/text/HelpOnConfiguration 2004-06-17 06:45:32.074919237 +0200 +@@ -90,7 +90,7 @@ + || trail_size || 5 || Number of pages in the trail of visited pages || + || tz_offset || 0.0 || default time zone offset in hours from UTC || + || ua_spiders || ...|google|wget|... || A regex of HTTP_USER_AGENTs that should be excluded from logging || +-|| umask || 0770 || umask used on all open(), mkdir() and similar calls || ++|| umask || 0750 || umask used on all open(), mkdir() and similar calls || + || upperletters || ''Latin 1 alphabetic characters'' || Uppercase letters, used to define what is a WikiName || + || url_mappings || {} || lookup table to remap URL prefixes (dict of {{{'prefix': 'replacement'}}}); especially useful in intranets, when whole trees of externally hosted documents move around || + || url_prefix || '/wiki' || Used as the base URL for all public documents served by the wiki, especially the image files for the icons || +diff -ruN moin-1.2.2.orig/wiki/data/text/Hj_e4lpMedAnpassning moin-1.2.2/wiki/data/text/Hj_e4lpMedAnpassning +--- moin-1.2.2.orig/wiki/data/text/Hj_e4lpMedAnpassning 2004-06-06 01:58:16.000000000 +0200 ++++ moin-1.2.2/wiki/data/text/Hj_e4lpMedAnpassning 2004-06-17 06:45:32.076919183 +0200 +@@ -73,7 +73,7 @@ + || title2 || '
    ' || HTML-fragment efter titelarean (se HjälpMedSkal) || + || trail_size || 5 || Antal sidor i sidhistoriken som visas || + || ua_spiders || htdig || Ett reguljärt uttryck med HTTP_USER_AGENT:er som ska uteslutas från loggning || +-|| umask || 0777 || umask som används på alla open(), mkdir() och liknande systemanrop || ++|| umask || 0750 || umask som används på alla open(), mkdir() och liknande systemanrop || + || upperletters || ''Latin 1 alphabetic characters'' || Versala bokstäver. Används för att definiera vad som är ett WikiNamn || + || url_mappings || {} || uppslagstabell som används för att ändra URL-prefix (dict av {{{'prefix': 'replacement'}}}); speciellt användbart på IntraNet, när hela träd av externa dokement flyttas runt || + || url_prefix || '/wiki' || Används som bas-URL för alla allmännt tillgängliga sidor som wikin kan visa, speciellt bildfiler för ikoner ||