debian/0000755000000000000000000000000012302376107007167 5ustar debian/postinst0000644000000000000000000000165112211217775011004 0ustar #!/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.9.0~ if [ "$1" = configure ] && dpkg --compare-versions "$2" lt "$firstcompat"; then moin-mass-migrate fi debian/moin-mass-migrate0000755000000000000000000000545512211217775012463 0ustar #!/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 samelists { my %a=map { $_ => 1 } split(' ', shift()); my %b=map { $_ => 1 } split(' ', shift()); foreach my $i (keys %b) { if (! exists $a{$i}) { return 0; } } foreach my $i (keys %a) { if (! exists $b{$i}) { return 0; } } return 1; } 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)); if (! samelists(($)=$grouplist), $grouplist)) { 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); } debian/tweak-moin-manpage0000644000000000000000000000207112211217775012577 0ustar #!/bin/bash # Extract the list of moin sub-commands from the scripts source code, # in order to improve the manpage. # Copyright 2010, Frank lin Piat ; License GPL V2 or later. set -e IN=$1 OUT=$2 if echo "\\fB" | grep -vq "f" ; then # Dash needs more escaping (\\\\fB instead of \\fB) echo $0: Invalid shell >&2 exit 2 fi if [ ! -f "$IN" -o ! -d "$(dirname $OUT 2>/dev/null)" ]; then echo $0: Invalid parameters >&2 exit 3 fi # Let's generate a manpage with the list of moin commands and sub-comands. sed -n -e '1,/TAG:INSERT_GENENERATED_START/p' \ $IN > $OUT for f in $(grep -l 'class PluginScript(' ./MoinMoin/script/*/*.py ); do cmd=$(dirname $f | sed -e 's,.*/,,' ) subcmd=$(basename $f .py) ( echo .sp echo .TP echo "\\fB$cmd\\fR \\fB$subcmd\\fR \\fB\\-\\-help\\fR \\fB[${subcmd}-option]\\fR" cat $f \ | sed -n -e '/^Purpose:/,/^"""/p' \ | sed -e '1d ; 2d' \ | sed -e '/^=====/,$d' \ | sed -e '$d' \ | sed -e :a -e '/^\n*$/{$d;N;ba' -e '} # delete trailing blank lines' )>> $OUT done sed -n -e '/TAG:INSERT_GENENERATED_END/,$p' \ $IN >> $OUT debian/moin.1.template0000644000000000000000000000623112211217775012033 0ustar '\" t .\" ** The above line should force tbl to be a preprocessor ** .\" .\" Copyright (C) 2010 Frank Lin PIAT .\" .\" Manpage for moin .\" .\" You may distribute under the terms of the GNU General Public .\" License v2 or later (/usr/share/common-licenses/GPL) .\" .\" Tue Apr 6 19:08:39 CEST 2010 Frank Lin PIAT .\" .TH MOIN "1" "2010-04-06" "moin" "User Commands" .\" .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH NAME moin \- Moinmoin wiki management command-line interface .SH SYNOPSIS .\" The general command line .B moin [\fIgeneral options\fR] [\fIcommand\fR \fIcommand-subcommand\fR] [\fIspecific options\fR] .br .B moin [\-\-help|\-\-version] .SH DESCRIPTION \fBmoin\fR is a tool to interact with moinmoin wiki from the command line. The command can manipulate moinmoin user accounts, print/dump data, import irclogs, do maintenance task, etc. This command should be executed under the operating system account that "own" the wiki content (files). .SH OPTIONS .TP \fB\-\-config\-dir\fR=\fIDIR\fR Path to the directory containing the wiki configuration files. [default: current directory] (Debian's /usr/bin/moin defaults to /etc/moin/) .TP \fB\-\-wiki\-url\fR=\fIWIKIURL\fR URL of a single wiki to migrate e.g. http://localhost/mywiki/ [default: CLI] .TP \fB\-\-page\fR=\fIPAGE\fR wiki page name [default: all pages] .TP \fB\-\-version\fR show program's version number and exit .TP \fB\-q\fR, \fB\-\-quiet\fR Be quiet (no informational messages) .TP \fB\-\-show\-timing\fR Show timing values [default: False] .SH MOIN COMMANDS \fBmoin\fR command supports many commands, which in turns have sub-commands. .\" TAG:INSERT_GENENERATED_START Those commands include \fBaccount\fR, \fBcli\fR, \fBexport\fR, \fBimport\fR, \fBindex\fR, \fBmaint\fR, \fBmigration\fR, \fBxmlrpc\fR, etc.). They are documented in HelpOnMoinCommand wiki page. Some MoinMoin add-ons may add extra commands. .\" TAG:INSERT_GENENERATED_END .SH EXAMPLES .sp Clean the cache containing pre-computed/pre-rendered pages. .sp .RS 4 $ moin \-\-config\-dir=/etc/moin \-\-wiki\-url=http://webserver/mywiki maint cleancache .RE .sp Manually migrate the wiki content. .sp .RS 4 $ moin \-\-config\-dir=/where/your/configdir/is \-\-wiki\-url=http://webserver/mywiki migration data .RE .sp Create the initial Xapian index (after enabling it in the configuration file) .sp .RS 4 $ moin \-\-config-dir=/etc/moin \-\-wiki\-url=http://webserver/mywiki index build \-\-mode=add .RE .SH "SEE ALSO" The full documentation for moin command line is maintained as a Wiki page (HelpOnMoinCommand). A copy is available at /usr/share/doc/python-moinmoin/HelpOnMoinCommand. Read the help page on your running instance of moinmoin because other MoinMoin instances, like http://moinmo.in/HelpOnMoinCommand may run a different version. .\" .\" vim: ft=groff debian/licensecheck0000755000000000000000000005036012211217775011545 0ustar #!/usr/bin/perl -w # This script was originally based on the script of the same name from # the KDE SDK (by dfaure@kde.org) # # This version is # Copyright (C) 2007, 2008 Adam D. Barratt # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. =head1 NAME licensecheck - simple license checker for source files =head1 SYNOPSIS B B<--help|--version> B [B<--no-conf>] [B<--verbose>] [B<--copyright>] [B<-l|--lines=N>] [B<-i|--ignore=regex>] [B<-c|--check=regex>] [B<-r|--recursive>] I =head1 DESCRIPTION B attempts to determine the license that applies to each file passed to it, by searching the start of the file for text belonging to various licenses. If any of the arguments passed are directories, B will add the files contained within to the list of files to process. =head1 OPTIONS =over 4 =item B<--verbose> B<--no-verbose> Specify whether to output the text being processed from each file before the corresponding license information. Default is to be quiet. =item B<-l=N> B<--lines=N> Specify the number of lines of each file's header which should be parsed for license information. (Default is 60). =item B<-i=regex> B<--ignore=regex> When processing the list of files and directories, the regular expression specified by this option will be used to indicate those which should not be considered (e.g. backup files, VCS metadata). =item B<-r> B<--recursive> Specify that the contents of directories should be added recursively. =item B<-c=regex> B<--check=regex> Specify a pattern against which filenames will be matched in order to decide which files to check the license of. The default includes common source files. =item B<--copyright> Also display copyright text found within the file =item B<--no-conf> B<--noconf> Do not read any configuration files. This can only be used as the first option given on the command-line. =back =head1 CONFIGURATION VARIABLES The two configuration files F and F<~/.devscripts> are sourced by a shell in that order to set configuration variables. Command line options can be used to override configuration file settings. Environment variable settings are ignored for this purpose. The currently recognised variables are: =over 4 =item B If this is set to I, then it is the same as the --verbose command line parameter being used. The default is I. =item B If this is set to a positive number then the specified number of lines at the start of each file will be read whilst attempting to determine the license(s) in use. This is equivalent to the --lines command line option. =back =head1 LICENSE This code is copyright by Adam D. Barratt , all rights reserved; based on a script of the same name from the KDE SDK, which is copyright by . This program comes with ABSOLUTELY NO WARRANTY. You are free to redistribute this code under the terms of the GNU General Public License, version 2 or later. =head1 AUTHOR Adam D. Barratt =cut use strict; use warnings; use Getopt::Long; use File::Basename; sub fatal($); sub parse_copyright($); sub parselicense($); my $progname = basename($0); # From dpkg-source my $default_ignore_regex = ' # Ignore general backup files (?:^|/).*~$| # Ignore emacs recovery files (?:^|/)\.#.*$| # Ignore vi swap files (?:^|/)\..*\.swp$| # Ignore baz-style junk files or directories (?:^|/),,.*(?:$|/.*$)| # File-names that should be ignored (never directories) (?:^|/)(?:DEADJOE|\.cvsignore|\.arch-inventory|\.bzrignore|\.gitignore)$| # File or directory names that should be ignored (?:^|/)(?:CVS|RCS|\.deps|\{arch\}|\.arch-ids|\.svn|\.hg|_darcs|\.git| \.shelf|_MTN|\.bzr(?:\.backup|tags)?)(?:$|/.*$) '; # Take out comments and newlines $default_ignore_regex =~ s/^#.*$//mg; $default_ignore_regex =~ s/\n//sg; my $default_check_regex = '\.(c(c|pp|xx)?|h(h|pp|xx)?|f(77|90)?|p(l|m)|xs|sh|php|py|rb|java|vala|el|sc(i|e)|cs)$'; my $modified_conf_msg; my ($opt_verbose, $opt_lines, $opt_noconf, $opt_ignore_regex, $opt_check_regex) = ('', '', '', '', ''); my $opt_recursive = 0; my $opt_copyright = 0; my ($opt_help, $opt_version); my $def_lines = 60; # Read configuration files and then command line # This is boilerplate if (@ARGV and $ARGV[0] =~ /^--no-?conf$/) { $modified_conf_msg = " (no configuration files read)"; shift; } else { my @config_files = ('/etc/devscripts.conf', '~/.devscripts'); my %config_vars = ( 'LICENSECHECK_VERBOSE' => 'no', 'LICENSECHECK_PARSELINES' => $def_lines, ); my %config_default = %config_vars; my $shell_cmd; # Set defaults foreach my $var (keys %config_vars) { $shell_cmd .= qq[$var="$config_vars{$var}";\n]; } $shell_cmd .= 'for file in ' . join(" ", @config_files) . "; do\n"; $shell_cmd .= '[ -f $file ] && . $file; done;' . "\n"; # Read back values foreach my $var (keys %config_vars) { $shell_cmd .= "echo \$$var;\n" } my $shell_out = `/bin/bash -c '$shell_cmd'`; @config_vars{keys %config_vars} = split /\n/, $shell_out, -1; # Check validity $config_vars{'LICENSECHECK_VERBOSE'} =~ /^(yes|no)$/ or $config_vars{'LICENSECHECK_VERBOSE'} = 'no'; $config_vars{'LICENSECHECK_PARSELINES'} =~ /^[1-9][0-9]*$/ or $config_vars{'LICENSECHECK_PARSELINES'} = $def_lines; foreach my $var (sort keys %config_vars) { if ($config_vars{$var} ne $config_default{$var}) { $modified_conf_msg .= " $var=$config_vars{$var}\n"; } } $modified_conf_msg ||= " (none)\n"; chomp $modified_conf_msg; $opt_verbose = $config_vars{'LICENSECHECK_VERBOSE'} eq 'yes' ? 1 : 0; $opt_lines = $config_vars{'LICENSECHECK_PARSELINES'}; } GetOptions("help|h" => \$opt_help, "version|v" => \$opt_version, "verbose!" => \$opt_verbose, "lines|l=i" => \$opt_lines, "ignore|i=s" => \$opt_ignore_regex, "recursive|r" => \$opt_recursive, "check|c=s" => \$opt_check_regex, "copyright" => \$opt_copyright, "noconf" => \$opt_noconf, "no-conf" => \$opt_noconf, ) or die "Usage: $progname [options] filelist\nRun $progname --help for more details\n"; $opt_lines = $def_lines if $opt_lines !~ /^[1-9][0-9]*$/; $opt_ignore_regex = $default_ignore_regex if ! length $opt_ignore_regex; $opt_check_regex = $default_check_regex if ! length $opt_check_regex; if ($opt_noconf) { fatal "--no-conf is only acceptable as the first command-line option!"; } if ($opt_help) { help(); exit 0; } if ($opt_version) { version(); exit 0; } die "Usage: $progname [options] filelist\nRun $progname --help for more details\n" unless @ARGV; $opt_lines = $def_lines if not defined $opt_lines; my @files = (); my @find_args = (); my $files_count = @ARGV; push @find_args, qw(-maxdepth 1) unless $opt_recursive; push @find_args, qw(-follow -type f -print); while (@ARGV) { my $file = shift @ARGV; if (-d $file) { open FIND, '-|', 'find', $file, @find_args or die "$progname: couldn't exec find: $!\n"; while () { chomp; next unless m%$opt_check_regex%; # Skip empty files next if (-z $_); push @files, $_ unless m%$opt_ignore_regex%; } close FIND; } else { next unless ($files_count == 1) or $file =~ m%$opt_check_regex%; push @files, $file unless $file =~ m%$opt_ignore_regex%; } } while (@files) { my $file = shift @files; my $content = ''; my $copyright_match; my $copyright_matched = ''; my $copyright = ''; my $license = ''; my %copyrights; open (F, "<$file") or die "Unable to access $file\n"; while () { last if ($. > $opt_lines); $content .= $_; $copyright_matched++ if ($copyright_match); $copyright_match = parse_copyright $copyright_matched; if ($copyright_match) { $copyrights{lc("$copyright_match")} = "$copyright_match"; } else { $copyright_matched = ''; } } close(F); $copyright = join(" / ", values %copyrights); print qq(----- $file header -----\n$content----- end header -----\n\n) if $opt_verbose; $content =~ tr/\t\r\n/ /; # Remove C / C++ comments $content =~ s#(\*/|/[/*])##g; $content =~ tr% A-Za-z.,@;0-9\(\)/-%%cd; $content =~ s/ c //g; # Remove fortran comments $content =~ tr/ //s; $license = parselicense($content); print "$file: "; print "*No copyright* " unless $copyright; print $license . "\n"; print " [Copyright: " . $copyright . "]\n" if $copyright and $opt_copyright; print "\n" if $opt_copyright; } sub parse_copyright($) { my $matched = shift; my $copyright = ''; my $match; my $copyright_indicator_regex = ' (?:copyright # The full word |copr\. # Legally-valid abbreviation |\x{00a9} # Unicode character COPYRIGHT SIGN |\xc2\xa9 # Unicode copyright sign encoded in iso8859 |\(c\) # Legally-null representation of sign )'; my $copyright_disindicator_regex = ' \b(?:info(?:rmation)? # Discussing copyright information |notice # Discussing the notice |and|or # Part of a sentence )\b'; if (($matched) and (/^\s*\d+/)) { $_ = 'copyright' . $_; } if (m%$copyright_indicator_regex(?::\s*|\s+)(\S.*)$%ix) { $match = $1; # Ignore lines matching "see foo for copyright information" etc. if ($match !~ m%^\s*$copyright_disindicator_regex%ix) { # De-cruft $match =~ s/([,.])?\s*$//; $match =~ s/$copyright_indicator_regex//igx; $match =~ s/^\s+//; $match =~ s/\s{2,}/ /g; $match =~ s/\\@/@/g; $match =~ s/(MoinMoin:)?Alexander ?Schremmer( [<(][^>)]*[>)])?/Alexander Schremmer /gi; $match =~ s/(MoinMoin:)?Dmitri..? ?Mili?aj?evs?( [<(][^>)]*[>)])?/Dmitrijs Milajevs /gi; $match =~ s/(MoinMoin:)?Eugene ?Syromyatnikov( [<(][^>)]*[>)])?/Eugene Syromyatnikov /gi; $match =~ s/(MoinMoin:)?Florian ?Festi( [<(][^>)]*[>)])?/Florian Festi /gi; $match =~ s/(MoinMoin:)?Florian ?Krupicka( [<(][^>)]*[>)])?/Florian Krupicka /gi; $match =~ s/(MoinMoin:)?Forrest ?Voight( [<(][^>)]*[>)])?/Forrest Voight /gi; $match =~ s/(MoinMoin:)?Franz ?Pletz( [<(][^>)]*[>)])?/Franz Pletz /gi; $match =~ s/(MoinMoin:)?Johannes ?Berg( [<(][^>)]*[>)])?/Johannes Berg /gi; $match =~ s/(MoinMoin:)?J.?.?rgen ?Hermann( [<(][^>)]*[>)])?/Juergen Hermann /gi; $match =~ s/(MoinMoin:)?Karol ?Nowak( [<(][^>)]*[>)])?/Karol Nowak /gi; $match =~ s/(MoinMoin:)?Melita ?Mihaljevic( [<(][^>)]*[>)])?/Melita Mihaljevic /gi; $match =~ s/(MoinMoin:)?Nir ?Soffer( [<(][^>)]*[>)])?/Nir Soffer /gi; $match =~ s/(MoinMoin:)?Petr ?Pytelka( [<(][^>)]*[>)])?/Petr Pytelka /gi; $match =~ s/(MoinMoin:)?Radomir ?Dopieralski( [<(][^>)]*[>)])?/Radomir Dopieralski /gi; $match =~ s/(MoinMoin:)?Reimar ?Bauer( [<(][^>)]*[>)])?/Reimar Bauer /gi; $match =~ s/(MoinMoin:)?Richard ?Liao( [<(][^>)]*[>)])?/Richard Liao /gi; $match =~ s/(MoinMoin:)?Thomas ?Pfaff/Thomas Pfaff/gi; $match =~ s/(MoinMoin:)?Thomas ?Waldmann( [<(][^>)]*[>)])?/Thomas Waldmann /gi; $match =~ s/(\d+ )by /$1/g; $copyright = $match; } } return $copyright; } sub help { print <<"EOF"; Usage: $progname [options] filename [filename ...] Valid options are: --help, -h Display this message --version, -v Display version and copyright info --no-conf, --noconf Don't read devscripts config files; must be the first option given --verbose Display the header of each file before its license information --lines, -l Specify how many lines of the file header should be parsed for license information (Default: $def_lines) --check, -c Specify a pattern indicating which files should be checked (Default: '$default_check_regex') --recursive, -r Add the contents of directories recursively --copyright Also display the file's copyright --ignore, -i Specify that files / directories matching the regular expression should be ignored when checking files (Default: '$default_ignore_regex') Default settings modified by devscripts configuration files: $modified_conf_msg EOF } sub version { print <<"EOF"; This is $progname, from the Debian devscripts package, version 2.10.58 Copyright (C) 2007, 2008 by Adam D. Barratt ; based on a script of the same name from the KDE SDK by . This program comes with ABSOLUTELY NO WARRANTY. You are free to redistribute this code under the terms of the GNU General Public License, version 2, or (at your option) any later version. EOF } sub parselicense($) { my ($licensetext) = @_; my $gplver = ""; my $extrainfo = ""; my $license = ""; if ($licensetext =~ /version ([^ ]+) (?:\(?only\)?.? )?(?:of the GNU (Affero )?General Public License )?as published by the Free Software Foundation/i or $licensetext =~ /GNU (?:Affero )?General Public License as published by the Free Software Foundation; version ([^ ]+) /i) { $gplver = " (v$1)"; } elsif ($licensetext =~ /GNU (Affero ?)General Public License, version ([^ ]+?)[ .]/) { $gplver = " (v$1)"; } elsif ($licensetext =~ /either version ([^ ]+) of the License, or \(at your option\) any later version/) { $gplver = " (v$1 or later)"; } if ($licensetext =~ /(?:675 Mass Ave|59 Temple Place|51 Franklin Steet|02139|02111-1307)/i) { $extrainfo = " (with incorrect FSF address)$extrainfo"; } if ($licensetext =~ /permission (?:is (also granted|given))? to link (the code of )?this program with (any edition of )?(Qt|the Qt library)/i) { $extrainfo = " (with Qt exception)$extrainfo" } if ($licensetext =~ /(All changes made in this file will be lost|DO NOT (EDIT|delete this file)|Generated by)/i) { $license = "GENERATED FILE"; } if ($licensetext =~ /is free software.? you can redistribute it and\/or modify it under the terms of the (GNU (Library|Lesser) General Public License|LGPL)/i) { $license = "LGPL$gplver$extrainfo $license"; } if ($licensetext =~ /is free software.? you can redistribute it and\/or modify it under the terms of the (GNU Affero General Public License|AGPL)/i) { $license = "AGPL$gplver$extrainfo $license"; } if ($licensetext =~ /is free software.? you (can|may) redistribute it and\/or modify it under the terms of (?:version [^ ]+ (?:\(?only\)? )?of )?the GNU General Public License/i) { $license = "GPL$gplver$extrainfo $license"; } if ($licensetext =~ /is distributed under the terms of the GNU General Public License,/ and length $gplver) { $license = "GPL$gplver$extrainfo $license"; } if ($licensetext =~ /is distributed.*terms.*GPL/) { $license = "GPL (unversioned/unknown version) $license"; } if ($licensetext =~ /GPL, see COPYING/) { # $license = "GPL (unversioned/unknown version) $license"; $license = "GPL-2+ $license"; } if ($licensetext =~ /GNU GENERAL PUBLIC LICENSE Version ([^ ]+)\./) { $license = "GPL (v$1) $license"; } if ($licensetext =~ /This file is part of the .*Qt GUI Toolkit. This file may be distributed under the terms of the Q Public License as defined/) { $license = "QPL (part of Qt) $license"; } elsif ($licensetext =~ /may be distributed under the terms of the Q Public License as defined/) { $license = "QPL $license"; } if ($licensetext =~ /http:\/\/opensource\.org\/licenses\/mit-license\.php/) { $license = "MIT/X11 (BSD like) $license"; } elsif ($licensetext =~ /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/) { $license = "MIT/X11 (BSD like) $license"; } if ($licensetext =~ /Permission to use, copy, modify, and(\/or)? distribute this software for any purpose with or without fee is hereby granted, provided.*copyright notice.*permission notice.*all copies/) { $license = "ISC $license"; } if ($licensetext =~ /THIS SOFTWARE IS PROVIDED .*AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY/) { if ($licensetext =~ /All advertising materials mentioning features or use of this software must display the following acknowledge?ment.*This product includes software developed by/i) { $license = "BSD (4 clause) $license"; } elsif ($licensetext =~ /(The name of .*? may not|Neither the names? of .*? nor the names of (its|their) contributors may) be used to endorse or promote products derived from this software/i) { $license = "BSD (3 clause) $license"; } elsif ($licensetext =~ /Redistributions of source code must retain the above copyright notice/i) { $license = "BSD (2 clause) $license"; } else { $license = "BSD $license"; } } if ($licensetext =~ /Mozilla Public License Version ([^ ]+)/) { $license = "MPL (v$1) $license"; } if ($licensetext =~ /Released under the terms of the Artistic License ([^ ]+)/) { $license = "Artistic (v$1) $license"; } if ($licensetext =~ /is free software under the Artistic [Ll]icense/) { $license = "Artistic $license"; } if ($licensetext =~ /This program is free software; you can redistribute it and\/or modify it under the same terms as Perl itself/) { $license = "Perl $license"; } if ($licensetext =~ /under the Apache License, Version ([^ ]+) \(the License\)/) { $license = "Apache (v$1) $license"; } if ($licensetext =~ /This source file is subject to version ([^ ]+) of the PHP license/) { $license = "PHP (v$1) $license"; } if ($licensetext =~ /under the terms of the CeCILL /) { $license = "CeCILL $license"; } if ($licensetext =~ /under the terms of the CeCILL-([^ ]+) /) { $license = "CeCILL-$1 $license"; } if ($licensetext =~ /under the SGI Free Software License B/) { $license = "SGI Free Software License B $license"; } if ($licensetext =~ /is in the public domain/i) { $license = "Public domain"; } if ($licensetext =~ /terms of the Common Development and Distribution License(, Version ([^(]+))? \(the License\)/) { $license = "CDDL " . ($1 ? "(v$2) " : '') . $license; } if ($licensetext =~ /Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license \(the \"Software\"\)/ or $licensetext =~ /Boost Software License([ ,-]+Version ([^ ]+)?(\.))/i) { $license = "BSL " . ($1 ? "(v$2) " : '') . $license; } if ($licensetext =~ /PYTHON SOFTWARE FOUNDATION LICENSE (VERSION ([^ ]+))/i) { $license = "PSF " . ($1 ? "(v$2) " : '') . $license; } if ($licensetext =~ /The origin of this software must not be misrepresented.*Altered source versions must be plainly marked as such.*This notice may not be removed or altered from any source distribution/ or $licensetext =~ /see copyright notice in zlib\.h/) { $license = "zlib/libpng $license"; } $license = "UNKNOWN" if (!length($license)); return $license; } sub fatal($) { my ($pack,$file,$line); ($pack,$file,$line) = caller(); (my $msg = "$progname: fatal error at line $line:\n@_\n") =~ tr/\0//d; $msg =~ s/\n\n$/\n/; die $msg; } debian/copyright0000644000000000000000000024605512211217775011142 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: MoinMoin Upstream-Contact: The MoinMoin development team http://moinmo.in/MoinCoreTeamGroup Source: http://static.moinmo.in/files http://hg.moinmo.in/ Copyright: 1999-2000, Martin Pool 2000-2006, Jürgen Hermann 2002-2011, Thomas Waldmann 2006-2010, The MoinMoin development team License: GPL-2+ Comment: MoinCoreTeamGroup consist of the following members: * Jürgen Hermann * Thomas Waldmann * Florian Festi * Alexander Schremmer * Reimar Bauer * Radomir Dopieralski . Subsets of above are not treated separately - i.e. only files owned (solely or in part) by others or unusually licensed are noted separately. Comment: Above section last updated 2010-02-01. Files: MoinMoin/web/static/htdocs/applets/FCKeditor/* MoinMoin/web/static/htdocs/applets/moinFCKplugins/* Copyright: 2003-2010, Frederico Caldeira Knabben License: GPL-2+ or LGPL-2.1+ or MPL-1.1+ Licensed under the terms of any of the following licenses at your choice: . - GNU General Public License Version 2 or later (the "GPL") http://www.gnu.org/licenses/gpl.html . - GNU Lesser General Public License Version 2.1 or later (the "LGPL") http://www.gnu.org/licenses/lgpl.html . - Mozilla Public License Version 1.1 or later (the "MPL") http://www.mozilla.org/MPL/MPL-1.1.html Files: MoinMoin/support/pygments/* Copyright: 2006-2010, the Pygments team License: other-ModifiedBSD Files: MoinMoin/support/werkzeug/* Copyright: 2009,2011, the Werkzeug Team License: other-ModifiedBSD Files: contrib/TWikiDrawPlugin/* Copyright: 1996-1997, IFA Informatik 1996-1997, Erich Gamma 2000, Peter Thoeny License: other-TwikiDraw 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. Files: MoinMoin/web/static/htdocs/applets/moinFCKplugins/smiley/smile.png MoinMoin/web/static/htdocs/classic/img/idea.png MoinMoin/web/static/htdocs/classic/img/redface.png MoinMoin/web/static/htdocs/classic/img/sad.png MoinMoin/web/static/htdocs/classic/img/smile.png MoinMoin/web/static/htdocs/classic/img/smile2.png MoinMoin/web/static/htdocs/classic/img/smile3.png MoinMoin/web/static/htdocs/modern/img/idea.png MoinMoin/web/static/htdocs/modern/img/redface.png MoinMoin/web/static/htdocs/modern/img/sad.png MoinMoin/web/static/htdocs/modern/img/smile.png MoinMoin/web/static/htdocs/modern/img/smile2.png MoinMoin/web/static/htdocs/modern/img/smile3.png MoinMoin/web/static/htdocs/rightsidebar/img/idea.png MoinMoin/web/static/htdocs/rightsidebar/img/redface.png MoinMoin/web/static/htdocs/rightsidebar/img/sad.png MoinMoin/web/static/htdocs/rightsidebar/img/smile.png MoinMoin/web/static/htdocs/rightsidebar/img/smile2.png MoinMoin/web/static/htdocs/rightsidebar/img/smile3.png Copyright: 1999, Philipp Esselbach License: UNKNOWN Files: MoinMoin/events/* MoinMoin/xmlrpc/_tests/test_xmlrpc.py jabberbot/* Copyright: 2007, Karol Nowak License: GPL-2+ Files: MoinMoin/datastruct/__init__.py MoinMoin/datastruct/backends/* MoinMoin/formatter/_tests/test_groups.py MoinMoin/formatter/groups.py MoinMoin/search/_tests/test_wiki_analyzer.py MoinMoin/userform/_tests/test_admin.py Copyright: 2009, Dmitrijs Milajevs License: GPL-2+ Files: MoinMoin/support/xappy/* Copyright: 2007, Lemur Consulting Ltd License: GPL-2+ Files: MoinMoin/support/flup/* Copyright: 2005-2006, Allan Saddi License: FreeBSD Files: MoinMoin/action/newaccount.py MoinMoin/action/recoverpass.py MoinMoin/action/serveopenid.py MoinMoin/auth/botbouncer.py MoinMoin/auth/openidrp.py MoinMoin/macro/EditTemplates.py MoinMoin/macro/LikePages.py MoinMoin/macro/TableOfContents.py MoinMoin/parser/text_csv.py MoinMoin/parser/text_pascal.py MoinMoin/script/xmlrpc/write.py MoinMoin/userprefs/__init__.py MoinMoin/userprefs/oid.py MoinMoin/userprefs/oidserv.py MoinMoin/util/moinoid.py Copyright: 2004-2008, Johannes Berg License: GPL-2+ Files: contrib/raw_wsgi_bench.py MoinMoin/_tests/test_wsgiapp.py MoinMoin/web/contexts.py MoinMoin/web/exceptions.py MoinMoin/web/frontend.py MoinMoin/web/__init__.py MoinMoin/web/profile.py MoinMoin/web/request.py MoinMoin/web/serving.py MoinMoin/web/_tests/test_utils.py wiki/server/moin.ajp wiki/server/moin.scgi Copyright: 2008, Florian Krupicka License: GPL-2+ Files: MoinMoin/error.py MoinMoin/failure.py MoinMoin/formatter/pagelinks.py MoinMoin/macro/EditedSystemPages.py MoinMoin/script/old/repair_language.py MoinMoin/server/__init__.py MoinMoin/theme/rightsidebar.py MoinMoin/util/profile.py MoinMoin/widget/dialog.py Copyright: 2004-2005, Nir Soffer License: GPL-2+ Files: MoinMoin/action/MyPages.py MoinMoin/action/fckdialog.py MoinMoin/security/autoadmin.py MoinMoin/xmlrpc/UpdateGroup.py Copyright: 2005-2006, Bastian Blank 2005-2006, Florian Festi 2005-2006, Thomas Waldmann License: GPL-2+ Files: MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinattachment/fck_attachment.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinformat/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinimage/fck_image.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinlink/fck_link.js Copyright: 2003-2004, Frederico Caldeira Knabben License: LGPL Files: MoinMoin/macro/__init__.py MoinMoin/config/multiconfig.py MoinMoin/userprefs/changepass.py MoinMoin/userprefs/notification.py MoinMoin/userprefs/suid.py Copyright: 2000-2004, Jürgen Hermann 2003-2009, Thomas Waldmann 2007-2008, Johannes Berg License: GPL-2+ Files: MoinMoin/web/static/htdocs/classic/img/moin-new.png MoinMoin/web/static/htdocs/modern/img/moin-new.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-new.png Copyright: 1996, Leo Doerr License: UNKNOWN Files: contrib/AnyWikiDraw/anywikidraw/mediawiki*/extensions/AnyWikiDraw/AnyWikiDraw.php contrib/AnyWikiDraw/anywikidraw/mediawiki*/extensions/AnyWikiDraw/AnyWikiDraw_body.php Copyright: 2007-2009, WernerRandelshofer License: GPL Files: MoinMoin/support/parsedatetime/parsedatetime.py Copyright: 2002-2006, Mark Pilgrim, All rights reserved 2004-2008, Mike Taylor 2006-2008, Darshana Chhajed License: Apache-2.0 Files: MoinMoin/support/parsedatetime/__init__.py Copyright: 2004-2008, Mike Taylor 2006-2008, Darshana Chhajed License: Apache-2.0 Files: MoinMoin/support/parsedatetime/parsedatetime_consts.py Copyright: 2004-2008, Mike Taylor 2006-2008, Darshana Chhajed 2007, Bernd Zeimetz License: Apache-2.0 Files: MoinMoin/theme/modern.py MoinMoin/theme/modernized.py Copyright: 2003-2005, Nir Soffer 2003-2005, Thomas Waldmann License: GPL-2+ Files: MoinMoin/search/__init__.py MoinMoin/search/results.py MoinMoin/search/Xapian/search.py MoinMoin/search/queryparser/__init__.py Copyright: 2005, Alexander Schremmer 2005, Florian Festi 2005, Nir Soffer 2006, Franz Pletz 2006-2009, Thomas Waldmann License: GPL-2+ Files: MoinMoin/search/Xapian/__init__.py MoinMoin/search/Xapian/tokenizer.py Copyright: 2006, Franz Pletz 2006-2009, Thomas Waldmann License: GPL-2+ Files: MoinMoin/search/Xapian/indexing.py Copyright: 2006, Franz Pletz 2006-2009, Thomas Waldmann 2009, Dmitrijs Milajevs License: GPL-2+ Files: MoinMoin/script/server/__init__.py MoinMoin/script/server/standalone.py wikiserver.py wiki/server/wikiserver.py Copyright: 2007-2008, Forrest Voight License: GPL-2+ Files: MoinMoin/auth/openidrp_ext/__init__.py MoinMoin/auth/openidrp_ext/openidrp_sreg.py MoinMoin/auth/openidrp_ext/openidrp_teams.py Copyright: 2007-2009, Canonical, Inc License: GPL-2+ Files: MoinMoin/web/flup_frontend.py MoinMoin/web/session.py MoinMoin/web/utils.py MoinMoin/wsgiapp.py Copyright: 2003-2009, Thomas Waldmann 2008, Florian Krupicka License: GPL-2+ Files: MoinMoin/datastruct/backends/_tests/__init__.py MoinMoin/datastruct/backends/_tests/test_wiki_groups.py Copyright: 2003-2004, Jürgen Hermann 2007, Thomas Waldmann 2008, Melita Mihaljevic 2009, Dmitrijs Milajevs License: GPL-2+ Files: contrib/TWikiDrawPlugin/packages/com/keypoint/* Copyright: 2002-2003, J. David Eisenberg License: LGPL-2.1+ Files: MoinMoin/support/parsedatetime/parsedatetime.py Copyright: 2002-2006, Mark Pilgrim 2004-2006, Mike Taylor License: Apache-2.0 Files: contrib/TWikiDrawPlugin/packages/Acme/* Copyright: 1996,1998, Jef Poskanzer License: FreeBSD Files: MoinMoin/filter/EXIF.py Copyright: 2002, Gene Cash License: FreeBSD Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/image.cfc Copyright: 2004, James F. Dew 2007, Rick Root License: other-OpenBSD-Webworks Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/ImageObject.cfc Copyright: 2006, Rick Root License: other-OpenBSD-Webworks Files: MoinMoin/web/static/htdocs/common/js/infobox.js Copyright: 2002, Klaus Knopper License: GPL-2 Files: MoinMoin/action/__init__.py wiki/server/moin.cgi Copyright: 2000-2005, Juergen Hermann 2006,2008, Thomas Waldmann 2008, Florian Krupicka License: GPL-2+ Files: MoinMoin/util/__init__.py Copyright: 1999-2000, FourThought, http://4suite.com/4DOM 2004, Jürgen Hermann 2004, Thomas Waldmann License: GPL-2+ Files: docs/licenses/pikipiki.txt Copyright: 1999-2000, Martin Pool License: GPL-2+ Files: MoinMoin/action/LikePages.py MoinMoin/macro/Include.py Copyright: 2000-2001, Richard Jones 2000-2004, Jürgen Hermann License: GPL-2+ Files: MoinMoin/parser/text_xslt.py Copyright: 2001-2003, Jürgen Hermann 2005, Alexander Schremmer 2005, Henry Ho License: GPL-2+ Files: MoinMoin/action/anywikidraw.py MoinMoin/action/AttachFile.py MoinMoin/action/twikidraw.py Copyright: 2001, Ken Sugino 2001-2004, Jürgen Hermann 2005, Alexander Schremmer 2005, Diego Ongaro 2005-2009, Reimar Bauer 2007-2008, Thomas Waldmann License: GPL-2+ Files: MoinMoin/action/SpellCheck.py Copyright: 2001, Richard Jones 2001-2004, Jürgen Hermann License: GPL-2+ Files: MoinMoin/action/LocalSiteMap.py Copyright: 2001, Steve Howell 2001-2004, Jürgen Hermann License: GPL-2+ Files: MoinMoin/server/server_standalone.py Copyright: 2001-2004, Jürgen Hermann 2005, Alexander Schremmer 2005, Nir Soffer License: GPL-2+ Files: MoinMoin/caching.py Copyright: 2001-2004, Jürgen Hermann 2006-2009, Thomas Waldmann 2008, Thomas Pfaff License: GPL-2+ Files: MoinMoin/util/diff_html.py Copyright: 2002, Jürgen Hermann 2002, Scott Moonen License: GPL-2+ Files: MoinMoin/script/export/package.py Copyright: 2002-2004, Jürgen Hermann 2005-2006, Thomas Waldmann 2007, Federico Lorenzi License: GPL-2+ Files: MoinMoin/stats/languages.py Copyright: 2002-2004, Jürgen Hermann 2007, Nina Kuisma 2007, Thomas Waldmann License: GPL-2+ Files: MoinMoin/i18n/tools/check_i18n.py Copyright: 2003, Florian Festi 2003, Nir Soffer 2003, Thomas Waldmann License: GPL-2+ Files: MoinMoin/wikidicts.py Copyright: 2003, Gustavo Niemeyer 2003-2007, Thomas Waldmann License: GPL-2+ Files: MoinMoin/auth/sslclientcert.py Copyright: 2003, Martin v. Loewis 2006, Thomas Waldmann License: GPL-2+ Files: MoinMoin/_tests/test_error.py Copyright: 2003-2004, Nir Soffer 2007, Thomas Waldmann License: GPL-2+ Files: MoinMoin/wikiutil.py Copyright: 2000-2004, Jürgen Hermann 2004, Florian Festi 2005-2008, Thomas Waldmann 2006, Mikko Virkkil 2007, Reimar Bauer License: GPL-2+ Files: MoinMoin/macro/AttachInfo.py Copyright: 2004, Jacob Cohen 2004, Nigel Metheringham License: GPL-2+ Files: MoinMoin/parser/text_rst.py Copyright: 2004, Alexander Schremmer 2004, Matthew Gilbert License: GPL-2+ Files: MoinMoin/action/newpage.py Copyright: 2004, Alexander Schremmer 2004, Nir Soffer 2004, Vito Miliano 2008, Reimar Bauer License: GPL-2+ Files: MoinMoin/util/_tests/test_pysupport.py Copyright: 2004, Oliver Graf 2007, Thomas Waldmann License: GPL-2+ Files: MoinMoin/server/server_twisted.py wiki/server/mointwisted.py Copyright: 2004-2005, Nir Soffer 2004-2005, Oliver Graf 2004-2005, Thomas Waldmann License: GPL-2+ Files: wiki/server/moinmodpy.py Copyright: 2004-2005, Oliver Graf License: GPL-2+ Files: ./wiki/server/mointwisted Copyright: 2004-2005, Nir Soffer 2004-2005, Thomas Waldmann License: GPL-2+ Files: MoinMoin/macro/Hits.py Copyright: 2004-2008, Reimar Bauer 2005, Benjamin Vrolijk License: GPL-2+ Files: MoinMoin/action/SubscribeUser.py Copyright: 2003, Daniela Nicklas 2005, Alexander Schremmer License: GPL-2+ Files: MoinMoin/parser/text_docbook.py Copyright: 2005, Alexander Schremmer 2005, Henry Ho License: GPL-2+ Files: MoinMoin/_tests/test_packages.py Copyright: 2005, Alexander Schremmer 2007, Federico Lorenzi License: GPL-2+ Files: MoinMoin/converter/_tests/test_text_html_text_moin_wiki.py Copyright: 2005, Bastian Blank 2005,2007, Thomas Waldmann License: GPL-2+ Files: MoinMoin/util/bdiff.py Copyright: 2005, Matt Mackall 2006, Alexander Schremmer License: GPL-2+ Files: MoinMoin/search/_tests/test_search.py Copyright: 2005, Nir Soffer 2007, Thomas Waldmann License: GPL-2+ Files: MoinMoin/security/__init__.py Copyright: 2000-2004, Jürgen Hermann 2003, Gustavo Niemeyer 2003-2008, Thomas Waldmann 2005, Oliver Graf 2007, Alexander Schremmer License: GPL-2+ Files: MoinMoin/parser/_ParserBase.py Copyright: 2002, Taesu Pyo 2005, Oliver Graf 2005-2008, Thomas Waldmann License: GPL-2+ Files: MoinMoin/formatter/text_docbook.py Copyright: 2005, Alexander Schremmer 2005, Petr Pytelka 2005,2008, Mikko Virkkil License: GPL-2+ Files: MoinMoin/converter/text_html_text_moin_wiki.py MoinMoin/formatter/text_gedit.py Copyright: 2005-2006, Bastian Blank 2005-2006, Florian Festi 2005-2006, Reimar Bauer 2005-2007, Thomas Waldmann License: GPL-2+ Files: MoinMoin/action/logout.py Copyright: 2005-2006, Radomirs Cirskis License: GPL-2+ Files: ./MoinMoin/parser/text_diff.py Copyright: 2006, Emilio Lopes License: GPL-2+ Files: MoinMoin/macro/FullSearch.py Copyright: 2000-2004, Jürgen Hermann 2006, Franz Pletz License: GPL-2+ Files: MoinMoin/search/queryparser/expressions.py Copyright: 2005, Alexander Schremmer 2005, Florian Festi 2005, Nir Soffer 2006, Franz Pletz 2006-2008, Thomas Waldmann 2009, Dmitrijs Milajevs License: GPL-2+ Files: MoinMoin/parser/text_irssi.py Copyright: 2004, Thomas Waldmann 2006, Georg Brandl License: GPL-2+ Files: MoinMoin/auth/ldap_login.py Copyright: 2006, Nick Phillips 2006-2008, Thomas Waldmann License: GPL-2+ Files: MoinMoin/macro/AttachList.py Copyright: 2004, Jacob Cohen, Nigel Metheringham 2006, Reimar Bauer License: GPL-2+ Files: MoinMoin/action/login.py Copyright: 2005-2006, Radomirs Cirskis 2006, Thomas Waldmann License: GPL-2+ Files: MoinMoin/action/RenamePage.py Copyright: 2002-2004, Michael Reinsch 2006-2007, Thomas Waldmann 2007, Reimar Bauer License: GPL-2+ Files: MoinMoin/PageGraphicalEditor.py Copyright: 2006, Bastian Blank 2006, Florian Festi 2006-2007, Thomas Waldmann License: GPL-2+ Files: MoinMoin/support/python_compatibility.py Copyright: 2007, Heinrich Wendel 2007, Thomas Waldmann License: GPL-2+ Files: MoinMoin/macro/FootNote.py Copyright: 2002, Jürgen Hermann 2007, Johannes Berg 2007, Reimar Bauer License: GPL-2+ Files: MoinMoin/auth/http.py MoinMoin/log.py MoinMoin/auth/smb_mount.py MoinMoin/session.py MoinMoin/script/account/resetpw.py MoinMoin/script/migration/_conv160_wiki.py MoinMoin/script/migration/_conv160a_wiki.py Copyright: 2006-2009, Thomas Waldmann 2007-2008, Johannes Berg License: GPL-2+ Files: MoinMoin/macro/EmbedObject.py Copyright: 2006, TomSi 2006-2009, Reimar Bauer 2007, OliverSiemoneit License: GPL-2+ Files: MoinMoin/macro/_tests/test_EmbedObject.py MoinMoin/macro/Action.py Copyright: 2004,2007-2008, Johannes Berg 2007-2008, Reimar Bauer License: GPL-2+ Files: MoinMoin/server/server_wsgi.py Copyright: 2005, Anakim Border 2007, Thomas Waldmann License: GPL-2+ Files: MoinMoin/action/userprefs.py Copyright: 2006, Radomir Dopieralski 2007-2008, Johannes Berg License: GPL-2+ Files: MoinMoin/parser/_tests/test_unicode.py Copyright: 2007-2008, Raphael Bossek License: GPL-2+ Files: MoinMoin/action/_tests/test_attachfile.py Copyright: 2007, Karol Nowak 2007-2008, Reimar Bauer License: GPL-2+ Files: jabberbot/capat.py Copyright: 2007, Robert Lehmann 2008, Bolesaw Kulbabiski License: GPL-2+ Files: MoinMoin/script/migration/1089999.py Copyright: 2008, Christopher Denter License: GPL-2+ Files: MoinMoin/action/revert.py Copyright 2000-2004, Jürgen Hermann 2006-2008, Thomas Waldmann 2007-2009, Reimar Bauer 2008, Johannes Berg License: GPL-2+ Files: MoinMoin/datastruct/backends/_tests/test_composite_dicts.py Copyright: 2008, Melita Mihaljevic 2009, Dmitrijs Milajevs License: GPL-2+ Files: MoinMoin/macro/NewPage.py Copyright: 2004, Alexander Schremmer 2004, Nir Soffer 2004, Vito Miliano 2006-2008, Reimar Bauer 2008, Radomir Dopieralski License: GPL-2+ Files: wiki/server/moin_flup_wsgi.py Copyright: 2005, Anakim Border 2008, Thomas Waldmann License: GPL-2+ Files: MoinMoin/util/lock.py Copyright: 2005, Florian Festi 2005, Nir Soffer 2008, Thomas Waldmann License: GPL-2+ Files: MoinMoin/conftest.py Copyright: 2005, Nir Soffer 2007, Alexander Schremmer 2008, Thomas Waldmann License: GPL-2+ Files: MoinMoin/auth/mysql_group.py Copyright: 2006, Nick Phillips 2007, Johannes Berg 2008, Thomas Waldmann License: GPL-2+ Files: MoinMoin/_tests/__init__.py Copyright: 2007, Karol Nowak 2008, Reimar Bauer 2008, Thomas Waldmann License: GPL-2+ Files: MoinMoin/macro/GetText2.py Copyright: 2006, Alexander Schremmer 2009, Eugene Syromyatnikov 2009, Thomas Waldmann License: GPL-2+ Files: MoinMoin/macro/HighlighterList.py Copyright: 2009, Eugene Syromyatnikov License: GPL-2+ Files: MoinMoin/auth/cas.py Copyright: 2009, Richard Liao License: GPL-2+ Files: MoinMoin/action/SlideShow.py Copyright: 2005, Jim Clark 2005, Nir Soffer 2008, Thomas Waldmann 2009, Reimar Bauer 2010, Paul Boddie License: GPL-2+ Files: MoinMoin/user.py Copyright: 2000-2004, Juergen Hermann 2003-2007, Thomas Waldmann 2010, Michael Foetsch License: GPL-2+ Files: MoinMoin/action/SubscribeUser.py Copyright: 2003, Daniela Nicklas 2005, Alexander Schremmer 2009, Thomas Waldmann License: GPL-2+ Files: MoinMoin/support/python_compatibility.py Copyright: 2007, Heinrich Wendel 2009, Thomas Waldmann License: GPL-2+ Files: MoinMoin/web/static/htdocs/modernized/css/SlideShow.css Copyright: 2008, Thomas Waldmann 2010, Paul Boddie License: GPL-2+ Files: MoinMoin/web/_fallback_cgi.py Copyright: 2003-2006, Phillip J. Eby License: other-PD @license: Public Domain Files: MoinMoin/support/flup/server/paste_factory.py Copyright: 2005, Ian Bicking and contributors License: Expat Files: MoinMoin/support/werkzeug/debug/shared/jquery.js Copyright: 2009, John Resig 2010, The Dojo Foundation License: Expat or GPL Files: MoinMoin/server/daemon.py Copyright: 2001-2004, Twisted Matrix Laboratories 2005, Nir Soffer License: Expat Files: MoinMoin/support/tarfile.py Copyright: 2002, Lars Gustbel License: Expat Files: MoinMoin/_tests/pep8.py Copyright: 2006, Johann C. Rocholl License: Expat Files: MoinMoin/web/static/htdocs/applets/moinFCKplugins/smiley/fck_smiley.html Copyright: 2003-2008, Frederico Caldeira Knabben License: MPL-1.1 Files: MoinMoin/support/HeaderFixed.py Copyright: 2002-2004, Python Software Foundation License: PSF Files: MoinMoin/web/static/htdocs/modernized/img/* Copyright: 2003, Tango Desktop Project License: CC-BY-SA-2.5 Files: MoinMoin/web/static/htdocs/modernized/img/moin-news.png MoinMoin/web/static/htdocs/modernized/img/moin-unsubscribe.png MoinMoin/web/static/htdocs/modernized/img/moin-www.png Copyright: 2003, Jakub 'jimmac' Steiner License: CC-BY-SA-2.5 Files: MoinMoin/web/static/htdocs/modernized/img/thumbs-up.png Copyright: Radomir 'The Sheep' Dopierlaski License: CC-BY-SA-2.5 Files: MoinMoin/support/htmlmarkup.py Copyright: 2003-2006, Edgewall Software 2006, Alexander Schremmer License: other-ModifiedBSD Files: wiki/server/moinmodpy.htaccess Copyright: 2004, Oliver Graf License: UNKNOWN Files: MoinMoin/support/xapwrap/index.py Copyright: 2005, Divmod Inc. License: Expat Files: MoinMoin/util/thread_monitor.py contrib/googleimport/driver.py Copyright: 2006-2007, Alexander Schremmer License: GPL-2 Files: MoinMoin/_tests/test_sourcecode.py Copyright: 2006, Armin Rigo 2007, Thomas Waldmann License: Expat Files: wiki/server/test.wsgi Copyright: 2008, Thomas Waldmann License: PSF Files: wiki/underlay/pages/HelpOnParsers(2f)ReStructuredText(2f)RstPrimer/revisions/00000001 Copyright: This document has been placed in the public domain License: other-PD This document has been placed in the public domain. Files: wiki/underlay/pages/HelpOnInstalling(2f)TwistedWeb/attachments/servicerunner.py Copyright: 2009, ChunlinZhang License: UNKNOWN Files: debian/* Copyright: 2003-2010, Jonas Smedegaard 2009-2010, Frank Lin Piat License: GPL-2+ Files: MoinMoin/security/sec_recaptcha.py debian/patches/recaptcha.patch Copyright: 2011, Steve McIntyre License: GPL-2+ Files: debian/licensecheck Copyright: 2007-2008, Adam D. Barratt License: GPL-2+ License: GPL-2+ 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. . Some files instead include the following alternate text: . @license: GNU GPL, see COPYING for details. . The referenced file COPYING do not exist. . On Debian systems, the complete text of the GNU General Public License (GPL) version 2 can be found at "/usr/share/common-licenses/GPL-2". . You should have received a copy of the GNU General Public License along with this program. If not, see . License: GPL-2 You can copy/modify and distribute this code under the conditions of the GNU GENERAL PUBLIC LICENSE Version 2. . Some files instead include the following alternate text: . @license: GNU GPL Version 2 . On Debian systems, the complete text of the GNU General Public License (GPL) version 2 can be found at "/usr/share/common-licenses/GPL-2". . You should have received a copy of the GNU General Public License along with this program. If not, see . License: LGPL Licensed under the terms of the GNU Lesser General Public License: http://www.opensource.org/licenses/lgpl-license.php . On Debian systems, the complete text of the GNU Lesser General Public License (LGPL) can be found at "/usr/share/common-licenses/LGPL". . You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This library 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 Lesser General Public License for more details. . On Debian systems, the complete text of the GNU Lesser General Public License (LGPL) version 2.1 can be found at "/usr/share/common-licenses/LGPL-2.1". . You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . License: Apache-2.0 On Debian systems, the complete text of the Apache License version 2.0 can be found at "/usr/share/common-licenses/Apache-2.0". License: MPL-1.1+ MOZILLA PUBLIC LICENSE Version 1.1 . --------------- . 1. Definitions. . 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. . 1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. . 1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. . 1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. . 1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. . 1.5. "Executable" means Covered Code in any form other than Source Code. . 1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. . 1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. . 1.8. "License" means this document. . 1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. . 1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. . B. Any new file that contains any part of the Original Code or previous Modifications. . 1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. . 1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. . 1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. . 1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. . 2. Source Code License. . 2.1. The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and . (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). . (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. . (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. . 2.2. Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license . (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and . (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). . (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. . (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. . 3. Distribution Obligations. . 3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. . 3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. . 3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. . 3.4. Intellectual Property Matters (a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. . (b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. . (c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. . 3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. . 3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. . 3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. . 4. Inability to Comply Due to Statute or Regulation. . If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. . 5. Application of this License. . This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. . 6. Versions of the License. . 6.1. New Versions. Netscape Communications Corporation ("Netscape") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. . 6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. . 6.3. Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) . 7. DISCLAIMER OF WARRANTY. . COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. . 8. TERMINATION. . 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. . 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: . (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. . (b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. . 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. . 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. . 9. LIMITATION OF LIABILITY. . UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. . 10. U.S. GOVERNMENT END USERS. . The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. . 11. MISCELLANEOUS. . This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. . 12. RESPONSIBILITY FOR CLAIMS. . As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. . 13. MULTIPLE-LICENSED CODE. . Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. . EXHIBIT A -Mozilla Public License. . ``The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ . Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. . The Original Code is ______________________________________. . The Initial Developer of the Original Code is ________________________. Portions created by ______________________ are Copyright (C) ______ _______________________. All Rights Reserved. . Contributor(s): ______________________________________. . Alternatively, the contents of this file may be used under the terms of the _____ license (the "[___] License"), in which case the provisions of [______] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [____] License and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [___] License. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the [___] License." . [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] License: FreeBSD 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. License: other-OpenBSD-Webworks Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - 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. - Neither the name of the Webworks, LLC. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT OWNER 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. License: Expat 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. License: PSF A. HISTORY OF THE SOFTWARE ========================== . Python was created in the early 1990s by Guido van Rossum at Stichting Mathematisch Centrum (CWI) in the Netherlands as a successor of a language called ABC. Guido is Python's principal author, although it includes many contributions from others. The last version released from CWI was Python 1.2. In 1995, Guido continued his work on Python at the Corporation for National Research Initiatives (CNRI) in Reston, Virginia where he released several versions of the software. Python 1.6 was the last of the versions released by CNRI. In 2000, Guido and the Python core development team moved to BeOpen.com to form the BeOpen PythonLabs team. Python 2.0 was the first and only release from BeOpen.com. . Following the release of Python 1.6, and after Guido van Rossum left CNRI to work with commercial software developers, it became clear that the ability to use Python with software available under the GNU Public License (GPL) was very desirable. CNRI and the Free Software Foundation (FSF) interacted to develop enabling wording changes to the Python license. Python 1.6.1 is essentially the same as Python 1.6, with a few minor bug fixes, and with a different license that enables later versions to be GPL-compatible. Python 2.1 is a derivative work of Python 1.6.1, as well as of Python 2.0. . After Python 2.0 was released by BeOpen.com, Guido van Rossum and the other PythonLabs developers joined Digital Creations. All intellectual property added from this point on, starting with Python 2.1 and its alpha and beta releases, is owned by the Python Software Foundation (PSF), a non-profit modeled after the Apache Software Foundation. See http://www.python.org/psf/ for more information about the PSF. . Thanks to the many outside volunteers who have worked under Guido's direction to make these releases possible. . . B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON =============================================================== . PSF LICENSE AGREEMENT --------------------- . 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 2.1.1 software in source or binary form and its associated documentation. . 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 2.1.1 alone or in any derivative version, provided, however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001 Python Software Foundation; All Rights Reserved" are retained in Python 2.1.1 alone or in any derivative version prepared by Licensee. . 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 2.1.1 or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python 2.1.1. . 4. PSF is making Python 2.1.1 available to Licensee on an "AS IS" basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 2.1.1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. . 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 2.1.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.1.1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. . 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. . 7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between PSF and Licensee. This License Agreement does not grant permission to use PSF trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. . 8. By copying, installing or otherwise using Python 2.1.1, Licensee agrees to be bound by the terms and conditions of this License Agreement. . . BEOPEN.COM TERMS AND CONDITIONS FOR PYTHON 2.0 ---------------------------------------------- . BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 . 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization ("Licensee") accessing and otherwise using this software in source or binary form and its associated documentation ("the Software"). . 2. Subject to the terms and conditions of this BeOpen Python License Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative version, provided, however, that the BeOpen Python License is retained in the Software, alone or in any derivative version prepared by Licensee. . 3. BeOpen is making the Software available to Licensee on an "AS IS" basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. . 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. . 5. This License Agreement will automatically terminate upon a material breach of its terms and conditions. . 6. This License Agreement shall be governed by and interpreted in all respects by the law of the State of California, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between BeOpen and Licensee. This License Agreement does not grant permission to use BeOpen trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. As an exception, the "BeOpen Python" logos available at http://www.pythonlabs.com/logos.html may be used according to the permissions granted on that web page. . 7. By copying, installing or otherwise using the software, Licensee agrees to be bound by the terms and conditions of this License Agreement. . . CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT ------------------------------------------------- . 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6.1 software in source or binary form and its associated documentation. . 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6.1 alone or in any derivative version, provided, however, that CNRI's License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) 1995-2001 Corporation for National Research Initiatives; All Rights Reserved" are retained in Python 1.6.1 alone or in any derivative version prepared by Licensee. Alternately, in lieu of CNRI's License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6.1 is made available subject to the terms and conditions in CNRI's License Agreement. This Agreement together with Python 1.6.1 may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1013. This Agreement may also be obtained from a proxy server on the Internet using the following URL: http://hdl.handle.net/1895.22/1013". . 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6.1 or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python 1.6.1. . 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. . 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. . 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. . 7. This License Agreement shall be governed by the federal intellectual property law of the United States, including without limitation the federal copyright law, and, to the extent such U.S. federal law does not apply, by the law of the Commonwealth of Virginia, excluding Virginia's conflict of law provisions. Notwithstanding the foregoing, with regard to derivative works based on Python 1.6.1 that incorporate non-separable material that was previously distributed under the GNU General Public License (GPL), the law of the Commonwealth of Virginia shall govern this License Agreement only as to issues arising under or with respect to Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. . 8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6.1, Licensee agrees to be bound by the terms and conditions of this License Agreement. . ACCEPT . . CWI PERMISSIONS STATEMENT AND DISCLAIMER ---------------------------------------- . Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved. . Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Stichting Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. . STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. License: CC-BY-SA-2.5 Attribution-ShareAlike 2.5 ========================== . CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. . License . THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. . BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. . 1. Definitions . 1. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. 2. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. 3. "Licensor" means the individual or entity that offers the Work under the terms of this License. 4. "Original Author" means the individual or entity who created the Work. 5. "Work" means the copyrightable work of authorship offered under the terms of this License. 6. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. 7. "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. . 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. . 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: . 1. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; 2. to create and reproduce Derivative Works; 3. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; 4. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. 5. . For the avoidance of doubt, where the work is a musical composition: 1. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. 2. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). 6. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). . The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. . 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: . 1. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested. 2. You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. 3. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. . 5. Representations, Warranties and Disclaimer . UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. . 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. . 7. Termination . 1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. 2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. . 8. Miscellaneous . 1. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. 2. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. 3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. 4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. 5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. . Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. . Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. . Creative Commons may be contacted at http://creativecommons.org/ License: other-ModifiedBSD 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. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR `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 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. debian/python-moinmoin.dirs0000644000000000000000000000013612211217775013222 0ustar /etc/moin usr/share/doc/python-moinmoin/examples/desktop-edition usr/share/pyshared/MoinMoin debian/moin-update-wikilist0000755000000000000000000000174712211217775013211 0ustar #!/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: $!"; debian/python-moinmoin.docs0000644000000000000000000000012212211217775013204 0ustar README docs/INSTALL.html docs/README.migration docs/REQUIREMENTS docs/UPDATE.html debian/servertweaks.sed0000644000000000000000000000067712211217775012427 0ustar ### 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 debian/python-moinmoin.manpages0000644000000000000000000000010612211217775014051 0ustar debian/moin-mass-migrate.8 debian/moin-update-wikilist.1 debian/moin.1debian/moinmaster.py0000644000000000000000000000244312211217775011726 0ustar # -*- 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/' debian/changelog0000644000000000000000000026134312302376107011052 0ustar moin (1.9.7-1ubuntu2) trusty; urgency=medium * Rebuild to drop files installed into /usr/share/pyshared. -- Matthias Klose Sun, 23 Feb 2014 13:48:55 +0000 moin (1.9.7-1ubuntu1) trusty; urgency=medium * Merge with Debian; remaining changes: * debian/control: - remove python-xml from Suggests field, the package isn't in sys.path any more. - demote fckeditor from Recommends to Suggests; the code was previously embedded in moin, but it was also disabled, so there's no reason for us to pull this in by default currently. Note: fckeditor has a number of security problems and so this change probably needs to be carried indefinitely. -- Matthias Klose Tue, 07 Jan 2014 21:33:21 +0100 moin (1.9.7-1) unstable; urgency=low * New upstream release (x2) * Make sure that strings output to the external account creation checker are marked as UTF-8. * Re-add missing dependencies, fallout from the CDBS switch. Closes: #704433 * Add dependency on python-passlib rather than use the bundled version. * Update patches to fit upstream changes: + recaptcha.patch + subscribercache.patch + use_systemwide_libs.patch + mail-verification.patch * Remove patches that were already from upstream: + constant_time_strcmp.patch + escape_css_url.patch + secure_taintfile_name.patch + escape_pagename_in_rss.patch + draw-taintfile.patch + attachfile-path-traversal.patch * Split out the call to external account creation check into a separate patch (external_account_creation_check.patch) instead of lumping it in with mail-verification.patch * Do not create empty pagedir (with empty edit-log). Patch from upstream. Closes: #721557 -- Steve McIntyre <93sam@debian.org> Tue, 30 Apr 2013 18:45:43 +0100 moin (1.9.5-5ubuntu1) saucy; urgency=low * Merge from Debian unstable. Remaining changes: * debian/control: - remove python-xml from Suggests field, the package isn't in sys.path any more. - demote fckeditor from Recommends to Suggests; the code was previously embedded in moin, but it was also disabled, so there's no reason for us to pull this in by default currently. Note: fckeditor has a number of security problems and so this change probably needs to be carried indefinitely. -- Sebastien Bacher Thu, 16 May 2013 11:56:01 +0200 moin (1.9.5-5) unstable; urgency=low * Re-package without CDBS. * Switch from dh_pysupport to dh_python2 -- Steve McIntyre <93sam@debian.org> Sat, 19 Jan 2013 19:45:43 +0000 moin (1.9.5-4ubuntu1) raring-proposed; urgency=low * Merge from Debian unstable. Remaining changes: - debian/rules: remove python-xml from CDBS_SUGGESTS field, the package isn't in sys.path any more. - debian/rules: demote fckeditor from CDBS_RECOMMENDS to CDBS_SUGGESTS; the code was previously embedded in moin, but it was also disabled, so there's no reason for us to pull this in by default currently. Note: fckeditor has a number of security problems and so this change probably needs to be carried indefinitely. * Dropped the following patches, no longer needed: - debian/patches/CVE-2012-XXXX.patch - debian/patches/CVE-2012-YYYY.patch -- Jamie Strandboge Thu, 03 Jan 2013 10:58:34 -0600 moin (1.9.5-4) unstable; urgency=high * Another security fix from upstream: + fix path traversal vulnerability in AttachFile action (CVE-2012-6080). -- Steve McIntyre <93sam@debian.org> Sat, 29 Dec 2012 19:01:04 +0000 moin (1.9.5-3) unstable; urgency=high * Security fix from upstream: + fix remote code execution vulnerability in twikidraw/anywikidraw actions (CVE-2012-6081). -- Steve McIntyre <93sam@debian.org> Sat, 29 Dec 2012 16:54:15 +0000 moin (1.9.5-2) unstable; urgency=high * Several security fixes from upstream: + fix XSS issue, escape page name in rss link (CVE-2012-6082) + make taintfilename more secure + escape user- or admin-defined css url + use a constant time str comparison function to prevent timing attacks -- Steve McIntyre <93sam@debian.org> Wed, 12 Dec 2012 14:17:35 +0000 moin (1.9.5-1ubuntu2) raring-proposed; urgency=low * SECURITY UPDATE: arbitrary code execution via anywikidraw/twikidraw - debian/patches/CVE-2012-XXXX.patch: adjust action/anywikidraw.py and action/twikidraw.py to use wikiutil.taintfilename() - CVE-2012-XXXX * SECURITY UPDATE: path traversal via AttachFile - debian/patches/CVE-2012-YYYY.patch: adjust action/AttachFile.py to use wikiutil.taintfilename() - CVE-2012-YYYY -- Jamie Strandboge Sat, 29 Dec 2012 18:24:10 -0600 moin (1.9.5-1ubuntu1) raring; urgency=low * Merge from Debian unstable (LP: #1046616). Remaining changes: - Remove python-xml from Suggests field, the package isn't anymore in sys.path. - Demote fckeditor from Recommends to Suggests; the code was previously embedded in moin, but it was also disabled, so there's no reason for us to pull this in by default currently. Note: fckeditor has a number of security problems and so this change probably needs to be carried indefinitely. -- Marc Deslauriers Fri, 23 Nov 2012 09:18:37 -0500 moin (1.9.5-1) unstable; urgency=low * New upstream release. * New maintainer: Steve McIntyre. Thanks to Jonas for all his previous hard work. -- Steve McIntyre <93sam@debian.org> Sat, 10 Nov 2012 20:19:36 +0000 moin (1.9.4-8) unstable; urgency=high * High urgency for a security fix * Add patch from upstream to fix a virtual group bug in ACL evaluation (CVE-2012-4404). -- Steve McIntyre <93sam@debian.org> Wed, 05 Sep 2012 01:57:30 +0100 moin (1.9.4-7) unstable; urgency=low * subprocess.check_output only appeared in python 2.7. Use subprocess.Popen and .communicate() instead to get the same effect but working on older python versions too. -- Steve McIntyre <93sam@debian.org> Fri, 10 Aug 2012 14:20:26 +0100 moin (1.9.4-6) unstable; urgency=low * Fix the error message displayed when external_creation_check fails -- Steve McIntyre <93sam@debian.org> Mon, 30 Jul 2012 19:52:39 +0100 moin (1.9.4-5) unstable; urgency=low * Store date and host when a new account is created * Add the option to call an external helper program at account creation time to help with local account control policy (e.g. anti-spam) * Make sending of email verification messages slightly more verbose. -- Steve McIntyre <93sam@debian.org> Sun, 29 Jul 2012 11:40:28 +0100 moin (1.9.4-4) unstable; urgency=low * Fix stupid typo in the mail verification patch. Closes: #671211 -- Steve McIntyre <93sam@debian.org> Thu, 03 May 2012 12:55:49 +0100 moin (1.9.4-3) unstable; urgency=low * Update the subscriber lookup patch to add locking. * Add a new patch to add support for verifying email addresses during account creation. -- Steve McIntyre <93sam@debian.org> Mon, 30 Apr 2012 17:22:27 +0100 moin (1.9.4-2) unstable; urgency=low * Add a cache for subscriber lookup to boost performance on page save. Patch from Vitaliy Shchupak. Closes: #668000 -- Steve McIntyre <93sam@debian.org> Mon, 16 Apr 2012 20:18:27 +0100 moin (1.9.4-1) unstable; urgency=low * New upstream release. Closes: bug#663340. * Bump debhelper compatibility level to 7. * Stop providing/replacing/conflicting with moinmoin-common: Transitional quirk unneeded since Lenny. * Drop preinst/postrm conffile renaming hack, unneeded since MoinMoin 1.5.2. * Update package relations: + Stop needlessly build-depend versioned on cdbs: shadowed by even tighter versioning due to use of default Python install helper. + Use unversioned suggest for python-docutils: Needed version satisfied even in oldstable. * Drop dpkg-source local-options hint: Declared options are default since dpkg-source 1.16.1. * Drop patch implementing CVE-2011-1058: Applied upstream. * Unfuzz patch disabling GUI editor. * Update copyright file: + Extend/bump some copyright years. + Introduce new copyright holder. + Fix list more specific Files section after general one. + Bump format to 1.0. + Fix double-indent in Copyright fields as per Policy §5.6.13. * Bump standards-version to 3.9.3. -- Jonas Smedegaard Tue, 13 Mar 2012 11:20:33 +0100 moin (1.9.3-3) unstable; urgency=high [ Steve McIntyre ] * Add myself to Uploaders * Add patch from upstream to fix a cross-site scripting vulnerability in the rst parser (CVE-2011-1058). Closes: #643904 -- Steve McIntyre <93sam@debian.org> Tue, 04 Oct 2011 13:14:09 +0100 moin (1.9.3-2) unstable; urgency=low * Ease building with git-buildpackage: + Git-ignore quilt .pc dir. + Add source local-options. * Add patch to add simple support for using recaptcha. Closes: bug#637880. Thanks to Steve McIntyre. * Depend on python-recaptcha, required by recaptcha support. * Suggest cifs-utils (not smbfs). Closes: bug#638156. Thanks to Luk Claes. * Update copyright file: + Rewrite using draft 174 of DEP-5 format. + Add recaptcha patch, licensed GPL-2+. * Use Python helper python2 (not python-support). * Bump Policy compliance to Standards-Version 3.9.2. -- Jonas Smedegaard Mon, 22 Aug 2011 19:13:00 +0200 moin (1.9.3-1ubuntu3) quantal; urgency=low * SECURITY UPDATE: cross-site scripting issue in reStructuredText parser - debian/patches/CVE-2011-1058.patch: remove javascript support in MoinMoin/parser/text_rst.py. - CVE-2011-1058 * SECURITY UPDATE: incorrect permissions due to broken virtual group names handling - debian/patches/CVE-2012-4404.patch: fix group test in MoinMoin/security/__init__.py, added test in MoinMoin/security/_tests/test_security.py. - CVE-2012-4404 -- Marc Deslauriers Wed, 10 Oct 2012 10:13:05 -0400 moin (1.9.3-1ubuntu2) precise; urgency=low * Build using dh_python2 -- Matthias Klose Sat, 17 Dec 2011 13:16:29 +0000 moin (1.9.3-1ubuntu1) maverick; urgency=low * Merge from Debian unstable (LP: #586518). Based on work by Stefan Ebner. Remaining changes: - Remove python-xml from Suggests field, the package isn't anymore in sys.path. - Demote fckeditor from Recommends to Suggests; the code was previously embedded in moin, but it was also disabled, so there's no reason for us to pull this in by default currently. Note: fckeditor has a number of security problems and so this change probably needs to be carried indefinitely. -- Clint Byrum Wed, 11 Aug 2010 12:35:34 -0700 moin (1.9.3-1) unstable; urgency=low * New upstream release. [ Frank Lin PIAT ] * Build-Depends on python rather than python-dev. Closes: bug#576426. * Fix location of README.Migration in NEWS file. * Install upstream's docs/REQUIREMENTS file. * Add manpage moin(1). * Drop lintian override for test.wsgi: no longer executable. * Add lintian override for no-doc-base-registration. * Install the desktop edition sample config files. * Fix werkzeug-0.6 http redirect incompatibility. Closes: bug#579189. * Improve DEP3 header for patch fix_werkzeug_0.6_http_redirect * Fix werkzeug-0.6 xmlxpc incompatibility. Closes: bug#580186. [ Jonas Smedegaard ] * Fix conditionally append version in hash-bang of Python scripts (relevant only on systems where default Python version is unsupported - i.e. highly unlikely to have caused real trouble anywhere). Tighten build-dependency on cdbs to versions providing new variable name. Rephrase related comment. * Drop files section in copyright file for no longer shipped CDBS snippet. * Fix append version to python dependency if using non-default version. * Tidy rules file: move variable below cdbs inclusions, and improve some comments. * Drop patches applied in upstream 0.9.3 release. Refresh patches. * Tighten build-dependency on cdbs. * Bump Policy compliance to Standards-Version 3.9.1. -- Jonas Smedegaard Sat, 31 Jul 2010 20:46:59 -0400 moin (1.9.2-3) unstable; urgency=high [ Frank Lin PIAT ] * Add patch to fix CVE-2010-0828: XSS in Despam page. Closes: 575995, thanks to Jamie Strandboge (Ubuntu). [ Jakub Wilk ] * Fix htdocs symlink, when compiled with python2.6. Closes: bug#557956. [ Jonas Smedegaard ] * Drop local package-relations.mk snippet, now in main cdbs package. * Unfuzz and refresh patches (with quilt compacting options --no-timestamps --no-index -pab). * Add DEP3 header to patch "CVE-2010-0828.patch". * Stop suppressing optional build-dependencies: we need recent cdbs anyway (to not complicate packaging with a local CDBS snippet) so cannot please backporters anyway. * Build-depend on devscripts and dh-buildinfo, and tighten build- dependency on cdbs, due to above changes. -- Jonas Smedegaard Sat, 03 Apr 2010 16:27:00 +0200 moin (1.9.2-2ubuntu3) lucid; urgency=low * debian/rules: Avoid pulling libapache2-mod-wsgi by default, by recommending "apache2 | httpd-cgi" instead of "libapache2-mod-wsgi | httpd-cgi". Suggest libapache2-mod-wsgi instead. That prevents us from needing to rush libapache2-mod-wsgi in main one week before release. -- Thierry Carrez Fri, 23 Apr 2010 15:21:19 +0200 moin (1.9.2-2ubuntu2) lucid; urgency=low * Debian declares python-werkzeug and python-parsedatetime as Depends and python-xappy as Recommends, however these packages are in universe, which breaks Ubuntu policy (section 2.2.1). Until these packages can be added to main, use the embedded copies in moin. - debian/patches/ubuntu_use_embedded_for_main.patch: update setup.py - debian/rules: update CDBS_DEPENDS and CDBS_RECOMMENDS for the above * SECURITY UPDATE: fix XSS in Despam action - debian/patches/CVE-2010-0828.patch: use wikiutil.escape() in revert_pages() - CVE-2010-0828 -- Jamie Strandboge Tue, 30 Mar 2010 15:09:54 -0500 moin (1.9.2-2ubuntu1) lucid; urgency=low * Merge from Debian testing (LP: #521834). Based on work by Stefan Ebner. Remaining changes: - Remove python-xml from Suggests field, the package isn't anymore in sys.path. - Demote fckeditor from Recommends to Suggests; the code was previously embedded in moin, but it was also disabled, so there's no reason for us to pull this in by default currently. Note: This isn't necessary anymore but needs a MIR for fckeditor, so postpone dropping this change until lucid+1 * debian/rules: - Replace hardcoded python2.5 with python* and hardcore python2.6 for ln * debian/control.in: drop versioned depends on cdbs -- Jamie Strandboge Tue, 30 Mar 2010 12:55:34 -0500 moin (1.9.2-2) unstable; urgency=medium [ Frank Lin PIAT ] * Minor improvements to moin-update-wikilist.1 manpage [ Jonas Smedegaard ] * Update local CDBS snippets: + use main upstream-tarball.mk, and drop no longer used local one. + Include main utils.mk (not copyright-check.mk now gone). + Only dash-include non-crucial upstream-tarball.mk and suppress its build-dependency hint, to ease backporting. + Temporarily disable buildinfo.mk, until more backport-friendly. + Shrink local package-relations.mk to only handle binary relations (the rest merged into buildcore.mk since cdbs 0.4.69), and fix avoid accidentally relying on debhelper.mk. * As effect of above, stop build-depending on devscripts or dh-buildinfo, and relax build-dependency on cdbs to be unversioned. * Set urgency=medium, as only manpage changes should affect content of package, and improved backportability is wanted in testing. -- Jonas Smedegaard Mon, 08 Mar 2010 20:41:32 +0100 moin (1.9.2-1) unstable; urgency=low [ Frank Lin PIAT ] * New upstream release. + Fix broken with python-werkzeug 0.6-1, Closes: #571016 + Fix CVE-2010-0668 and CVE-2010-0669, Closes: #569975 + Fix action=diff Exception if a page doesn't exist/has no editlog, Closes: #567129 + Fix incompatibility with old style configuration "cookie_lifetime = 1" Closes: #560172 + Improve documentation of farmconfig.py, Closes: #559896 [ Jonas Smedegaard ] * Drop old conflicts/replaces needed for Etch transition. * Update copyright file: + Comma-separate files + merge some debian entries + bump some years + Add leading ./ to files + Improve wording of X-Copyright-Comment stanza + Use Maintainer stanza (not Contact) + Use Expat (not other-MIT) as license short-name + Fix GPL licenses to include verbatim license text, disclaimer and reference to FSF + Merge license other-ModifiedBSD with virtually identical other- ModifiedBSD-contributors + Declare copyright conformant with DEP5 rev. 135 * Bump copyright years and add Frank Lin as owner in rules file. * Refer to FSF website (not postal address) in rules file header. * Drop DEB_AUTO_UPDATE_DEBIAN_CONTROL handling from rules file (included in main cdbs since 0.4.67). Drop now unneeded lintian- overrides. * Stop build-depending on (yet) unused help2man. * Simplify installation of desktop edition (both ours and that of the local user). * Drop workaround rules for cruft no longer shipped upstream. * Ensure variable-expanded files are not accidentally copyright- checked (double-colon rules may run in parallel). * Drop local CDBS snippets copyright-check.mk and buildinfo.mk, included with cdbs since 0.4.67. Tighten build-dependency on cdbs to versions providing the snippets. * Improve package-relationships.mk to strip unversioned build- dependency following same versioned. * Use source format "3.0 'quilt'": + Add format hint to source + Update README.source + Stop including patchsys-quilt.mk + Stop build-depending on quilt or patchutils * Drop local CDBS snippet python-distutils.mk, cdbs now mature enough. Relax build-dependencies on python-dev and python-support. -- Jonas Smedegaard Mon, 01 Mar 2010 23:23:11 +0100 moin (1.9.1-1) unstable; urgency=high * New upstream release. + Fixes security issue in CGI handling, introduced in 1.9. Closes: bug#565854, thanks to Pascal Volk and Frank Lin PIAT. * Update local CDBS snippets: + Tighten and minor fix of package-relations.mk dependency cleanup. + Relax upstream-tarball.mk to depend unversioned on cdbs (the needed 0.4.39 is in oldstable). + Check most lines (top 99999, not just 60) in copyright-check.mk. Improve licensecheck filtering. Group files by owners (ignore years) and sort owners by ownership string (years and then owner). + Update upstream-tarball.mk to preserve bzip2 tarballs with source format 3.0 (quilt). * Minor updates to debian/copyright (no new owners or licenses). * Make debhelper build-dependency unversioned (thanks to CDBS). * Fix emodify explicitly ownership for all in zip repackaging script process_language_pages, to avoid spurious failure to remove write access from lithuanian binary. * Set urgency=high due to security fix. -- Jonas Smedegaard Fri, 22 Jan 2010 12:16:29 +0100 moin (1.9.0-1) unstable; urgency=low * New upstream release -- Jonas Smedegaard Mon, 07 Dec 2009 12:42:08 +0100 moin (1.9.0~rc2-1) unstable; urgency=low [ Frank Lin PIAT ] * New upstream prerelease [ Jonas Smedegaard ] * Another new upstream prerelease. * Unfuzz and merge patches to use separately packaged Python modules, and extend to cover Xappy. Recommend python-xappy. * Build-depend on unzip and zip. * Suggest (not depend on) python-flup. * Suggest python-openid, python-tz, python-ldap, python-mysqldb, smbfs, poppler-utils/xpdf-utils and docbook-dsssl. * Improve local hacked licensecheck to adjust more known contributors, and sync with distributed version 2.10.58. * Update debian/copyright: many new, changed and dropped owners and copyright years in new upstream release, and a new ModifiedBSD licensing variant. * Update version mangling for get-orig-source rule. * Fix explicitly use sh to invoke process_language_pages in debian/rules (script not guaranteed to be set executable). * Restructure patches to DEP3 format: Adjust meta-info; drop leading numbers and README, unfuzz. * Add NEWS item (targeted right before upstream 1.9.0 release) about need for migration. Bump firstcompat migration hint in postinst. * Tighten supported Python versions to at least 2.4. -- Jonas Smedegaard Tue, 01 Dec 2009 13:20:06 +0100 moin (1.8.5-1) unstable; urgency=low [ Frank Lin PIAT ] * New Upstream Version * Bump standards-version to 3.8.3. * Move package to section "web". * Suppress lintian warnings about test.wsgi script not being executable. * Re-enable patch 10001 (disable RenderAsDocbook if no xml) the patch was updated but not enabled. * Improve upgrading note in README.Debian, Closes: bug#494355. [ Jonas Smedegaard ] * Update package-relations.mk: Cleanup unversioned+versioned dependency mix. Improve whitespace cleanup. Rewrite and silence applying dependencies. * Drop binary section stanza (superfluous when equal to source stanza). * Update Vcs-Browser stanza to versioned branches (to make room for concurrent packaging of multiple major releases of MoinMoin). * Update a copyright year in debian/copyright. -- Jonas Smedegaard Sun, 13 Sep 2009 00:40:07 +0200 moin (1.8.4-1ubuntu2) lucid; urgency=low * Rebuild dropping the extension for python2.5. -- Matthias Klose Mon, 01 Feb 2010 22:05:17 +0000 moin (1.8.4-1ubuntu1) karmic; urgency=low * Merge from debian unstable, remaining changes: LP: #395833 - debian/rules: - Add --install-layout=deb option to install everything in /usr instead of /usr/local. - Remove python-xml from Recommends field, the package isn't anymore in sys.path. - Demote fckeditor from Recommends to Suggests; the code was previously embedded in moin, but it was also disabled, so there's no reason for us to pull this in by default currently. -- Bhavani Shankar Sun, 05 Jul 2009 23:31:26 +0530 moin (1.8.4-1) unstable; urgency=low [ Frank Lin PIAT ] * New Upstream Version. * Define VirtualHost port number in Apache2 examples, Closes: bug#533062. [ Jonas Smedegaard ] * Update URL to draft DEP5 format in copyright-check.mk output. * Sync local patched licensecheck script with devscript 2.10.51. -- Jonas Smedegaard Thu, 18 Jun 2009 00:14:44 +0200 moin (1.8.3-2ubuntu1) karmic; urgency=low * Merge from Debian unstable, remaining changes: - debian/rules: - Add --install-layout=deb option to install everything in /usr instead of /usr/local. - Remove python-xml from Recommends field, the package isn't anymore in sys.path. - Demote fckeditor from Recommends to Suggests; the code was previously embedded in moin, but it was also disabled, so there's no reason for us to pull this in by default currently. -- Steve Langasek Thu, 04 Jun 2009 17:09:49 +0000 moin (1.8.3-2) unstable; urgency=low [ Frank Lin PIAT ] * Fix an error in moin-mass-migrate, when setuid account belongs to a group through NSS (ldap, psql). Closes: #530635. Thanks to Joey Hess for the patch (initially targeted to ikiwiki-mass-rebuild). [ Jonas Smedegaard ] * Recommend default-mta (not exim4) as, well, default MTA. Closes: bug#531729. * Update CDBS snippets: + Fix package-relations cleanup of debhelper 7 + Implement fail-source-not-repackaged rule in upstream-tarball.mk * Rewrite copyright to use DEP5 r54 proposed machine-readable format. -- Jonas Smedegaard Wed, 03 Jun 2009 20:11:53 +0200 moin (1.8.3-1ubuntu1) karmic; urgency=low * Merge from debian unstable, remaining changes: - debian/rules: - Add --install-layout=deb option to install everything in /usr instead of /usr/local. - Remove python-xml from Recommends field, the package isn't anymore in sys.path. - Demote fckeditor from Recommends to Suggests; the code was previously embedded in moin, but it was also disabled, so there's no reason for us to pull this in by default currently. * Dropped patch 10002_encodeAddress_fix_MIME_spacing.patch, merged upstream. * Recommend default-mta | mail-transport-agent instead of exim4 | m-t-a, so that we can pull postfix by default on Ubuntu. -- Steve Langasek Wed, 03 Jun 2009 15:05:28 +0000 moin (1.8.3-1) unstable; urgency=high [ Frank Lin PIAT ] * Re-implement patch 10001_disable_RenderAsDocbook_if_no_xml. * Warn if fckeditor is installed but not configured. * Don't create fake fckeditor.js because we can't invalidate the client side caching once fckeditor is installed. * Update the copyright file. [ Jonas Smedegaard ] * New upstream release: + Fixes CVE-2009-1482. Closes: bug#526594. * Add README.source. Drop custom hints about CDBS. * Bump standards-version to 3.8.1. * Maintain all package relations in debian/rules, resolved using CDBS. * Set urgency=high due to security fix. -- Jonas Smedegaard Wed, 20 May 2009 17:44:30 +0200 moin (1.8.2-2ubuntu2) jaunty; urgency=low * Demote fckeditor from Recommends to Suggests; the code was previously embedded in moin, but it was also disabled, so there's no reason for us to pull this in by default currently. -- Steve Langasek Thu, 09 Apr 2009 00:20:18 +0000 moin (1.8.2-2ubuntu1) jaunty; urgency=low * Merge from debian unstable (LP: #350287), Ubuntu remaining changes: - Remove python-xml from Recommends field, the package isn't anymore in sys.path. * debian/patches/10002_encodeAddress_fix_MIME_spacing.patch: - Headers are malformed in notification email when, in mail_from, there is a phrase before the angle address that gets encoded. Thanks to Matthias Andree for the patch (LP: #348960). * debian/rules: - Add --install-layout=deb option to install everything in /usr instead of /usr/local, fix FTBFS. -- Alessio Treglia Sat, 28 Mar 2009 14:36:56 +0100 moin (1.8.2-2) unstable; urgency=low [ Jonas Smedegaard ] * Update debian/copyright (Bump years, merge equally licensed and authored files. * Update copyright hints. * Refer to …/README.Debian(.gz) (not just …/README.Debian), and limit note to max. 72 chars per line. Closes: bug#516123, thanks to Brent Clark. [ Frank Lin PIAT ] * Use systemwide copy of fckeditor Closes: bug#452599 -- Jonas Smedegaard Thu, 26 Feb 2009 04:47:03 +0100 moin (1.8.2-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Sun, 08 Feb 2009 20:48:30 +0100 moin (1.8.1-1.1ubuntu1) jaunty; urgency=low * Merge from debian unstable (LP: #322890), Ubuntu remaining changes: - Remove python-xml from Recommends field, the package isn't anymore in sys.path. -- Alessio Treglia Thu, 29 Jan 2009 20:36:20 +0100 moin (1.8.1-1.1) unstable; urgency=high * Non-maintainer upload by the security team * Fix cross-site scripting vulnerability via basename parameter in the AttachFile action (Closes: #513158) Fixes: CVE-2009-0260 * Fix cross-site scripting vulnerability in antispam.py via malformed content Fixes: CVE-2009-0312 -- Steffen Joeris Wed, 28 Jan 2009 02:34:32 +0100 moin (1.8.1-1ubuntu1) jaunty; urgency=low * Merge from debian unstable, remaining changes: LP: #313687 - Drop recommendation of python-xml, the packages isn't anymore in sys.path. -- Bhavani Shankar Sun, 04 Jan 2009 16:46:53 +0530 moin (1.8.1-1) unstable; urgency=low * New upstream release. * Add NEWS item (targeted for upstream 1.8.1 release) about need for migration. Bump firstcompat migration hint in postinst. * Auto-resolve html staticpath at build time. Closes: bug#507182, thanks to John Goerzen. * Update CDBS snippets: + Several minor improvements to upstream-tarball.mk. + Compact simple licenses (those without ' or later') in copyright-check.mk + Fix use underscore (not dash) in internal variable + Ignore only debian changelog and copyright-related files by default in copyright-check.mk + Correct and update copyright hints of the snippets themselves * Add licensing info to debian/rules. * Include local copy of licensecheck, patched to vastly improve discovery of the hinting style used in MoinMoin sources. Patch copyright-check.mk CDBS snippet to use local licensecheck. * Update copyright hints. * Rewrite debian/copyright to use new proposed format (v420). * Drop depending on dropped or irrelevant packages: + libapache-mod-python (dropped) + libapache-mod-fastcgi (dropped) + python-twisted (just a transitional package) Closes: bug#429713, thanks to Jérémie Corbier. * Add DEB_MAINTAINER_MODE in debian/rules (thanks to Romain Beauxis). * Depend on ${misc:Depends}. * Semi-auto-update debian/control to update dependencies: DEB_MAINTAINER_MODE=1 fakeroot debian/rules clean -- Jonas Smedegaard Tue, 30 Dec 2008 02:25:54 +0100 moin (1.8.0-1ubuntu1) jaunty; urgency=low * Merge from debian unstable, remaining changes: - Drop recommendation of python-xml, the packages isn't anymore in sys.path. -- Michael Vogt Thu, 13 Nov 2008 16:45:52 +0100 moin (1.8.0-1) unstable; urgency=low * New upstream release. * Fix prerelease numbering in uscan and debian/rules to use ~ (not dot). (Luckily the recent prereleases was done only to experimental, so the odd version numbers shouldn't count). * Drop installing documentation file docs/HACKS: Dropped upstream. -- Jonas Smedegaard Tue, 04 Nov 2008 23:40:01 +0100 moin (1.8.0.beta1-2) experimental; urgency=low * Document how to use various features in README.Debian -- Frank Lin PIAT Mon, 15 Sep 2008 22:02:36 +0200 moin (1.8.0.beta1-1) experimental; urgency=low * New upstream prerelease. * Add leading dot to Debian representation of upstream prereleases (to keep it lower than final release) in debian/rules and watch file. * Disable patch 10001 (disable RenderAsDocbook if no xml) as upstream config parsing code has changed: patch needs a complete rewrite! * Drop installing example code phpwiki_migration: Dropped upstream. -- Jonas Smedegaard Sun, 14 Sep 2008 18:26:57 +0200 moin (1.7.2-1) unstable; urgency=low * New upstream release. * Preserve upstream automade i18n files instead of removing in clean target (works more robust with source maintained under VCS). -- Jonas Smedegaard Tue, 09 Sep 2008 08:41:11 +0200 moin (1.7.1-2) never-really-releasedq; urgency=low * Update cdbs snippet python-distutils.mk to run dh_py* scripts before dh_installinit. See bug#494288. -- Jonas Smedegaard Fri, 08 Aug 2008 13:38:17 +0200 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 debian/README.Debian.in0000644000000000000000000001414612211217775011647 0ustar moin for Debian --------------- This Debian package has been tested mostly as WSGI and as CGI script with Apache 2.2 (It should work with any web server supporting either of these: WSGI, FCGI, FastCGI, SCGI, CGI) Example: A single wiki as CGI with Apache2 ------------------------------------------ 1) Create and populate /var/www/mywiki # mkdir /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 __STATICPATH__/applets/FCKeditor/ "/usr/share/fckeditor/" Alias __STATICPATH__/ "/usr/share/moin/htdocs/" ScriptAlias /MyWiki "/usr/share/moin/server/moin.cgi" 4) Configure MoinMoin: 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' superuser = [u"YourName", ] Edit /etc/moin/wikilist to include this line: www-data wiki.example.org/ 5) Activate wiki: # a2ensite mywiki # invoke-rc.d apache2 reload 6) Visit your new wiki at http://your.site/MyWiki/LanguageSetup then create you account (name according to the superuser you specified above). 7) Install the language pack you want to use (typically, you want to install the "all_pages" pack in English, plus the languages use in your wiki). 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 standalone, read the upstream file /usr/share/doc/python-moinmoin/INSTALL.html . Upgrading from earlier version of moin -------------------------------------- Upgrading typically involve the following steps: *. Make a backup! 1. Add your wiki to /etc/moin/wikilist 2. Upgrade python-moinmoin package. 3. Migrate/convert the content of the data folder (see note below) 4. Update the underlay, moin.{wsgi,cgi,fcgi,..} and interwiki.txt 5. Clean the cache. 6. Fix the webserver configuration files. *. Test! Those steps are documented in /usr/share/doc/python-moinmoin/NEWS.Debian(.gz) and in upstream's documentations: - /usr/share/doc/python-moinmoin/README.migration(.gz) - /usr/share/doc/python-moinmoin/changelog(.gz) (= upstream's CHANGE file) - /usr/share/doc/python-moinmoin/UPDATE.html (or http://moinmo.in/HelpOnUpdating ) Beware that the documents were written upstream so some info may not apply to this Debian package. Note: Debian packaging includes a helper script for "moin migrate", named moin-mass-migrate, to automatically apply the "migration scripts" on package updates (or whenever you invoke the script yourself). Add your MoinMoin wikis to /etc/moin/wikilist to enable the automation. 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! 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. Optional Features ----------------- Some optional features requires extra packages and configuration GUI editor In order to use GUI editor, you need to install the package fckeditor, and make sure you have two lines likes thoses ones in apache configuration file: Alias __STATICPATH__/applets/FCKeditor/ "/usr/share/fckeditor/" Alias __STATICPATH__/ "/usr/share/moin/htdocs/" In order to disable GUI editor, you might want to add those two lines in the wiki configuration (typically /etc/moin/mywiki.py) editor_force = True editor_default = 'text' DocBook rendering. In order to render wiki pages as DocBook (i.e. xml), you will need to install the package python-xml. (When missing, moinmoin will display the error "No module named ext.reader") XSLT Rendering In order to use XSLT Rendering (i.e. xml+xslt), you will need to install the packages python-4suite-xml, docbook-xsl and xalan. You will also need to enable "allow_xslt = 1" in you configuration file. (Thoses are required to render "#format docbook" pages) ReStructuredText rendering In order to use reStructuredText rendering (rst), you need to install the package python-docutils. Full text indexing / Xapian In order for full-text indexing to work, you will need to install the packages python-xapian. Moin will also use antiword and xls2csv (from the catdoc package) to index the contents of word and excel. xpdf-utils will provide PDF indexing. Chart for Moinmoin statistics Moinmoin used to be able to create some graphical chart, using python-gdchart v1 libraries. This feature isn't supported by this package, since the package python-gdchart isn't in Debian anymore. (see bug #374126). more on /usr/share/doc/python-moinmoin/REQUIREMENTS(.gz) -- Jonas Smedegaard Tue, 22 Mar 2005 03:05:47 +0100 debian/configtweaks.sed0000644000000000000000000000122212211217775012351 0ustar ### 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 debian/NEWS0000644000000000000000000001042412211217775007673 0ustar moin (1.9.0~) unstable; urgency=low * New upstream release, requiring content migration. + Semi-automated migration: Add your MoinMoin wiki(s) to /etc/moin/wikilist, and invoke moin-mass-migrate as root (future packaging routines might automate use of that wikilist) + Manual migration: See /usr/share/doc/python-moinmoin/README.migration(.gz). Depending on your local setup, you may also need to adjust your apache config to use new path to static content. -- Jonas Smedegaard Mon, 30 Nov 2009 00:25:00 +0100 moin (1.8.1) unstable; urgency=low * New upstream release, requiring content migration. + Semi-automated migration: Add your MoinMoin wiki(s) to /etc/moin/wikilist, and invoke moin-mass-migrate as root (future packaging routines might automate use of that wikilist) + Manual migration: See /usr/share/doc/python-moinmoin/README.migration(.gz). Depending on your local setup, you may also need to adjust your apache config to use new path to static content. -- Jonas Smedegaard Sun, 22 Jun 2008 11:15:47 +0200 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 debian/python-moinmoin.install0000644000000000000000000000010612211217775013724 0ustar debian/moin-update-wikilist usr/bin debian/moin-mass-migrate usr/sbin debian/examples/0000755000000000000000000000000012211217775011011 5ustar debian/examples/wikiserver-init.sh0000644000000000000000000000127512211217775014505 0ustar #!/bin/sh # Moinmoin Desktop Edition is a set of script to quickly *test* Moinmoin # (see http://moinmo.in/DesktopEdition ) # Installation instructions: mkdir --mode=750 mywiki cd mywiki cp /usr/share/doc/python-moinmoin/examples/desktop-edition/* ./ cp -r /usr/share/moin wiki # Then start it: python wikiserver.py # And finally, open a web browser: http://localhost:8080/ # SECURITY WARNING: Anyone who connects to 'Desktop Edition' can create a # superuser account then execute arbitrary command (using 'your' credentials). # However, the wiki can only be accessed localy (using 127.0.0.1)... So make # sure that no one else can logon your computer while Moinmoin Desktop # Edition is running. debian/examples/apache20.conf0000644000000000000000000000211112211217775013236 0ustar ServerName wiki.site.com DocumentRoot /var/www/wiki.site.com ### Serve static contents (images, javascript, css...) ### AliasMatch "^/moin_static[0-9]*/applets/FCKeditor/(.*)" "/usr/share/fckeditor/$1" Options None AllowOverride None # The path to static contents changes (named after moinmoin version). AliasMatch "^/moin_static[0-9]*/(.*)" "/usr/share/moin/htdocs/$1" Options -Indexes -FollowSymlinks AllowOverride None ### vhost ### Alias /robots.txt /usr/share/moin/htdocs/robots.txt Alias /favicon.ico /usr/share/moin/htdocs/favicon.ico WSGIDaemonProcess mywiki user=jonas group=jonas processes=4 display-name=moin-wsgi-mywiki WSGIProcessGroup mywiki WSGIScriptAlias / "/usr/share/moin/server/moin.wsgi" # Read: http://moinmo.in/HowTo/ApacheWithModWSGI ServerName www.wiki.site.com ServerAlias *.wiki.site.com RewriteEngine On RewriteRule / http://wiki.site.com/ [R] TransferLog /dev/null debian/TODO0000644000000000000000000000404412211217775007665 0ustar 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 * Request upstream to properly license CSS files and PNG logo icons. * Request the authors of PNG images to properly license PNG icons: + Esselbach Storyteller CMS at http://www.esselbach.com/ + Leo Doerr @ www.silverpoint.com + (track down origin of remaining icons) * Request the author of FCKEditor to properly license files below wiki/htdocs/applets/moinFCKplugins currently licensed as unversioned LGPL. * Suggest upstream to include referenced external license files: + MoinMoin/support/htmlmarkup.py + MoinMoin/support/xapwrap/index.py -- Jonas Smedegaard Sun Dec 28 19:16:05 UTC 2008 debian/install0000644000000000000000000000014512211217775010564 0ustar debian/moin-mass-migrate /usr/sbin/ debian/moin-update-wikilist /usr/bin/ debian/wikilist /etc/moin/ debian/compat0000644000000000000000000000000212211217775010371 0ustar 7 debian/lintian-overrides0000644000000000000000000000026112211217775012553 0ustar python-moinmoin: package-contains-upstream-install-documentation usr/share/doc/python-moinmoin/INSTALL.html python-moinmoin: possible-documentation-but-no-doc-base-registration debian/patches/0000755000000000000000000000000012211474147010620 5ustar debian/patches/recaptcha.patch0000644000000000000000000000777312211462247013607 0ustar Description: Add simple support for using recaptcha Author: Steve McIntyre Last-Update: 2011-08-22 Index: moin/MoinMoin/action/newaccount.py =================================================================== --- moin.orig/MoinMoin/action/newaccount.py 2013-09-03 22:37:22.513122586 +0000 +++ moin/MoinMoin/action/newaccount.py 2013-09-03 22:37:22.509122566 +0000 @@ -10,6 +10,7 @@ from MoinMoin.Page import Page from MoinMoin.widget import html from MoinMoin.security.textcha import TextCha +from MoinMoin.security.sec_recaptcha import ReCaptcha from MoinMoin.auth import MoinAuth @@ -26,6 +27,9 @@ if not TextCha(request).check_answer_from_form(): return _('TextCha: Wrong answer! Go back and try again...') + if not ReCaptcha(request).check_answer_from_form(): + return _('ReCaptcha: Wrong answer! Go back and try again...') + # Create user profile theuser = user.User(request, auth_method="new-user") @@ -142,6 +146,17 @@ td.append(textcha.render()) row.append(td) + recaptcha = ReCaptcha(request) + if recaptcha.is_enabled(): + row = html.TR() + tbl.append(row) + row.append(html.TD().append(html.STRONG().append( + html.Text(_('ReCaptcha (required)'))))) + td = html.TD() + if recaptcha: + td.append(recaptcha.render()) + row.append(td) + row = html.TR() tbl.append(row) row.append(html.TD()) Index: moin/MoinMoin/security/sec_recaptcha.py =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ moin/MoinMoin/security/sec_recaptcha.py 2013-09-03 22:37:22.509122566 +0000 @@ -0,0 +1,73 @@ +# -*- coding: iso-8859-1 -*- +""" + MoinMoin - recaptcha support + + Based heavily on the textcha support in textcha.py + + @copyright: 2011 by Steve McIntyre + @license: GNU GPL, see COPYING for details. +""" + +from MoinMoin import log +from recaptcha.client import captcha +import sys + +logging = log.getLogger(__name__) + +from MoinMoin import wikiutil + +class ReCaptcha(object): + """ Recaptcha support """ + + def __init__(self, request): + """ Initialize the Recaptcha setup. + + @param request: the request object + """ + self.request = request + self.user_info = request.user.valid and request.user.name or request.remote_addr + cfg = request.cfg + + try: + if cfg.recaptcha_public_key: + self.public_key = cfg.recaptcha_public_key + if cfg.recaptcha_private_key: + self.private_key = cfg.recaptcha_private_key + except: + self.public_key = None + self.private_key = None + + def is_enabled(self): + """ check if we're configured, i.e. we have a key + """ + if (self.public_key and self.private_key): + return True + return False + + def check_answer_from_form(self, form=None): + if self.is_enabled(): + if form is None: + form = self.request.form + challenge = form.get('recaptcha_challenge_field') + response = form.get('recaptcha_response_field') + captcha_result = captcha.submit(challenge, response, self.private_key, self.request.remote_addr) + if captcha_result.is_valid: + logging.info(u"ReCaptcha: OK.") + return True + else: + logging.info(u"ReCaptcha: failed, error code %s." % captcha_result.error_code) + return False + else: + return True + + def render(self, form=None): + """ Checks if ReCaptchas are enabled and returns HTML for one, + or an empty string if they are not enabled. + + @return: unicode result html + """ + if self.is_enabled(): + result = captcha.displayhtml(self.public_key, use_ssl = True) + else: + result = u'' + return result debian/patches/subscribercache.patch0000644000000000000000000001650012211462262014765 0ustar Description: Use a cache for storing and retrieving subscriber information to boost performance Origin: http://moinmo.in/MoinMoinBugs/GetSubscribersSlow Author: Vitaliy Shchupak, updated by Steve McIntyre to add locking Last-Update: 2012-04-29 Index: moin/MoinMoin/Page.py =================================================================== --- moin.orig/MoinMoin/Page.py 2013-09-03 22:37:36.005189491 +0000 +++ moin/MoinMoin/Page.py 2013-09-03 22:37:36.005189491 +0000 @@ -811,7 +811,7 @@ return link - def getSubscribers(self, request, **kw): + def getSubscribersUncached(self, request, **kw): # original function renamed """ Get all subscribers of this page. @param request: the request object @@ -834,6 +834,8 @@ else: from MoinMoin.security import Default as UserPerms + request.clock.start("getSubscribersUncached") + # get email addresses of the all wiki user which have a profile stored; # add the address only if the user has subscribed to the page and # the user is not the current editor @@ -872,6 +874,113 @@ else: subscriber_list[lang].append(subscriber.email) + request.clock.stop("getSubscribersUncached") + + return subscriber_list + + # cached version of getSubscribers + def getSubscribers(self, request, **kw): + """ Get all subscribers of this page. + + @param request: the request object + @keyword include_self: if 1, include current user (default: 0) + @keyword return_users: if 1, return user instances (default: 0) + @rtype: dict + @return: lists of subscribed email addresses in a dict by language key + """ + include_self = kw.get('include_self', self.include_self) + return_users = kw.get('return_users', 0) + + request.clock.start('getSubscribersCached') + # extract categories of this page + pageList = self.getCategories(request) + + # add current page name for list matching + pageList.append(self.page_name) + + arena = 'user' + key = 'page_sub' + + # get or create cache file + page_sub = {} + cache = caching.CacheEntry(request, arena, key, scope='wiki', use_pickle=True) + if cache.exists(): + page_sub = cache.content() + else: + #build a cache if it doesn't exist + cache = caching.CacheEntry(request, arena, key, scope='wiki', use_pickle=True, do_locking=False) + # lock to stop anybody else interfering with the data while we're working + cache.lock('w') + userlist = user.getUserList(request) + for uid in userlist: + subscriber = user.User(request, uid) + # we don't care about storing entries for users without any page subscriptions + if subscriber.subscribed_pages: + page_sub[subscriber.id] = { + 'name': subscriber.name, + 'email': subscriber.email, + 'subscribed_pages': subscriber.subscribed_pages + } + cache.update(page_sub) + cache.unlock() + cache.lock('r') # to go back to the same mode as if it had existed all along + + if self.cfg.SecurityPolicy: + UserPerms = self.cfg.SecurityPolicy + else: + from MoinMoin.security import Default as UserPerms + + # get email addresses of the all wiki user which have a profile stored; + # add the address only if the user has subscribed to the page and + # the user is not the current editor + userlist = page_sub + subscriber_list = {} + + pages = pageList[:] + if request.cfg.interwikiname: + pages += ["%s:%s" % (request.cfg.interwikiname, pagename) for pagename in pageList] + # Create text for regular expression search + text = '\n'.join(pages) + + for uid in userlist.keys(): + if uid == request.user.id and not include_self: + continue # no self notification + + isSubscribed = False + + # This is a bit wrong if return_users=1 (which implies that the caller will process + # user attributes and may, for example choose to send an SMS) + # So it _should_ be "not (subscriber.email and return_users)" but that breaks at the moment. + if not userlist[uid]['email']: + continue # skip empty email addresses + + # now check patters for actual match + for pattern in userlist[uid]['subscribed_pages']: + if pattern in pages: + isSubscribed = True + try: + pattern = re.compile(r'^%s$' % pattern, re.M) + except re.error: + continue + if pattern.search(text): + isSubscribed = True + + # only if subscribed, then read user info from file + if isSubscribed: + subscriber = user.User(request, uid) + + if not UserPerms(subscriber).read(self.page_name): + continue + + lang = subscriber.language or request.cfg.language_default + if not lang in subscriber_list: + subscriber_list[lang] = [] + if return_users: + subscriber_list[lang].append(subscriber) + else: + subscriber_list[lang].append(subscriber.email) + + request.clock.stop('getSubscribersCached') return subscriber_list def parse_processing_instructions(self): Index: moin/MoinMoin/user.py =================================================================== --- moin.orig/MoinMoin/user.py 2013-09-03 22:37:36.005189491 +0000 +++ moin/MoinMoin/user.py 2013-09-03 22:37:36.005189491 +0000 @@ -708,6 +708,9 @@ event = events.UserCreatedEvent(self._request, self) events.send_event(event) + # update page subscriber's cache after saving user preferences + self.updatePageSubCache() + # ----------------------------------------------------------------- # Time and date formatting @@ -895,6 +898,36 @@ self.save() return not self.isSubscribedTo([pagename]) + # update page subscribers cache + def updatePageSubCache(self): + """ When a user changes his preferences, we update the + page subscriber's cache + """ + + arena = 'user' + key = 'page_sub' + + page_sub = {} + cache = caching.CacheEntry(self._request, arena, key, scope='wiki', use_pickle=True, do_locking=False) + if not cache.exists(): + return # if no cache file, just don't do anything + + cache.lock('w') + page_sub = cache.content() + + # we don't care about storing entries for users without any page subscriptions + if self.subscribed_pages: + page_sub[self.id] = { + 'name': self.name, + 'email': self.email, + 'subscribed_pages': self.subscribed_pages + } + elif page_sub.get(self.id): + del page_sub[self.id] + + cache.update(page_sub) + cache.unlock() + # ----------------------------------------------------------------- # Quicklinks debian/patches/external_account_creation_check.patch0000644000000000000000000000365212211474074020225 0ustar Description: Add support for external account creation checker program Origin: Author: Steve McIntyre Last-Update: 2013-09-04 Index: moin/MoinMoin/action/newaccount.py =================================================================== --- moin.orig/MoinMoin/action/newaccount.py 2013-09-03 23:59:39.237602480 +0000 +++ moin/MoinMoin/action/newaccount.py 2013-09-04 00:00:02.757719108 +0000 @@ -132,6 +132,14 @@ # Send verification links if desired if request.cfg.require_email_verification: + if request.cfg.external_creation_check: + p = subprocess.Popen([request.cfg.external_creation_check, + theuser.name.encode('utf-8'), + theuser.email.encode('utf-8'), + theuser.account_creation_host.encode('utf-8')], shell=False, stdin=None, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + (create_error, ignored) = p.communicate(None) + if create_error: + return _("Account creation failed: %s." % create_error) mailok, msg = _send_verification_mail(request, theuser) if mailok: result = _("User account created! Use the link in your email (%s) to verify your account" Index: moin/MoinMoin/config/multiconfig.py =================================================================== --- moin.orig/MoinMoin/config/multiconfig.py 2013-09-03 23:59:47.369642816 +0000 +++ moin/MoinMoin/config/multiconfig.py 2013-09-03 23:59:59.717704037 +0000 @@ -1085,6 +1085,8 @@ "Disable the listed user preferences plugins."), ('require_email_verification', False , "Require verification of new user accounts."), + ('external_creation_check', None, + "Name of external program to call for checking new account creation."), )), # ========================================================================== 'various': ('Various', None, ( debian/patches/avoid_empty_dir_creation.patch0000644000000000000000000000130612211470766016706 0ustar changeset: 5980:6489ec33874d user: Thomas Waldmann date: Sat Apr 06 00:21:51 2013 +0200 summary: do not create empty pagedir (with empty edit-log) diff -r 810aee12a186 -r 6489ec33874d MoinMoin/theme/__init__.py --- a/MoinMoin/theme/__init__.py Sun Mar 24 14:58:56 2013 +0100 +++ b/MoinMoin/theme/__init__.py Sat Apr 06 00:21:51 2013 +0200 @@ -1784,7 +1784,7 @@ # In standard mode, emit theme.header else: - exists = pagename and page.exists(includeDeleted=True) + exists = pagename and page.exists(includeDeleted=False) # prepare dict for theme code: d = { 'theme': self.name, debian/patches/htdocs_moved_to_usr_share_moin.patch0000644000000000000000000000102712211464212020106 0ustar Description: folder with static web pages are moved to /usr/share/moin/htdocs only applicable on Debian systems storing web pages system-wide Author: Frank Lin PIAT Forwarded: not-needed Last-Update: 2009-11-15 --- a/MoinMoin/web/static/__init__.py +++ b/MoinMoin/web/static/__init__.py @@ -52,7 +52,7 @@ from werkzeug import SharedDataMiddleware -STATIC_FILES_PATH = join(abspath(dirname(__file__)), 'htdocs') +STATIC_FILES_PATH = '/usr/share/moin/htdocs' def make_static_serving_app(application, shared): debian/patches/use_systemwide_libs.patch0000644000000000000000000000365612211462113015723 0ustar Description: Use system-wide support libraries only applicable in concert with other means of ensuring availability of the libraries (done in packaging meta hints for Debian) Author: Jonas Smedegaard Forwarded: not-needed Last-Update: 2009-12-01 --- a/setup.py +++ b/setup.py @@ -307,26 +307,20 @@ 'MoinMoin.security', 'MoinMoin.stats', 'MoinMoin.support', - 'MoinMoin.support.flup', - 'MoinMoin.support.flup.client', - 'MoinMoin.support.flup.server', - 'MoinMoin.support.passlib', - 'MoinMoin.support.passlib._setup', - 'MoinMoin.support.passlib.ext', - 'MoinMoin.support.passlib.ext.django', - 'MoinMoin.support.passlib.handlers', - 'MoinMoin.support.passlib.utils', - 'MoinMoin.support.passlib.utils._blowfish', - 'MoinMoin.support.pygments', - 'MoinMoin.support.pygments.filters', - 'MoinMoin.support.pygments.formatters', - 'MoinMoin.support.pygments.lexers', - 'MoinMoin.support.pygments.styles', - 'MoinMoin.support.werkzeug', - 'MoinMoin.support.werkzeug.contrib', - 'MoinMoin.support.werkzeug.debug', - 'MoinMoin.support.xappy', - 'MoinMoin.support.parsedatetime', + ## In Debian, below libraries are packaged separately + #'MoinMoin.support.flup', + #'MoinMoin.support.flup.client', + #'MoinMoin.support.flup.server', + #'MoinMoin.support.pygments', + #'MoinMoin.support.pygments.filters', + #'MoinMoin.support.pygments.formatters', + #'MoinMoin.support.pygments.lexers', + #'MoinMoin.support.pygments.styles', + #'MoinMoin.support.werkzeug', + #'MoinMoin.support.werkzeug.contrib', + #'MoinMoin.support.werkzeug.debug', + #'MoinMoin.support.xappy', + #'MoinMoin.support.parsedatetime', 'MoinMoin.theme', 'MoinMoin.userform', 'MoinMoin.userprefs', debian/patches/mail-verification.patch0000644000000000000000000002526312211473221015243 0ustar Description: Add support for requiring new accounts to be verified by email Origin: http://moinmo.in/MoinMoinPatch/VerifyAccountCreationByEmail Author: Steve McIntyre Last-Update: 2013-09-04 Index: moin/MoinMoin/action/newaccount.py =================================================================== --- moin.orig/MoinMoin/action/newaccount.py 2013-09-03 23:52:51.279579526 +0000 +++ moin/MoinMoin/action/newaccount.py 2013-09-03 23:53:28.143762319 +0000 @@ -12,7 +12,29 @@ from MoinMoin.security.textcha import TextCha from MoinMoin.security.sec_recaptcha import ReCaptcha from MoinMoin.auth import MoinAuth +from MoinMoin.mail import sendmail +import subprocess +def _send_verification_mail(request, user): + _ = request.getText + querystr = {'action': 'verifyaccount', + 'i': user.id, + 'v': user.account_verification} + page = Page(request, "FrontPage") + pagelink = "%(link)s" % {'link': request.getQualifiedURL(page.url(request, querystr))} + subject = _('[%(sitename)s] account verification check for new user %(username)s') % { + 'sitename': request.page.cfg.sitename or request.url_root, + 'username': user.name, + } + + text = "Please verify your account by visiting this URL:\n\n %(link)s\n\n" % { + 'link': pagelink} + + mailok, msg = sendmail.sendmail(request, user.email, subject, text, request.cfg.mail_from) + if mailok: + return (1, _("Verification message sent to %(email)s" % {'email': user.email})) + else: + return (mailok, msg) def _create_user(request): _ = request.getText @@ -46,8 +68,18 @@ space between words. Group page name is not allowed.""", wiki=True) % wikiutil.escape(theuser.name) # Name required to be unique. Check if name belong to another user. - if user.getUserId(request, theuser.name): - return _("This user name already belongs to somebody else.") + userid = user.getUserId(request, theuser.name) + if userid: + if request.cfg.require_email_verification and theuser.account_verification: + resendlink = request.page.url(request, querystr={ + 'action': 'newaccount', + 'i': userid, + 'resend': '1'}) + return _('This user name already belongs to somebody else. If this is a new account' + ' and you need another verification link, try ' + 'sending another one. ' % resendlink) + else: + return _("This user name already belongs to somebody else.") # try to get the password and pw repeat password = form.get('password1', '') @@ -76,18 +108,41 @@ email = wikiutil.clean_input(form.get('email', '')) theuser.email = email.strip() if not theuser.email and 'email' not in request.cfg.user_form_remove: - return _("Please provide your email address. If you lose your" - " login information, you can get it by email.") + if request.cfg.require_email_verification: + return _("Please provide your email address. You will need it" + " to be able to confirm your registration.") + else: + return _("Please provide your email address. If you lose your" + " login information, you can get it by email.") # Email should be unique - see also MoinMoin/script/accounts/moin_usercheck.py if theuser.email and request.cfg.user_email_unique: - if user.get_by_email_address(request, theuser.email): - return _("This email already belongs to somebody else.") + emailuser = user.get_by_email_address(request, theuser.email) + if emailuser: + if request.cfg.require_email_verification and theuser.account_verification: + resendlink = request.page.url(request, querystr={ + 'action': 'newaccount', + 'i': emailuser.id, + 'resend': '1'}) + return _('This email already belongs to somebody else. If this is a new account' + ' and you need another verification link, try ' + 'sending another one. ' % resendlink) + else: + return _("This email already belongs to somebody else.") + + # Send verification links if desired + if request.cfg.require_email_verification: + mailok, msg = _send_verification_mail(request, theuser) + if mailok: + result = _("User account created! Use the link in your email (%s) to verify your account" + " then you will be able to use this account to login..." % theuser.email) + else: + request.theme.add_msg(_("Unable to send verification mail, %s. Account creation aborted." % msg), "error") + else: + result = _("User account created! You can use this account to login now...") # save data theuser.save() - - result = _("User account created! You can use this account to login now...") return result @@ -185,9 +240,20 @@ submitted = form.has_key('create') + uid = request.values.get('i', None) + resend = request.values.get('resend', None) + if submitted: # user pressed create button request.theme.add_msg(_create_user(request), "dialog") return page.send_page() + if resend and uid: + theuser = user.User(request, id=uid) + mailok, msg = _send_verification_mail(request, theuser) + if mailok: + request.theme.add_msg(_("Verification message re-sent to %s" % theuser.email), "dialog") + else: + request.theme.add_msg(_("Unable to re-send verification message, %s" % msg), "dialog") + return page.send_page() else: # show create form request.theme.send_title(_("Create Account"), pagename=pagename) Index: moin/MoinMoin/action/verifyaccount.py =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ moin/MoinMoin/action/verifyaccount.py 2013-09-03 23:52:51.275579511 +0000 @@ -0,0 +1,64 @@ +# -*- coding: iso-8859-1 -*- +""" + MoinMoin - verify account action + + @copyright: 2012 Steve McIntyre + @license: GNU GPL, see COPYING for details. +""" + +from MoinMoin import user, wikiutil +from MoinMoin.Page import Page +from MoinMoin.widget import html +from MoinMoin.auth import MoinAuth + +def execute(pagename, request): + found = False + for auth in request.cfg.auth: + if isinstance(auth, MoinAuth): + found = True + break + + if not found: + # we will not have linked, so forbid access + request.makeForbidden(403, 'No MoinAuth in auth list') + return + + page = Page(request, "FrontPage") + _ = request.getText + + if not request.cfg.require_email_verification: + result = _("Verification not configured!") + request.theme.add_msg(result, "error") + return page.send_page() + + uid = request.values.get('i', None) + verify = request.values.get('v', None) + + # Grab user profile + theuser = user.User(request, id=uid) + + # Compare the verification code + if not theuser.valid: + result = _("Unable to verify user account i=%s v=%s") % (uid, verify) + request.theme.add_msg(result, "error") + return page.send_page() + + if not theuser.account_verification: + result = _("User account has already been verified!") + request.theme.add_msg(result, "error") + return page.send_page() + + if theuser.account_verification != verify: + result = _("Unable to verify user account i=%s v=%s") % (uid, verify) + request.theme.add_msg(result, "error") + return page.send_page() + + # All looks sane. Mark verification as done, save data + theuser.account_verification = "" + theuser.save() + + loginlink = request.page.url(request, querystr={'action': 'login'}) + result = _('User account verified! You can use this account to login now...' % loginlink) + request.theme.add_msg(result, "dialog") + return page.send_page() + Index: moin/MoinMoin/auth/__init__.py =================================================================== --- moin.orig/MoinMoin/auth/__init__.py 2013-09-03 23:52:51.279579526 +0000 +++ moin/MoinMoin/auth/__init__.py 2013-09-03 23:52:51.275579511 +0000 @@ -242,8 +242,15 @@ if username and not password: return ContinueLogin(user_obj, _('Missing password. Please enter user name and password.')) - u = user.User(request, name=username, password=password, auth_method=self.name) + u = user.User(request, name=username, password=password, auth_method=self.name) if u.valid: + try: + verification = u.account_verification + except: + verification = False + if request.cfg.require_email_verification and verification: + logging.debug("%s: could not authenticate user %r (not verified yet)" % (self.name, username)) + return ContinueLogin(user_obj, _("User account not verified yet.")) logging.debug("%s: successfully authenticated user %r (valid)" % (self.name, u.name)) return ContinueLogin(u) else: Index: moin/MoinMoin/config/multiconfig.py =================================================================== --- moin.orig/MoinMoin/config/multiconfig.py 2013-09-03 23:52:51.279579526 +0000 +++ moin/MoinMoin/config/multiconfig.py 2013-09-03 23:53:49.335867416 +0000 @@ -1083,6 +1083,8 @@ ('userprefs_disabled', [], "Disable the listed user preferences plugins."), + ('require_email_verification', False , + "Require verification of new user accounts."), )), # ========================================================================== 'various': ('Various', None, ( Index: moin/MoinMoin/user.py =================================================================== --- moin.orig/MoinMoin/user.py 2013-09-03 23:52:51.279579526 +0000 +++ moin/MoinMoin/user.py 2013-09-03 23:52:51.279579526 +0000 @@ -22,6 +22,7 @@ import os, time, codecs, base64 import md5crypt +import uuid try: import crypt @@ -410,6 +411,12 @@ self.id = self.make_id() if password is not None: self.enc_password = encodePassword(self._cfg, password) + self.account_creation_date = str(time.time()) + self.account_creation_host = self._request.remote_addr + if self._cfg.require_email_verification: + self.account_verification = uuid.uuid4() + else: + self.account_verification = "" # "may" so we can say "if user.may.read(pagename):" if self._cfg.SecurityPolicy: debian/patches/disable_gui_editor_if_fckeditor_missing.patch0000644000000000000000000000146312211465055021721 0ustar Description: disable GUI editor if FCKeditor missing only applicable on Debian systems where a system-wide FCKeditor is used from a static location and might in some cases be missing Author: Frank Lin PIAT Forwarded: not-needed Last-Update: 2009-11-15 --- a/MoinMoin/config/multiconfig.py +++ b/MoinMoin/config/multiconfig.py @@ -1300,6 +1300,14 @@ _add_options_to_defconfig(options) _add_options_to_defconfig(options_no_group_name, False) +# Debian Specific: +# Try to auto-detect if the package fckeditor is installed +# (This can be overiden in the wiki configuration file). +if not os.path.exists('/usr/share/fckeditor/fckeditor.js'): + setattr(DefaultConfig, 'editor_force', True) + setattr(DefaultConfig, 'editor_default', 'text') + + # remove the gettext pseudo function del _ debian/patches/hardcode_configdir.patch0000644000000000000000000000153712211464054015440 0ustar Description: hardcode configdir /etc/moin for "moin" script only applicable on systems like Debian using a system-wide config area Author: Jonas Smedegaard Forwarded: not-needed Last-Update: 2009-11-15 --- a/setup.py +++ b/setup.py @@ -170,9 +170,8 @@ % 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) debian/patches/series0000644000000000000000000000041112211474625012032 0ustar hardcode_configdir.patch disable_gui_editor_if_fckeditor_missing.patch htdocs_moved_to_usr_share_moin.patch use_systemwide_libs.patch recaptcha.patch subscribercache.patch mail-verification.patch external_account_creation_check.patch avoid_empty_dir_creation.patch debian/wikilist0000644000000000000000000000103412211217775010753 0ustar # 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/ debian/control0000644000000000000000000000251112263062417010573 0ustar Source: moin Section: net Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Steve McIntyre <93sam@debian.org> Standards-Version: 3.9.3 Build-Depends: devscripts, python, python-dev (>= 2.3.5-7), debhelper, unzip, zip 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}, ${misc:Depends}, python-werkzeug, python-pygments, python-parsedatetime, python-recaptcha, python-passlib Provides: python2.6-moinmoin, python2.7-moinmoin Recommends: default-mta | mail-transport-agent, python-xapian, python-xappy, libapache2-mod-wsgi | httpd-cgi Suggests: python-flup, python-4suite-xml, python-gdchart, python-docutils, python-pyxmpp, python-openid, python-tz, python-ldap, python-mysqldb, miscfiles | wordlist, antiword, catdoc, cifs-utils, poppler-utils | xpdf-utils, docbook-dsssl, fckeditor 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. debian/rules0000755000000000000000000001067312211217775010262 0ustar #!/usr/bin/make -f #-*- makefile -*- pkg = python-moinmoin datadir = /usr/share/moin libdir = $(datadir)/server python_all = pyversions -r | tr ' ' '\n' | xargs -t -I {} env {} staticpath := $(shell sed -n -e "s|^\s*release_short\s*=\s*'\([^']*\)'.*|/moin_static\1|p" MoinMoin/version.py) $(if $(staticpath),,$(error Failed to resolve staticpath)) build-arch build-indep: build-stamp build-stamp: dh_testdir bash debian/tweak-moin-manpage debian/moin.1.template debian/moin.1 cd MoinMoin/i18n && make $(python_all) setup.py build sed s,__STATICPATH__,$(staticpath),g < debian/README.Debian.in > debian/README.Debian touch build-stamp clean: dh_testdir dh_testroot rm -rf build cd MoinMoin/i18n && make clean rm -f MoinMoin/i18n/meta.py rm -f debian/stamp-update-translations rm -f debian/moin.1 rm -f debian/copyright_newhints debian/README.Debian rm -f build-stamp install-stamp find . -name '*.py[co]' -delete find . -name __pycache__ -type d -empty -delete find . -prune -name '*.egg-info' -exec rm -rf '{}' ';' dh_clean install: install-stamp install-stamp: build-stamp dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/$(pkg) $(python_all) setup.py install --prefix=/usr --root=debian/$(pkg) --install-layout=deb sed -i '1 s,\(#!/usr/bin/python\).*,\1,' debian/*/usr/bin/* # Ensure proper hash-bang in Python scripts (Python Policy 0.9.0.0 §3.1) egrep -r -l -Z '^#! ?/usr/bin/(env )?python[[:print:]]*$$' debian/$(pkg)$(datadir)/server/* debian/$(pkg)/usr/share/doc/* debian/$(pkg)/usr/bin/moin \ | xargs -r -0 perl -pi -e 's,^#! ?/usr/bin/(env )?python[[:print:]]*$$,#!/usr/bin/python$(cdbs_python_nondefault_version),' # Strip notes in underlay about editing only on moinmaster. sh debian/process_language_pages debian/$(pkg) # Make sure scripts are executable egrep -r -l -Z '^#! ?/usr/bin/(env )?python[[:print:]]*$$' debian/$(pkg)$(libdir) \ | xargs -r -0 chmod a+x # Move underlay to /usr/share/moin for HTDOCS in debian/$(pkg)/usr/lib/python*/*-packages/MoinMoin/web/static/htdocs; do \ cp -a $${HTDOCS} debian/$(pkg)$(datadir); \ rm -rf $${HTDOCS}; \ ln -s $(datadir)/htdocs $${HTDOCS} ; \ done # Include Moinmoin Desktop editions files. install -m 755 wikiserver.py wikiconfig.py debian/$(pkg)/usr/share/doc/$(pkg)/examples/desktop-edition install -m 755 debian/examples/wikiserver-init.sh debian/$(pkg)/usr/share/doc/$(pkg)/examples/wikiserver-init.sh # Setup system wide farmconfig. for file in `find debian/$(pkg)$(datadir)/config/wikifarm -type f -print`; do \ sed -f debian/configtweaks.sed $$file > debian/$(pkg)/etc/moin/$${file##*/}; \ done for file in `find debian/$(pkg)$(datadir)/server -type f -printf '%f\n'`; do \ sed -i -f debian/servertweaks.sed debian/$(pkg)$(datadir)/server/$$file; \ done # Use systemwide word file as main dictionary ln -s /etc/moin/words debian/$(pkg)/usr/share/pyshared/MoinMoin/ ln -s /usr/share/dict/words debian/$(pkg)/etc/moin/words # Strip TwikiDrawPlugin as we need to compile from source rm -f debian/$(pkg)$(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/$(pkg)$(datadir)/htdocs/applets/TWikiDrawPlugin/README # Strip AnyWikiDrawForTWiki as needs to compile from source rm -rf debian/$(pkg)$(datadir)/htdocs/applets/anywikidraw/* echo "This applet has not yet been packaged for Debian." > debian/$(pkg)$(datadir)/htdocs/applets/anywikidraw/README # Strip FCKeditor, as it's provided by packages fckeditor rm -rf debian/$(pkg)$(datadir)/htdocs/applets/FCKeditor/* echo "This applet is provided by Debian's fckeditor package." > debian/$(pkg)$(datadir)/htdocs/applets/FCKeditor/README echo "More info at /usr/share/doc/$(pkg)/README.Debian(.gz)" >> debian/$(pkg)$(datadir)/htdocs/applets/FCKeditor/README touch install-stamp # Build architecture-dependent files here. binary-arch: build install # We have nothing to do by default. # Build architecture-independent files here. binary-indep: build install dh_testdir dh_testroot dh_install dh_installdocs dh_installexamples dh_installman dh_installchangelogs dh_python2 dh_compress -X examples/ dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch build: build-arch build-indep .PHONY: build-arch build-indep build clean binary-indep binary-arch binary debian/copyright_hints0000644000000000000000000072020112211217775012335 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: FIXME Upstream-Contact: FIXME Source: FIXME Disclaimer: Autogenerated by CDBS Files: MoinMoin/_tests/ldap_testdata.py MoinMoin/i18n/Makefile MoinMoin/i18n/README MoinMoin/i18n/bg.MoinMoin.po MoinMoin/i18n/da.MoinMoin.po MoinMoin/i18n/de.MoinMoin.po MoinMoin/i18n/el.MoinMoin.po MoinMoin/i18n/en.MoinMoin.po MoinMoin/i18n/fi.MoinMoin.po MoinMoin/i18n/hi.MoinMoin.po MoinMoin/i18n/hr.MoinMoin.po MoinMoin/i18n/id.MoinMoin.po MoinMoin/i18n/ja.MoinMoin.po MoinMoin/i18n/jabberbot/Makefile MoinMoin/i18n/ku.MoinMoin.po MoinMoin/i18n/lt.MoinMoin.po MoinMoin/i18n/lv.MoinMoin.po MoinMoin/i18n/mk.MoinMoin.po MoinMoin/i18n/msgfmt.py MoinMoin/i18n/nb.MoinMoin.po MoinMoin/i18n/nl.MoinMoin.po MoinMoin/i18n/pl.MoinMoin.po MoinMoin/i18n/ro.MoinMoin.po MoinMoin/i18n/ru.MoinMoin.po MoinMoin/i18n/sl.MoinMoin.po MoinMoin/i18n/sr.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/zh-tw.MoinMoin.po MoinMoin/macro/WikiConfig.py MoinMoin/macro/WikiConfigHelp.py MoinMoin/script/old/xmlrpc-tools/HelloWorld.py MoinMoin/support/BasicAuthTransport.py MoinMoin/support/difflib.py MoinMoin/support/flup/__init__.py MoinMoin/support/flup/client/__init__.py MoinMoin/support/flup/server/__init__.py MoinMoin/support/flup/server/cgi.py MoinMoin/support/md5crypt.py MoinMoin/support/pygments/lexers/_vimbuiltins.py MoinMoin/support/werkzeug/debug/shared/console.png MoinMoin/support/werkzeug/debug/shared/debugger.js MoinMoin/support/werkzeug/debug/shared/less.png MoinMoin/support/werkzeug/debug/shared/more.png MoinMoin/support/werkzeug/debug/shared/source.png MoinMoin/support/werkzeug/debug/shared/style.css MoinMoin/util/SubProcess.py MoinMoin/util/chartypes.py MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/behaviors/disablehandles.htc MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/behaviors/showtableborders.htc MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_address.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_blockquote.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_div.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_h1.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_h2.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_h3.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_h4.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_h5.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_h6.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_p.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/block_pre.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/fck_anchor.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/fck_flashlogo.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/fck_hiddenfield.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/fck_pagebreak.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/images/fck_plugin.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/common/images/locked.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/common/images/unlocked.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_about/logo_fckeditor.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_about/logo_fredck.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_scayt/scayt_dialog.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_template/images/template1.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_template/images/template2.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_template/images/template3.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dtd/fck_dtd_test.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/ButtonArrow.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/Folder.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/Folder32.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/FolderOpened.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/FolderOpened32.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/FolderUp.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/ai.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/cs.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/dll.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/doc.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/exe.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/fla.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/gif.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/htm.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/html.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/js.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/png.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/swf.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/swt.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/txt.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/xls.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/xml.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/zip.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/ai.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/avi.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/bmp.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/cs.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/default.icon.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/dll.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/doc.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/exe.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/fla.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/gif.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/htm.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/html.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/jpg.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/js.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/mdb.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/mp3.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/pdf.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/png.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/ppt.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/rdp.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/swf.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/swt.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/txt.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/vsd.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/xls.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/xml.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/zip.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/spacer.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/php/phpcompat.php MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/htaccess.txt MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/anchor.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/arrow_ltr.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/arrow_rtl.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/angel_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/angry_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/broken_heart.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/cake.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/confused_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/cry_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/devil_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/embaressed_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/envelope.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/heart.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/kiss.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/lightbulb.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/omg_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/regular_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/sad_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/shades_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/teeth_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/thumbs_down.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/wink_smile.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/spacer.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/dragresizetable/fckplugin.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/placeholder/placeholder.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/dialog.sides.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/dialog.sides.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/dialog.sides.rtl.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/sprites.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/sprites.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.arrowright.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.buttonarrow.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.collapse.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.end.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.expand.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.separator.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/images/toolbar.start.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/dialog.sides.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/dialog.sides.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/dialog.sides.rtl.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/sprites.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/sprites.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.arrowright.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.bg.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.collapse.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.end.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.expand.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.separator.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/images/toolbar.start.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/dialog.sides.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/dialog.sides.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/dialog.sides.rtl.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/sprites.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/sprites.png MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.arrowright.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.buttonarrow.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.buttonbg.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.collapse.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.end.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.expand.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.separator.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/images/toolbar.start.gif MoinMoin/web/static/htdocs/applets/TWikiDrawPlugin/README MoinMoin/web/static/htdocs/applets/anywikidraw/README MoinMoin/web/static/htdocs/applets/anywikidraw/lib/Splash.gif MoinMoin/web/static/htdocs/applets/moinFCKplugins/macro/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/macro/lang/en.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/macro/lang/it.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/macro/macro.gif MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinattachment/attachment.gif MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinattachment/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinbehaviour/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinimage/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinlink/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinunlink/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinurllib.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/placeholder/fck_placeholder.html MoinMoin/web/static/htdocs/applets/moinFCKplugins/placeholder/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/placeholder/lang/en.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/placeholder/lang/it.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/placeholder/placeholder.gif MoinMoin/web/static/htdocs/applets/moinFCKplugins/restrict_actions/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/selection/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/smiley/fckplugin.js MoinMoin/web/static/htdocs/applets/moinfckconfig.js MoinMoin/web/static/htdocs/applets/moinfckstyles.xml MoinMoin/web/static/htdocs/classic/css/msie.css MoinMoin/web/static/htdocs/classic/img/PythonPowered.png MoinMoin/web/static/htdocs/classic/img/alert.png MoinMoin/web/static/htdocs/classic/img/angry.png MoinMoin/web/static/htdocs/classic/img/attach.png MoinMoin/web/static/htdocs/classic/img/attention.png MoinMoin/web/static/htdocs/classic/img/biggrin.png MoinMoin/web/static/htdocs/classic/img/checkmark.png MoinMoin/web/static/htdocs/classic/img/devil.png MoinMoin/web/static/htdocs/classic/img/draft.png MoinMoin/web/static/htdocs/classic/img/frown.png MoinMoin/web/static/htdocs/classic/img/icon-error.png MoinMoin/web/static/htdocs/classic/img/icon-info.png MoinMoin/web/static/htdocs/classic/img/moin-attach.png MoinMoin/web/static/htdocs/classic/img/moin-bottom.png MoinMoin/web/static/htdocs/classic/img/moin-conflict.png MoinMoin/web/static/htdocs/classic/img/moin-deleted.png MoinMoin/web/static/htdocs/classic/img/moin-diff.png MoinMoin/web/static/htdocs/classic/img/moin-edit.png MoinMoin/web/static/htdocs/classic/img/moin-email.png MoinMoin/web/static/htdocs/classic/img/moin-ftp.png MoinMoin/web/static/htdocs/classic/img/moin-help.png MoinMoin/web/static/htdocs/classic/img/moin-home.png MoinMoin/web/static/htdocs/classic/img/moin-icon.png MoinMoin/web/static/htdocs/classic/img/moin-info.png MoinMoin/web/static/htdocs/classic/img/moin-inter.png MoinMoin/web/static/htdocs/classic/img/moin-news.png MoinMoin/web/static/htdocs/classic/img/moin-parent.png MoinMoin/web/static/htdocs/classic/img/moin-print.png MoinMoin/web/static/htdocs/classic/img/moin-raw.png MoinMoin/web/static/htdocs/classic/img/moin-renamed.png MoinMoin/web/static/htdocs/classic/img/moin-rss.png MoinMoin/web/static/htdocs/classic/img/moin-search.png MoinMoin/web/static/htdocs/classic/img/moin-show.png MoinMoin/web/static/htdocs/classic/img/moin-subscribe.png MoinMoin/web/static/htdocs/classic/img/moin-telnet.png MoinMoin/web/static/htdocs/classic/img/moin-top.png MoinMoin/web/static/htdocs/classic/img/moin-unsubscribe.png MoinMoin/web/static/htdocs/classic/img/moin-up.png MoinMoin/web/static/htdocs/classic/img/moin-updated.png MoinMoin/web/static/htdocs/classic/img/moin-www.png MoinMoin/web/static/htdocs/classic/img/moin-xml.png MoinMoin/web/static/htdocs/classic/img/moin-xml2.png MoinMoin/web/static/htdocs/classic/img/ohwell.png MoinMoin/web/static/htdocs/classic/img/prio1.png MoinMoin/web/static/htdocs/classic/img/prio2.png MoinMoin/web/static/htdocs/classic/img/prio3.png MoinMoin/web/static/htdocs/classic/img/smile4.png MoinMoin/web/static/htdocs/classic/img/star_off.png MoinMoin/web/static/htdocs/classic/img/star_on.png MoinMoin/web/static/htdocs/classic/img/thumbs-up.png MoinMoin/web/static/htdocs/classic/img/tired.png MoinMoin/web/static/htdocs/classic/img/tongue.png MoinMoin/web/static/htdocs/common/js/common.js MoinMoin/web/static/htdocs/common/js/countdown.js MoinMoin/web/static/htdocs/common/moindude.png MoinMoin/web/static/htdocs/common/moinmoin_alpha.png MoinMoin/web/static/htdocs/common/openid.png MoinMoin/web/static/htdocs/favicon.ico MoinMoin/web/static/htdocs/index.html MoinMoin/web/static/htdocs/modern/css/msie.css MoinMoin/web/static/htdocs/modern/img/PythonPowered.png MoinMoin/web/static/htdocs/modern/img/admon-caution.png MoinMoin/web/static/htdocs/modern/img/admon-important.png MoinMoin/web/static/htdocs/modern/img/admon-note.png MoinMoin/web/static/htdocs/modern/img/admon-warning.png MoinMoin/web/static/htdocs/modern/img/alert.png MoinMoin/web/static/htdocs/modern/img/angry.png MoinMoin/web/static/htdocs/modern/img/attach.png MoinMoin/web/static/htdocs/modern/img/attention.png MoinMoin/web/static/htdocs/modern/img/biggrin.png MoinMoin/web/static/htdocs/modern/img/checkmark.png MoinMoin/web/static/htdocs/modern/img/devil.png MoinMoin/web/static/htdocs/modern/img/frown.png MoinMoin/web/static/htdocs/modern/img/icon-error.png MoinMoin/web/static/htdocs/modern/img/icon-info.png MoinMoin/web/static/htdocs/modern/img/moin-attach.png MoinMoin/web/static/htdocs/modern/img/moin-bottom.png MoinMoin/web/static/htdocs/modern/img/moin-conflict.png MoinMoin/web/static/htdocs/modern/img/moin-deleted.png MoinMoin/web/static/htdocs/modern/img/moin-diff.png MoinMoin/web/static/htdocs/modern/img/moin-edit.png MoinMoin/web/static/htdocs/modern/img/moin-email.png MoinMoin/web/static/htdocs/modern/img/moin-ftp.png MoinMoin/web/static/htdocs/modern/img/moin-help.png MoinMoin/web/static/htdocs/modern/img/moin-home.png MoinMoin/web/static/htdocs/modern/img/moin-icon.png MoinMoin/web/static/htdocs/modern/img/moin-info.png MoinMoin/web/static/htdocs/modern/img/moin-inter.png MoinMoin/web/static/htdocs/modern/img/moin-news.png MoinMoin/web/static/htdocs/modern/img/moin-parent.png MoinMoin/web/static/htdocs/modern/img/moin-print.png MoinMoin/web/static/htdocs/modern/img/moin-raw.png MoinMoin/web/static/htdocs/modern/img/moin-renamed.png MoinMoin/web/static/htdocs/modern/img/moin-rss.png MoinMoin/web/static/htdocs/modern/img/moin-search.png MoinMoin/web/static/htdocs/modern/img/moin-show.png MoinMoin/web/static/htdocs/modern/img/moin-subscribe.png MoinMoin/web/static/htdocs/modern/img/moin-telnet.png MoinMoin/web/static/htdocs/modern/img/moin-top.png MoinMoin/web/static/htdocs/modern/img/moin-unsubscribe.png MoinMoin/web/static/htdocs/modern/img/moin-up.png MoinMoin/web/static/htdocs/modern/img/moin-updated.png MoinMoin/web/static/htdocs/modern/img/moin-www.png MoinMoin/web/static/htdocs/modern/img/moin-xml.png MoinMoin/web/static/htdocs/modern/img/moin-xml2.png MoinMoin/web/static/htdocs/modern/img/ohwell.png MoinMoin/web/static/htdocs/modern/img/prio1.png MoinMoin/web/static/htdocs/modern/img/prio2.png MoinMoin/web/static/htdocs/modern/img/prio3.png MoinMoin/web/static/htdocs/modern/img/smile4.png MoinMoin/web/static/htdocs/modern/img/star_off.png MoinMoin/web/static/htdocs/modern/img/star_on.png MoinMoin/web/static/htdocs/modern/img/thumbs-up.png MoinMoin/web/static/htdocs/modern/img/tired.png MoinMoin/web/static/htdocs/modern/img/tongue.png MoinMoin/web/static/htdocs/modernized/css/msie.css MoinMoin/web/static/htdocs/modernized/img/PythonPowered.png MoinMoin/web/static/htdocs/modernized/img/admon-caution.png MoinMoin/web/static/htdocs/modernized/img/admon-important.png MoinMoin/web/static/htdocs/modernized/img/admon-note.png MoinMoin/web/static/htdocs/modernized/img/admon-tip.png MoinMoin/web/static/htdocs/modernized/img/alert.png MoinMoin/web/static/htdocs/modernized/img/angry.png MoinMoin/web/static/htdocs/modernized/img/attach.png MoinMoin/web/static/htdocs/modernized/img/attention.png MoinMoin/web/static/htdocs/modernized/img/biggrin.png MoinMoin/web/static/htdocs/modernized/img/checkmark.png MoinMoin/web/static/htdocs/modernized/img/devil.png MoinMoin/web/static/htdocs/modernized/img/frown.png MoinMoin/web/static/htdocs/modernized/img/icon-error.png MoinMoin/web/static/htdocs/modernized/img/icon-info.png MoinMoin/web/static/htdocs/modernized/img/idea.png MoinMoin/web/static/htdocs/modernized/img/moin-action.png MoinMoin/web/static/htdocs/modernized/img/moin-attach.png MoinMoin/web/static/htdocs/modernized/img/moin-bottom.png MoinMoin/web/static/htdocs/modernized/img/moin-conflict.png MoinMoin/web/static/htdocs/modernized/img/moin-deleted.png MoinMoin/web/static/htdocs/modernized/img/moin-diff.png MoinMoin/web/static/htdocs/modernized/img/moin-download.png MoinMoin/web/static/htdocs/modernized/img/moin-edit.png MoinMoin/web/static/htdocs/modernized/img/moin-email.png MoinMoin/web/static/htdocs/modernized/img/moin-ftp.png MoinMoin/web/static/htdocs/modernized/img/moin-help.png MoinMoin/web/static/htdocs/modernized/img/moin-home.png MoinMoin/web/static/htdocs/modernized/img/moin-icon.png MoinMoin/web/static/htdocs/modernized/img/moin-info.png MoinMoin/web/static/htdocs/modernized/img/moin-inter.png MoinMoin/web/static/htdocs/modernized/img/moin-jabber.png MoinMoin/web/static/htdocs/modernized/img/moin-new.png MoinMoin/web/static/htdocs/modernized/img/moin-parent.png MoinMoin/web/static/htdocs/modernized/img/moin-print.png MoinMoin/web/static/htdocs/modernized/img/moin-raw.png MoinMoin/web/static/htdocs/modernized/img/moin-readonly.png MoinMoin/web/static/htdocs/modernized/img/moin-renamed.png MoinMoin/web/static/htdocs/modernized/img/moin-rss.png MoinMoin/web/static/htdocs/modernized/img/moin-search.png MoinMoin/web/static/htdocs/modernized/img/moin-show.png MoinMoin/web/static/htdocs/modernized/img/moin-subscribe.png MoinMoin/web/static/htdocs/modernized/img/moin-telnet.png MoinMoin/web/static/htdocs/modernized/img/moin-top.png MoinMoin/web/static/htdocs/modernized/img/moin-up.png MoinMoin/web/static/htdocs/modernized/img/moin-updated.png MoinMoin/web/static/htdocs/modernized/img/ohwell.png MoinMoin/web/static/htdocs/modernized/img/prio1.png MoinMoin/web/static/htdocs/modernized/img/prio2.png MoinMoin/web/static/htdocs/modernized/img/prio3.png MoinMoin/web/static/htdocs/modernized/img/redface.png MoinMoin/web/static/htdocs/modernized/img/sad.png MoinMoin/web/static/htdocs/modernized/img/smile.png MoinMoin/web/static/htdocs/modernized/img/smile2.png MoinMoin/web/static/htdocs/modernized/img/smile3.png MoinMoin/web/static/htdocs/modernized/img/smile4.png MoinMoin/web/static/htdocs/modernized/img/star_off.png MoinMoin/web/static/htdocs/modernized/img/star_on.png MoinMoin/web/static/htdocs/modernized/img/thumbs-up.png MoinMoin/web/static/htdocs/modernized/img/tired.png MoinMoin/web/static/htdocs/modernized/img/tongue.png MoinMoin/web/static/htdocs/rightsidebar/css/msie.css MoinMoin/web/static/htdocs/rightsidebar/img/PythonPowered.png MoinMoin/web/static/htdocs/rightsidebar/img/alert.png MoinMoin/web/static/htdocs/rightsidebar/img/angry.png MoinMoin/web/static/htdocs/rightsidebar/img/attach.png MoinMoin/web/static/htdocs/rightsidebar/img/attention.png MoinMoin/web/static/htdocs/rightsidebar/img/biggrin.png MoinMoin/web/static/htdocs/rightsidebar/img/checkmark.png MoinMoin/web/static/htdocs/rightsidebar/img/devil.png MoinMoin/web/static/htdocs/rightsidebar/img/draft.png MoinMoin/web/static/htdocs/rightsidebar/img/frown.png MoinMoin/web/static/htdocs/rightsidebar/img/icon-error.png MoinMoin/web/static/htdocs/rightsidebar/img/icon-info.png MoinMoin/web/static/htdocs/rightsidebar/img/logout.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-attach.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-bottom.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-conflict.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-deleted.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-diff.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-edit.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-email.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-ftp.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-help.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-home.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-icon.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-info.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-inter.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-news.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-parent.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-print.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-raw.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-renamed.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-rss.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-search.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-show.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-subscribe.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-telnet.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-top.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-unsubscribe.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-up.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-updated.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-www.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-xml.png MoinMoin/web/static/htdocs/rightsidebar/img/moin-xml2.png MoinMoin/web/static/htdocs/rightsidebar/img/ohwell.png MoinMoin/web/static/htdocs/rightsidebar/img/prio1.png MoinMoin/web/static/htdocs/rightsidebar/img/prio2.png MoinMoin/web/static/htdocs/rightsidebar/img/prio3.png MoinMoin/web/static/htdocs/rightsidebar/img/smile4.png MoinMoin/web/static/htdocs/rightsidebar/img/star_off.png MoinMoin/web/static/htdocs/rightsidebar/img/star_on.png MoinMoin/web/static/htdocs/rightsidebar/img/thumbs-up.png MoinMoin/web/static/htdocs/rightsidebar/img/tired.png MoinMoin/web/static/htdocs/rightsidebar/img/tongue.png MoinMoin/web/static/htdocs/robots.txt PKG-INFO contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/AnyWikiDraw.php contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/Splash.gif contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/edit.gif contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/images/images contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/images/samples/Backgrounds/backgrnd.gif contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/images/samples/Backgrounds/bg1.gif contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/images/samples/Java_Related/DUKE.gif contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/images/samples/Java_Related/Juggler0.gif contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/images/samples/Java_Related/beans.gif contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/images/samples/Java_Related/joe.surf.yellow.small.gif contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/news.gif contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/symbols/flags.jar contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/symbols/sample.jar contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/symbols/symbols contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/edit.gif contrib/AnyWikiDraw/demo/anywikidraw_for_twiki_demo.html contrib/AnyWikiDraw/demo/data/lion.svg contrib/AnyWikiDraw/demo/lib/Splash.gif contrib/AnyWikiDraw/guide/contents/changes.html contrib/AnyWikiDraw/guide/contents/license.html contrib/AnyWikiDraw/guide/contents/mediawiki.html contrib/AnyWikiDraw/guide/contents/moinmoin.html contrib/AnyWikiDraw/guide/contents/pmwiki.html contrib/AnyWikiDraw/guide/contents/readme.html contrib/AnyWikiDraw/guide/contents/style.css contrib/AnyWikiDraw/guide/contents/twiki.html contrib/AnyWikiDraw/guide/index.html contrib/AnyWikiDraw/guide/nav.html 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/auth_externalcookie/wikiconfig.py contrib/dict/de.utf-8 contrib/dict/de_de_10000.utf-8 contrib/dict/en_us.ascii contrib/images/logos/README contrib/mailimport/.procmailrc contrib/mailimport/wikimailimport debian/NEWS debian/README.Debian.in debian/README.source debian/TODO debian/compat debian/configtweaks.sed debian/control debian/control.in debian/examples/apache20.conf debian/examples/wikiserver-init.sh debian/gbp.conf debian/install debian/lintian-overrides debian/moin-mass-migrate debian/moin-mass-migrate.8 debian/moin-update-wikilist debian/moin-update-wikilist.1 debian/moinmaster.py debian/patches/disable_gui_editor_if_fckeditor_missing.patch debian/patches/hardcode_configdir.patch debian/patches/htdocs_moved_to_usr_share_moin.patch debian/patches/series debian/patches/use_systemwide_libs.patch debian/postinst debian/servertweaks.sed debian/source/format debian/watch debian/wikilist docs/CHANGES docs/INSTALL.html docs/README.migration docs/README_FIRST docs/REQUIREMENTS docs/UPDATE.html docs/licenses/werkzeug/AUTHORS jabberbot/_tests/test_capat.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/auth_wikiconfig_snippet wiki/config/more_samples/dicts_wikiconfig_snippet wiki/config/more_samples/groups_wikiconfig_snippet wiki/config/more_samples/jabber_wikiconfig_snippet wiki/config/more_samples/ldap_2servers_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/openid_sreg_wikiconfig_snippet wiki/config/more_samples/openid_teams_wikiconfig_snippet wiki/config/more_samples/secrets_wikiconfig_snippet wiki/config/more_samples/security_wikiconfig_snippet wiki/config/more_samples/smb_wikiconfig_snippet wiki/config/more_samples/user_wikiconfig_snippet wiki/config/more_samples/xapian_wikiconfig_snippet wiki/config/wikiconfig.py wiki/config/wikifarm/farmconfig.py wiki/config/wikifarm/mywiki.py wiki/data/cache/README 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/server/wikiserverconfig.py wiki/underlay/pages/BadContent/current wiki/underlay/pages/BadContent/revisions/00000001 wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Bulgarian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Croatian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Croatian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Croatian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Croatian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Croatian--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Croatian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Croatian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Czech--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Czech--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Danish--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Dutch--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Dutch--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Dutch--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Dutch--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Dutch--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Dutch--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Dutch--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Dutch--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Dutch--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--admin_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--course_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--not_translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/French--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/French--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/French--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/French--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/French--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Galician--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Galician--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Galician--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Galician--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Galician--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--admin_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--course_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hindi--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hindi--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hindi--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hindi--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hindi--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hungarian--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hungarian--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hungarian--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hungarian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Indonesian--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Indonesian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Indonesian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Indonesian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Indonesian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Indonesian--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Indonesian--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Indonesian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Indonesian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Japanese--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Japanese--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Japanese--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Japanese--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Japanese--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Japanese--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Korean--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Korean--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Korean--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Korean--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Korean--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Korean--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Korean--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--admin_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Latvian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Lithuanian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Lithuanian--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Lithuanian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Lithuanian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Lithuanian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Lithuanian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Mongolian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Mongolian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Mongolian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Mongolian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Mongolian--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Mongolian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Mongolian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Norwegian_Bokmal--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Norwegian_Bokmal--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Norwegian_Bokmal--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Norwegian_Bokmal--course_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Norwegian_Bokmal--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Norwegian_Bokmal--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Norwegian_Bokmal--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Norwegian_Bokmal--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Norwegian_Bokmal--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Norwegian_Bokmal--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Polish--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Portuguese--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Romanian--admin_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Romanian--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Romanian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Romanian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Romanian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Romanian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Romanian--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Romanian--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Romanian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Romanian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--admin_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--course_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Serbian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Serbian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Serbian--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Serbian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Serbian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Serbian--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Serbian--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Serbian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Serbian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovak--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovak--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovak--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovak--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovak--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovak--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovenian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovenian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovenian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovenian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovenian--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovenian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovenian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Spanish--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Spanish--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--admin_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--essential_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Swedish--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Turkish--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Turkish--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Turkish--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Turkish--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Turkish--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Turkish--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Turkish--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Turkish--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Turkish--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--essential_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--optional_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/current wiki/underlay/pages/LanguageSetup/revisions/00000001 wikiconfig.py wikiserverconfig.py wikiserverlogging.conf Copyright: *No copyright* License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/_documentation.html MoinMoin/web/static/htdocs/applets/FCKeditor/_upgrade.html MoinMoin/web/static/htdocs/applets/FCKeditor/_whatsnew.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckcontextmenu.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckdataprocessor.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckdocumentfragment_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckdocumentfragment_ie.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckdomrange.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckdomrange_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckdomrange_ie.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckdomrangeiterator.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckeditingarea.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckelementpath.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckenterkey.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckevents.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckhtmliterator.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckicon.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckiecleanup.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckimagepreloader.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckkeystrokehandler.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckmenublock.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckmenublockpanel.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckmenuitem.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckpanel.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckplugin.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckspecialcombo.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckstyle.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbar.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarbreak_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarbreak_ie.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarbutton.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarbuttonui.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarfontformatcombo.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarfontscombo.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarfontsizecombo.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarpanelbutton.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarspecialcombo.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fcktoolbarstylecombo.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckw3crange.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckxml.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckxml_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/classes/fckxml_ie.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fck_othercommands.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckblockquotecommand.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckcorestylecommand.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckfitwindow.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckindentcommands.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckjustifycommands.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fcklistcommands.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fcknamedcommand.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckpastewordcommand.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckremoveformatcommand.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckshowblocks.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fckstylecommand.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fcktablecommand.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/commandclasses/fcktextcolorcommand.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/fckconstants.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/fckeditorapi.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/fckjscoreextensions.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/fckscriptloader.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fck.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fck_contextmenu.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fck_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fck_ie.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckbrowserinfo.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckcodeformatter.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckcommands.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckconfig.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckdebug.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckdebug_empty.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckdialog.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckdocumentprocessor.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckdomtools.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcklanguagemanager.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcklisthandler.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcklistslib.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckplugins.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckregexlib.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckscayt.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckselection.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckselection_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckselection_ie.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckstyles.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcktablehandler.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcktablehandler_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcktablehandler_ie.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcktoolbaritems.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcktoolbarset.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcktools.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcktools_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fcktools_ie.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckundo.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckurlparams.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckxhtml.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckxhtml_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckxhtml_ie.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/_source/internals/fckxhtmlentities.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/fck_editorarea.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/fck_internal.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/css/fck_showtableborders_gecko.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/common/fck_dialog_common.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/common/fck_dialog_common.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_anchor.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_button.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_checkbox.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_colorselector.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_div.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_docprops.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_docprops/fck_document_preview.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_flash.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_flash/fck_flash.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_flash/fck_flash_preview.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_form.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_hiddenfield.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_image.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_image/fck_image.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_image/fck_image_preview.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_link.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_link/fck_link.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_listprop.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_paste.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_radiobutton.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_replace.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_scayt.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_select.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_select/fck_select.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_smiley.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_source.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_specialchar.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_table.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_tablecell.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_template.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_textarea.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_textfield.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dtd/fck_xhtml10strict.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dtd/fck_xhtml10transitional.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/fckdebug.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/fckdialog.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/fckeditor.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/fckeditor.original.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/browser.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/browser.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmactualfolder.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmcreatefolder.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmfolders.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmresourceslist.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmresourcetype.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmupload.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/js/common.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/js/fckxml.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/asp/basexml.asp MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/asp/class_upload.asp MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/asp/commands.asp MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/asp/config.asp MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/asp/connector.asp MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/asp/io.asp MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/asp/upload.asp MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/asp/util.asp MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/aspx/config.ascx MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/aspx/connector.aspx MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/aspx/upload.aspx MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/cf_commands.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/cf_connector.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/cf_io.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/cf_upload.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/cf_util.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/config.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/connector.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/upload.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/lasso/config.lasso MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/lasso/connector.lasso MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/lasso/upload.lasso MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/perl/basexml.pl MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/perl/commands.pl MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/perl/config.pl MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/perl/connector.cgi MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/perl/io.pl MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/perl/upload.cgi MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/perl/upload_fck.pl MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/perl/util.pl MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/php/basexml.php MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/php/commands.php MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/php/config.php MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/php/connector.php MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/php/io.php MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/php/upload.php MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/php/util.php MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/config.py MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/connector.py MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/fckcommands.py MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/fckconnector.py MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/fckoutput.py MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/fckutil.py MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/upload.py MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/wsgi.py MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/zope.py MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/test.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/uploadtest.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/js/fckadobeair.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/_translationstatus.txt MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/af.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/bg.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/bn.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/bs.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/ca.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/da.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/de.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/el.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/en-au.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/en-ca.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/en-uk.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/en.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/eo.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/et.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/eu.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/fi.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/fo.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/gl.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/gu.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/hi.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/hr.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/is.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/it.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/ja.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/km.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/ko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/lt.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/lv.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/mn.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/ms.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/nb.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/nl.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/no.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/pl.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/pt.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/ro.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/ru.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/sl.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/sr-latn.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/sr.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/sv.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/th.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/tr.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/uk.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/zh-cn.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/zh.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/autogrow/fckplugin.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/bbcode/_sample/sample.config.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/bbcode/_sample/sample.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/bbcode/fckplugin.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/placeholder/fck_placeholder.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/placeholder/fckplugin.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/de.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/en.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/es.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/fr.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/it.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/placeholder/lang/pl.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/simplecommands/fckplugin.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/plugins/tablecommands/fckplugin.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/_fckviewstrips.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/fck_dialog.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/fck_dialog_ie6.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/fck_editor.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/fck_dialog.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/fck_dialog_ie6.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/fck_editor.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/fck_dialog.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/fck_dialog_ie6.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/fck_editor.css MoinMoin/web/static/htdocs/applets/FCKeditor/editor/wsc/ciframe.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/wsc/tmpFrameset.html MoinMoin/web/static/htdocs/applets/FCKeditor/editor/wsc/w.html MoinMoin/web/static/htdocs/applets/FCKeditor/fckconfig.js MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor.afp MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor.asp MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor.cfc MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor.cfm MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor.js MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor.lasso MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor.php MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor.pl MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor.py MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor_php4.php MoinMoin/web/static/htdocs/applets/FCKeditor/fckeditor_php5.php MoinMoin/web/static/htdocs/applets/FCKeditor/fckpackager.xml MoinMoin/web/static/htdocs/applets/FCKeditor/fckstyles.xml MoinMoin/web/static/htdocs/applets/FCKeditor/fcktemplates.xml MoinMoin/web/static/htdocs/applets/FCKeditor/fckutils.cfm MoinMoin/web/static/htdocs/applets/moinFCKplugins/smiley/fck_smiley.html Copyright: 2003-2008, Frederico Caldeira Knabben 2003-2010, Frederico Caldeira Knabben License: MPL-1.1 FIXME Files: MoinMoin/_tests/ldap_testbase.py MoinMoin/_tests/maketestwiki.py MoinMoin/_tests/test_Page.py MoinMoin/_tests/test_caching.py MoinMoin/action/_tests/test_cache.py MoinMoin/action/backup.py MoinMoin/action/cache.py MoinMoin/action/pollsistersites.py MoinMoin/action/rss_rc.py MoinMoin/action/sisterpages.py MoinMoin/action/sitemap.py MoinMoin/action/userprofile.py MoinMoin/auth/_tests/test_auth.py MoinMoin/auth/http.py MoinMoin/auth/log.py MoinMoin/config/__init__.py MoinMoin/config/_tests/test_multiconfig.py MoinMoin/converter/__init__.py MoinMoin/filter/__init__.py MoinMoin/filter/_tests/test_filter.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_ms_powerpoint.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/formatter/text_html_percent.py MoinMoin/i18n/strings.py MoinMoin/i18n/tools/__init__.py MoinMoin/i18n/tools/recode.py MoinMoin/logfile/__init__.py MoinMoin/logfile/_tests/test_logfile.py MoinMoin/logfile/editlog.py MoinMoin/logfile/eventlog.py MoinMoin/macro/InterWiki.py MoinMoin/macro/MonthCalendar.py MoinMoin/macro/PageCount.py MoinMoin/macro/PageHits.py MoinMoin/macro/Verbatim.py MoinMoin/mail/__init__.py MoinMoin/parser/text_cplusplus.py MoinMoin/parser/text_diff.py MoinMoin/parser/text_irssi.py MoinMoin/parser/text_java.py MoinMoin/parser/text_pascal.py MoinMoin/parser/text_python.py MoinMoin/script/account/__init__.py MoinMoin/script/account/check.py MoinMoin/script/account/create.py MoinMoin/script/account/disable.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/maint/cleanpage.py MoinMoin/script/maint/globaledit.py MoinMoin/script/maint/mailtranslators.py MoinMoin/script/maint/reducewiki.py MoinMoin/script/migration/1050300.py MoinMoin/script/migration/1050301.py MoinMoin/script/migration/1050400.py MoinMoin/script/migration/1050500.py MoinMoin/script/migration/1050600.py MoinMoin/script/migration/1050700.py MoinMoin/script/migration/1050800.py MoinMoin/script/migration/1059997.py MoinMoin/script/migration/1059998.py MoinMoin/script/migration/1059999.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/1069999.py MoinMoin/script/migration/1070000.py MoinMoin/script/migration/1070100.py MoinMoin/script/migration/1070200.py MoinMoin/script/migration/1070300.py MoinMoin/script/migration/1080000.py MoinMoin/script/migration/1080100.py MoinMoin/script/migration/1080200.py MoinMoin/script/migration/1080300.py MoinMoin/script/migration/1080400.py MoinMoin/script/migration/1080500.py MoinMoin/script/migration/1080600.py MoinMoin/script/migration/1080700.py MoinMoin/script/migration/1080800.py MoinMoin/script/migration/1090000.py MoinMoin/script/migration/1090100.py MoinMoin/script/migration/1090200.py MoinMoin/script/migration/1090300.py MoinMoin/script/migration/1090400.py MoinMoin/script/migration/__init__.py MoinMoin/script/migration/_conv160.py MoinMoin/script/migration/_conv160a.py MoinMoin/script/migration/_tests/test_conv160_wiki.py MoinMoin/script/migration/_tests/test_conv160a_wiki.py MoinMoin/script/migration/data.py MoinMoin/script/migration/migutil.py MoinMoin/script/moin.py MoinMoin/script/old/__init__.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_mig05.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 MoinMoin/script/old/migration/12_to_13_mig10.py MoinMoin/script/old/migration/12_to_13_mig11.py MoinMoin/script/old/migration/152_to_1050300.py MoinMoin/script/old/migration/__init__.py MoinMoin/script/old/print_stats.py MoinMoin/script/old/xmlrpc-tools/UpdateGroupTest.py MoinMoin/script/old/xmlrpc-tools/__init__.py MoinMoin/script/xmlrpc/remote.py MoinMoin/script/xmlrpc/retrieve.py MoinMoin/security/antispam.py MoinMoin/security/textcha.py MoinMoin/theme/classic.py MoinMoin/theme/modernized_cms.py MoinMoin/util/_tests/test_diff3.py MoinMoin/util/_tests/test_diff_text.py MoinMoin/util/_tests/test_filesys.py MoinMoin/util/_tests/test_util.py MoinMoin/util/chartypes_create.py MoinMoin/util/diff_text.py MoinMoin/web/static/__init__.py MoinMoin/xmlrpc/HelloWorld.py MoinMoin/xmlrpc/RemoteScript.py MoinMoin/xmlrpc/WhoAmI.py MoinMoin/xmlrpc/putClientInfo.py wiki/server/moin wiki/server/moin.wsgi Copyright: 2002-2009, Thomas Waldmann 2003-2006, Thomas Waldmann 2004, Thomas Waldmann 2004-2005, Thomas Waldmann 2004-2006, Thomas Waldmann 2004-2007, Thomas Waldmann 2005, Thomas Waldmann 2005,2007, Thomas Waldmann 2005-2006, Thomas Waldmann 2005-2007, Thomas Waldmann 2005-2008, Thomas Waldmann 2006, Thomas Waldmann 2006-2007, Thomas Waldmann 2006-2008, Thomas Waldmann 2006-2009, Thomas Waldmann 2007, Thomas Waldmann 2008, Thomas Waldmann 2009, Thomas Waldmann 2010, Thomas Waldmann 2011, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/support/pygments/__init__.py MoinMoin/support/pygments/console.py MoinMoin/support/pygments/filter.py MoinMoin/support/pygments/filters/__init__.py MoinMoin/support/pygments/formatter.py MoinMoin/support/pygments/formatters/__init__.py MoinMoin/support/pygments/formatters/_mapping.py MoinMoin/support/pygments/formatters/bbcode.py MoinMoin/support/pygments/formatters/html.py MoinMoin/support/pygments/formatters/img.py MoinMoin/support/pygments/formatters/latex.py MoinMoin/support/pygments/formatters/other.py MoinMoin/support/pygments/formatters/svg.py MoinMoin/support/pygments/formatters/terminal.py MoinMoin/support/pygments/formatters/terminal256.py MoinMoin/support/pygments/lexer.py MoinMoin/support/pygments/lexers/__init__.py MoinMoin/support/pygments/lexers/_asybuiltins.py MoinMoin/support/pygments/lexers/_clbuiltins.py MoinMoin/support/pygments/lexers/_luabuiltins.py MoinMoin/support/pygments/lexers/_mapping.py MoinMoin/support/pygments/lexers/_phpbuiltins.py MoinMoin/support/pygments/lexers/agile.py MoinMoin/support/pygments/lexers/asm.py MoinMoin/support/pygments/lexers/compiled.py MoinMoin/support/pygments/lexers/dotnet.py MoinMoin/support/pygments/lexers/functional.py MoinMoin/support/pygments/lexers/hdl.py MoinMoin/support/pygments/lexers/math.py MoinMoin/support/pygments/lexers/parsers.py MoinMoin/support/pygments/lexers/special.py MoinMoin/support/pygments/lexers/templates.py MoinMoin/support/pygments/lexers/text.py MoinMoin/support/pygments/lexers/web.py MoinMoin/support/pygments/plugin.py MoinMoin/support/pygments/scanner.py MoinMoin/support/pygments/style.py MoinMoin/support/pygments/styles/__init__.py MoinMoin/support/pygments/styles/autumn.py MoinMoin/support/pygments/styles/borland.py MoinMoin/support/pygments/styles/bw.py MoinMoin/support/pygments/styles/colorful.py MoinMoin/support/pygments/styles/default.py MoinMoin/support/pygments/styles/emacs.py MoinMoin/support/pygments/styles/friendly.py MoinMoin/support/pygments/styles/fruity.py MoinMoin/support/pygments/styles/manni.py MoinMoin/support/pygments/styles/monokai.py MoinMoin/support/pygments/styles/murphy.py MoinMoin/support/pygments/styles/native.py MoinMoin/support/pygments/styles/pastie.py MoinMoin/support/pygments/styles/perldoc.py MoinMoin/support/pygments/styles/tango.py MoinMoin/support/pygments/styles/trac.py MoinMoin/support/pygments/styles/vim.py MoinMoin/support/pygments/styles/vs.py MoinMoin/support/pygments/token.py MoinMoin/support/pygments/unistring.py MoinMoin/support/pygments/util.py Copyright: 2006-2010, the Pygments team, see AUTHORS 2010, the Pygments team, see AUTHORS License: UNKNOWN FIXME Files: MoinMoin/_tests/wikiconfig.py MoinMoin/action/fullsearch.py MoinMoin/action/links.py MoinMoin/action/titleindex.py MoinMoin/formatter/__init__.py MoinMoin/formatter/dom_xml.py MoinMoin/formatter/text_html.py MoinMoin/formatter/text_python.py MoinMoin/formatter/text_xml.py MoinMoin/macro/AbandonedPages.py MoinMoin/macro/BR.py MoinMoin/macro/GetText.py MoinMoin/macro/OrphanedPages.py MoinMoin/macro/PageSize.py MoinMoin/macro/RandomPage.py MoinMoin/macro/RandomQuote.py MoinMoin/macro/RecentChanges.py MoinMoin/macro/ShowSmileys.py MoinMoin/macro/StatsChart.py MoinMoin/macro/SystemAdmin.py MoinMoin/macro/TeudView.py MoinMoin/macro/WantedPages.py MoinMoin/mail/_tests/test_sendmail.py MoinMoin/parser/__init__.py MoinMoin/parser/_tests/test_text_creole.py MoinMoin/parser/_tests/test_text_moin_wiki.py MoinMoin/parser/text.py MoinMoin/script/migration/text_moin158_wiki.py MoinMoin/stats/__init__.py MoinMoin/stats/chart.py MoinMoin/stats/pagesize.py MoinMoin/support/__init__.py MoinMoin/util/_tests/test_web.py MoinMoin/util/dataset.py MoinMoin/util/pysupport.py MoinMoin/util/timefuncs.py MoinMoin/util/web.py MoinMoin/widget/__init__.py MoinMoin/widget/_tests/test_html.py MoinMoin/widget/base.py MoinMoin/widget/html.py MoinMoin/wikixml/__init__.py MoinMoin/wikixml/marshal.py MoinMoin/wikixml/util.py Copyright: 2000, Juergen Hermann 2000-2002, Juergen Hermann 2000-2004, Juergen Hermann 2001, Juergen Hermann 2001-2002, Juergen Hermann 2001-2003, Juergen Hermann 2001-2004, Juergen Hermann 2002, Juergen Hermann 2002-2004, Juergen Hermann 2003, Juergen Hermann 2003-2004, Juergen Hermann License: GPL-2+ FIXME Files: MoinMoin/support/werkzeug/__init__.py MoinMoin/support/werkzeug/_internal.py MoinMoin/support/werkzeug/contrib/__init__.py MoinMoin/support/werkzeug/contrib/atom.py MoinMoin/support/werkzeug/contrib/cache.py MoinMoin/support/werkzeug/contrib/fixers.py MoinMoin/support/werkzeug/contrib/iterio.py MoinMoin/support/werkzeug/contrib/jsrouting.py MoinMoin/support/werkzeug/contrib/kickstart.py MoinMoin/support/werkzeug/contrib/limiter.py MoinMoin/support/werkzeug/contrib/lint.py MoinMoin/support/werkzeug/contrib/profiler.py MoinMoin/support/werkzeug/contrib/securecookie.py MoinMoin/support/werkzeug/contrib/sessions.py MoinMoin/support/werkzeug/contrib/testtools.py MoinMoin/support/werkzeug/contrib/wrappers.py MoinMoin/support/werkzeug/datastructures.py MoinMoin/support/werkzeug/debug/__init__.py MoinMoin/support/werkzeug/debug/console.py MoinMoin/support/werkzeug/debug/repr.py MoinMoin/support/werkzeug/debug/tbtools.py MoinMoin/support/werkzeug/exceptions.py MoinMoin/support/werkzeug/formparser.py MoinMoin/support/werkzeug/http.py MoinMoin/support/werkzeug/local.py MoinMoin/support/werkzeug/posixemulation.py MoinMoin/support/werkzeug/routing.py MoinMoin/support/werkzeug/script.py MoinMoin/support/werkzeug/security.py MoinMoin/support/werkzeug/serving.py MoinMoin/support/werkzeug/templates.py MoinMoin/support/werkzeug/test.py MoinMoin/support/werkzeug/testapp.py MoinMoin/support/werkzeug/urls.py MoinMoin/support/werkzeug/useragents.py MoinMoin/support/werkzeug/utils.py MoinMoin/support/werkzeug/wrappers.py MoinMoin/support/werkzeug/wsgi.py Copyright: 2009, the Werkzeug Team, see AUTHORS for more details 2011, the Werkzeug Team, see AUTHORS for more details License: UNKNOWN FIXME Files: MoinMoin/__init__.py MoinMoin/_tests/test_PageEditor.py MoinMoin/_tests/test_wikiutil.py MoinMoin/action/bookmark.py MoinMoin/action/chart.py MoinMoin/action/edit.py MoinMoin/action/info.py MoinMoin/action/quicklink.py MoinMoin/action/quickunlink.py MoinMoin/action/refresh.py MoinMoin/action/subscribe.py MoinMoin/action/unsubscribe.py MoinMoin/i18n/__init__.py MoinMoin/macro/_tests/test_macro.py MoinMoin/mail/sendmail.py MoinMoin/script/__init__.py MoinMoin/script/export/dump.py MoinMoin/script/migration/text_moin160a_wiki.py MoinMoin/stats/hitcounts.py MoinMoin/userform/__init__.py MoinMoin/userform/login.py MoinMoin/userprefs/prefs.py MoinMoin/util/clock.py MoinMoin/util/filesys.py MoinMoin/version.py MoinMoin/wikixml/_tests/test_marshal.py setup.py Copyright: 2000-2002, Juergen Hermann 2000-2004, Juergen Hermann 2000-2006, Juergen Hermann 2001-2003, Juergen Hermann 2001-2004, Juergen Hermann 2001-2005, Juergen Hermann 2002, Juergen Hermann 2002-2004, Juergen Hermann 2002-2009, Thomas Waldmann 2003, Juergen Hermann 2003-2004, Juergen Hermann 2003-2006, Thomas Waldmann 2003-2007, Thomas Waldmann 2003-2010, Thomas Waldmann 2005-2006, Thomas Waldmann 2005-2008, Thomas Waldmann 2006, Thomas Waldmann 2006-2007, Thomas Waldmann 2006-2008, Thomas Waldmann 2007, Thomas Waldmann 2008-2009, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/common/images/reset.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/avi.gif contrib/TWikiDrawPlugin/src/CH/ifa/draw/util/StorableOutput.java wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Chinese_Taiwan--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hebrew--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hebrew--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hebrew--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Japanese--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Japanese--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Japanese--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Japanese--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Persian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Persian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Persian--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Persian--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Persian--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Persian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Persian--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--optional_pages.zip Copyright: License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/applets/moinFCKplugins/smiley/smile.png MoinMoin/web/static/htdocs/classic/img/idea.png MoinMoin/web/static/htdocs/classic/img/redface.png MoinMoin/web/static/htdocs/classic/img/sad.png MoinMoin/web/static/htdocs/classic/img/smile.png MoinMoin/web/static/htdocs/classic/img/smile2.png MoinMoin/web/static/htdocs/classic/img/smile3.png MoinMoin/web/static/htdocs/modern/img/idea.png MoinMoin/web/static/htdocs/modern/img/redface.png MoinMoin/web/static/htdocs/modern/img/sad.png MoinMoin/web/static/htdocs/modern/img/smile.png MoinMoin/web/static/htdocs/modern/img/smile2.png MoinMoin/web/static/htdocs/modern/img/smile3.png MoinMoin/web/static/htdocs/rightsidebar/img/idea.png MoinMoin/web/static/htdocs/rightsidebar/img/redface.png MoinMoin/web/static/htdocs/rightsidebar/img/sad.png MoinMoin/web/static/htdocs/rightsidebar/img/smile.png MoinMoin/web/static/htdocs/rightsidebar/img/smile2.png MoinMoin/web/static/htdocs/rightsidebar/img/smile3.png Copyright: 1999, Philipp Esselbach (ple@gmx.net) License: UNKNOWN FIXME Files: MANIFEST.in MoinMoin/web/static/htdocs/classic/css/common.css MoinMoin/web/static/htdocs/classic/css/print.css MoinMoin/web/static/htdocs/classic/css/projection.css MoinMoin/web/static/htdocs/classic/css/screen.css MoinMoin/web/static/htdocs/modern/css/common.css MoinMoin/web/static/htdocs/modern/css/print.css MoinMoin/web/static/htdocs/modern/css/projection.css MoinMoin/web/static/htdocs/modern/css/screen.css MoinMoin/web/static/htdocs/modernized/css/common.css MoinMoin/web/static/htdocs/modernized/css/print.css MoinMoin/web/static/htdocs/modernized/css/projection.css MoinMoin/web/static/htdocs/modernized/css/screen.css MoinMoin/web/static/htdocs/rightsidebar/css/common.css MoinMoin/web/static/htdocs/rightsidebar/css/print.css MoinMoin/web/static/htdocs/rightsidebar/css/projection.css MoinMoin/web/static/htdocs/rightsidebar/css/screen.css setup.cfg Copyright: 2001, Juergen Hermann 2001-2002, Juergen Hermann 2001-2003, Juergen Hermann 2003, Juergen Hermann License: UNKNOWN FIXME Files: MoinMoin/_tests/test_wikisync.py MoinMoin/action/RenderAsDocbook.py MoinMoin/action/SyncPages.py MoinMoin/action/showtags.py MoinMoin/action/thread_monitor.py MoinMoin/auth/_PHPsessionParser.py MoinMoin/auth/php_session.py MoinMoin/formatter/_tests/test_formatter.py MoinMoin/macro/FullSearchCached.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 contrib/gettext_parser/gettext.py contrib/googleimport/driver.py Copyright: 2005, Alexander Schremmer 2006, Alexander Schremmer 2007,2010, Alexander Schremmer License: GPL-2+ FIXME Files: MoinMoin/events/__init__.py MoinMoin/events/_tests/test_events.py MoinMoin/events/emailnotify.py MoinMoin/events/jabbernotify.py MoinMoin/events/notification.py MoinMoin/events/xapian_index.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, Karol Nowak License: GPL-2+ FIXME Files: MoinMoin/support/flup/client/fcgi_app.py MoinMoin/support/flup/client/scgi_app.py MoinMoin/support/flup/server/ajp.py MoinMoin/support/flup/server/ajp_base.py MoinMoin/support/flup/server/ajp_fork.py MoinMoin/support/flup/server/fcgi.py MoinMoin/support/flup/server/fcgi_base.py MoinMoin/support/flup/server/fcgi_fork.py MoinMoin/support/flup/server/fcgi_single.py MoinMoin/support/flup/server/preforkserver.py MoinMoin/support/flup/server/scgi.py MoinMoin/support/flup/server/scgi_base.py MoinMoin/support/flup/server/scgi_fork.py MoinMoin/support/flup/server/singleserver.py MoinMoin/support/flup/server/threadedserver.py MoinMoin/support/flup/server/threadpool.py Copyright: 2002-2003, 2005-2006, Allan Saddi 2005, Allan Saddi 2005-2006, Allan Saddi 2006, Allan Saddi License: BSD (2 clause) FIXME Files: MoinMoin/datastruct/__init__.py MoinMoin/datastruct/backends/__init__.py MoinMoin/datastruct/backends/_tests/test_composite_groups.py MoinMoin/datastruct/backends/_tests/test_config_dicts.py MoinMoin/datastruct/backends/_tests/test_config_groups.py MoinMoin/datastruct/backends/_tests/test_lazy_config_groups.py MoinMoin/datastruct/backends/composite_dicts.py MoinMoin/datastruct/backends/composite_groups.py MoinMoin/datastruct/backends/config_dicts.py MoinMoin/datastruct/backends/config_groups.py MoinMoin/datastruct/backends/config_lazy_groups.py MoinMoin/formatter/_tests/test_groups.py MoinMoin/formatter/groups.py MoinMoin/search/_tests/test_wiki_analyzer.py MoinMoin/userform/_tests/test_admin.py Copyright: 2009, Dmitrijs Milajevs License: GPL-2+ FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/English--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/English--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/French--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/French--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/French--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/German--translated_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--translated_system_pages.zip Copyright: fX,p,bXv{ o4  ްbX rFTggl|5X,iڲ25.544n%n,͵X,_[n^WbjkTkkh,((`+bX pN\.611|IY,ZMMM`׊qh0|>X,|V@pij?8n;.`bX X,t:H‰NkkkbXpwwjs"蚚,PV#I0 License: UNKNOWN FIXME Files: MoinMoin/action/newaccount.py MoinMoin/action/recoverpass.py MoinMoin/action/serveopenid.py MoinMoin/auth/botbouncer.py MoinMoin/auth/openidrp.py MoinMoin/macro/EditTemplates.py MoinMoin/macro/LikePages.py MoinMoin/macro/TableOfContents.py MoinMoin/parser/text_csv.py MoinMoin/script/xmlrpc/write.py MoinMoin/userprefs/__init__.py MoinMoin/userprefs/oid.py MoinMoin/userprefs/oidserv.py MoinMoin/util/moinoid.py Copyright: 2004, Johannes Berg 2006-2007, Johannes Berg 2006-2008, Johannes Berg 2007, Johannes Berg 2007-2008, Johannes Berg License: GPL-2+ FIXME Files: MoinMoin/support/xappy/__init__.py MoinMoin/support/xappy/_checkxapian.py MoinMoin/support/xappy/datastructures.py MoinMoin/support/xappy/errors.py MoinMoin/support/xappy/fieldactions.py MoinMoin/support/xappy/fieldmappings.py MoinMoin/support/xappy/highlight.py MoinMoin/support/xappy/indexerconnection.py MoinMoin/support/xappy/marshall.py MoinMoin/support/xappy/memutils.py MoinMoin/support/xappy/parsedate.py MoinMoin/support/xappy/replaylog.py MoinMoin/support/xappy/schema.py MoinMoin/support/xappy/searchconnection.py Copyright: 2007, Lemur Consulting Ltd 2008, Lemur Consulting Ltd License: GPL-2+ FIXME Files: MoinMoin/action/Save.py MoinMoin/action/language_setup.py MoinMoin/action/supplementation.py MoinMoin/macro/_tests/test_Action.py MoinMoin/macro/_tests/test_FootNote.py MoinMoin/macro/_tests/test_GetVal.py MoinMoin/macro/_tests/test_Hits.py MoinMoin/macro/_tests/test_PageHits.py MoinMoin/macro/_tests/test_StatsChart.py MoinMoin/parser/_tests/test_text_csv.py MoinMoin/script/account/homepage.py MoinMoin/script/maint/makecache.py MoinMoin/theme/_tests/test_editbar_actions.py MoinMoin/widget/_tests/test_DataBrowserWidget.py Copyright: 2006-2007, Reimar Bauer 2007, Reimar Bauer 2007-2008, Reimar Bauer 2008, Reimar Bauer 2009, Reimar Bauer 2010, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/_tests/test_wsgiapp.py MoinMoin/web/__init__.py MoinMoin/web/_tests/test_utils.py MoinMoin/web/contexts.py MoinMoin/web/exceptions.py MoinMoin/web/frontend.py MoinMoin/web/profile.py MoinMoin/web/request.py MoinMoin/web/serving.py contrib/raw_wsgi_bench.py wiki/server/moin.ajp wiki/server/moin.scgi Copyright: 2008, Florian Krupicka 2008-2008, Florian Krupicka License: GPL-2+ FIXME Files: MoinMoin/error.py MoinMoin/formatter/pagelinks.py MoinMoin/macro/EditedSystemPages.py MoinMoin/script/old/repair_language.py MoinMoin/theme/rightsidebar.py MoinMoin/util/profile.py MoinMoin/widget/dialog.py Copyright: 2004, Nir Soffer 2004-2005, Nir Soffer 2005, Nir Soffer License: GPL-2+ FIXME Files: MoinMoin/action/CopyPage.py MoinMoin/action/DeletePage.py MoinMoin/action/Load.py MoinMoin/auth/_tests/test_ldap_login.py MoinMoin/macro/SystemInfo.py MoinMoin/script/maint/cleancache.py MoinMoin/script/maint/cleansessions.py Copyright: 2005-2007, Thomas Waldmann 2006-2007, Thomas Waldmann 2006-2008, Thomas Waldmann 2007, Reimar Bauer 2007, Thomas Waldmann 2007-2008, Reimar Bauer 2007-2009, Reimar Bauer 2008, Thomas Waldmann 2009, Reimar Bauer 2010, Reimar Bauer 2010, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/search/Xapian/search.py MoinMoin/search/__init__.py MoinMoin/search/builtin.py MoinMoin/search/queryparser/__init__.py MoinMoin/search/results.py Copyright: 2005, Alexander Schremmer 2005, Florian Festi 2005, Nir Soffer 2006, Franz Pletz 2006, Thomas Waldmann 2006-2008, Thomas Waldmann 2006-2009, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/config/multiconfig.py MoinMoin/macro/__init__.py MoinMoin/userprefs/changepass.py MoinMoin/userprefs/notification.py MoinMoin/userprefs/suid.py Copyright: 2000-2004, Juergen Hermann 2001-2004, Juergen Hermann 2003-2007, Thomas Waldmann 2005-2008, Thomas Waldmann 2006-2009, Thomas Waldmann 2007, Johannes Berg 2008, Johannes Berg License: GPL-2+ FIXME Files: MoinMoin/auth/smb_mount.py MoinMoin/log.py MoinMoin/script/account/resetpw.py MoinMoin/script/migration/_conv160_wiki.py MoinMoin/script/migration/_conv160a_wiki.py Copyright: 2006, Thomas Waldmann 2006-2008, Thomas Waldmann 2007, Johannes Berg 2007, Thomas Waldmann 2007-2009, Thomas Waldmann 2008, Johannes Berg 2008, Thomas Waldmann License: GPL-2+ FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--optional_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--translated_system_pages.zip Copyright: motorizada com [[http://moinmo.in/|MoinMoin License: UNKNOWN FIXME Files: MoinMoin/web/flup_frontend.py MoinMoin/web/session.py MoinMoin/web/utils.py MoinMoin/wsgiapp.py Copyright: 2003-2008, Thomas Waldmann 2008, Florian Krupicka 2008-2008, Florian Krupicka 2009, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/PageEditor.py MoinMoin/action/diff.py MoinMoin/parser/text_moin_wiki.py MoinMoin/security/_tests/test_security.py Copyright: 2000-2002, Juergen Hermann 2000-2004, Juergen Hermann 2003-2004, Juergen Hermann 2005-2007, Thomas Waldmann 2006-2008, Thomas Waldmann 2007, Reimar Bauer 2007, Thomas Waldmann 2009, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinattachment/fck_attachment.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinformat/fckplugin.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinimage/fck_image.js MoinMoin/web/static/htdocs/applets/moinFCKplugins/moinlink/fck_link.js Copyright: 2003-2004, Frederico Caldeira Knabben License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--essential_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--translated_system_pages.zip Copyright: Wiki''''''Name 这个单词不带有链接时,可以使用以下方法之一: License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Russian--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--optional_pages.zip Copyright: f,>*ŶT5R=t_ފc"98rmT;j^~ۜ 3)9a?/j܆Ep2pA|Ҥ“D +o.؉ 2 License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/anywikidraw/mediawiki 1.12 to 1.15/extensions/AnyWikiDraw/AnyWikiDraw.body.php contrib/AnyWikiDraw/anywikidraw/mediawiki 1.12 to 1.15/extensions/AnyWikiDraw/AnyWikiDraw.php contrib/AnyWikiDraw/anywikidraw/mediawiki 1.7 to 1.10/extensions/AnyWikiDraw/AnyWikiDraw.php contrib/AnyWikiDraw/anywikidraw/mediawiki 1.7 to 1.10/extensions/AnyWikiDraw/AnyWikiDraw_body.php Copyright: 2007-2008, the original authors of AnyWikiDraw 2007-2009, the original authors of AnyWikiDraw holders") holders. For details see accompanying license terms of this software is owned by the authors and License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Finnish--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Finnish--optional_pages.zip Copyright: փP(8^lA'bkt" b@A(ab@A(ab@A(ab@UrARUzP6%PP ;յYzGÃOT?\KK<"~g%}"9V z:'e܋[ 3:v86WNνy~L?ʼnO'CmmݯwkfYVcn߾m;lKe}:ޙ%D/ ?7Ǎ9pgP! ԛm.FC. A1(FJj5DY{PLčN4*OD"0ziԴ+'\B-(Őr License: UNKNOWN FIXME Files: MoinMoin/action/AttachFile.py MoinMoin/action/anywikidraw.py MoinMoin/action/twikidraw.py Copyright: 2001, Ken Sugino (sugino@mediaone.net) 2001-2004, Juergen Hermann 2005, Alexander Schremmer 2005, DiegoOngaro at ETSZONE (diego@etszone.com) 2005-2007, Reimar Bauer 2005-2009, Reimar Bauer 2007-2008, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/action/MyPages.py MoinMoin/security/autoadmin.py MoinMoin/xmlrpc/UpdateGroup.py Copyright: 2005-2006, Bastian Blank, Florian Festi , Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/auth/openidrp_ext/__init__.py MoinMoin/auth/openidrp_ext/openidrp_sreg.py MoinMoin/auth/openidrp_ext/openidrp_teams.py Copyright: 2007-20099 Canonical, Inc 2009, Canonical, Inc License: GPL-2+ FIXME Files: MoinMoin/script/server/__init__.py MoinMoin/script/server/standalone.py wikiserver.py Copyright: 2007, Forrest Voight 2008, Forrest Voight License: GPL-2+ FIXME Files: MoinMoin/action/LikePages.py MoinMoin/action/SpellCheck.py MoinMoin/macro/Include.py Copyright: 2000-2001, Richard Jones 2000-2004, Juergen Hermann 2001, Juergen Hermann 2001, Richard Jones 2001-2004, Juergen Hermann License: GPL-2+ FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Italian--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Italian--optional_help_pages.zip Copyright: '''avvisi''' quando qualcuno cerca di modificare una pagina già aperta in modifica, viene visualizzato un avviso indicante di aspettare finch l'utente che sta modificando la pagina non ha completato il suo lavoro 6.Dbq% 7hY#u^ʟ0ӹ&;/^ʟeo}Ͽc8?FlѢCg1lx7 p||Ξ=#m6=@ ٳg̞5xp_W7>/QB79sM5g䨔*K-7R85ǎR*|0a2 ۖve)5u+h?gU~QQ FՊxjy6_旑>2߅B!p7 \!R /;~aLLlJ^|jNNWg`zvc o_ ?G<,Ü5'iߢQ7hY#u^ʟ0ӹ&;/^ʟeo}Ͽc8?FlѢCg1lx7 p||Ξ=#m6=@ ٳg̞5xp_W7>/QB79sM5g䨔*K-7R85ǎR*|0a2 ۖve)5u+h?gU~QQ FՊxjy6_旑>2߅B!p7 \!R /;~aLLlJ^|jNNWg`zvc o_ ?G<,Ü5'iߢQ. 1996,1998, Jef Poskanzer . License: BSD (2 clause) FIXME Files: MoinMoin/action/PackagePages.py MoinMoin/packages.py Copyright: 2005, Alexander Schremmer 2007-2009, Reimar Bauer 2007-2010, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/script/maint/mkpagepacks.py MoinMoin/xmlrpc/__init__.py Copyright: 2003-2009, Thomas Waldmann 2004-2006, Alexander Schremmer 2005, Alexander Schremmer 2006-2009, Thomas Waldmann 2007-2009, Reimar Bauer 2009, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/mail/mailimport.py MoinMoin/script/import/irclog.py Copyright: 2005-2007, Alexander Schremmer 2006, Alexander Schremmer 2006, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/datastruct/backends/_tests/__init__.py MoinMoin/datastruct/backends/_tests/test_wiki_groups.py Copyright: 2003-2004, Juergen Hermann 2007, Thomas Waldmann 2008, Melita Mihaljevic 2009, Dmitrijs Milajevs License: GPL-2+ FIXME Files: MoinMoin/auth/interwiki.py MoinMoin/util/_tests/test_lock.py Copyright: 2005, Florian Festi 2007, Thomas Waldmann 2007-2008, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/action/__init__.py wiki/server/moin.cgi Copyright: 2000-2004, Juergen Hermann 2000-2005, Juergen Hermann 2006, Thomas Waldmann 2008, Florian Krupicka 2008, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/search/Xapian/__init__.py MoinMoin/search/Xapian/tokenizer.py Copyright: 2006, Franz Pletz 2006-2008, Thomas Waldmann 2006-2009, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/macro/Action.py MoinMoin/macro/_tests/test_EmbedObject.py Copyright: 2004, 2007 Johannes Berg 2007, Reimar Bauer 2008, Johannes Berg 2008, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/_tests/test_error.py MoinMoin/search/_tests/test_search.py Copyright: 2003-2004, Nir Soffer 2005, Nir Soffer 2007, Thomas Waldmann 2007-2010, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/theme/modern.py MoinMoin/theme/modernized.py Copyright: 2003-2005, Nir Soffer , Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/parser/_creole.py MoinMoin/parser/text_creole.py Copyright: 2007, Radomir Dopieralski 2007, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/security/sec_recaptcha.py debian/patches/recaptcha.patch Copyright: 2011, Steve McIntyre License: GPL-2+ FIXME Files: contrib/TWikiDrawPlugin/packages/com/keypoint/PngEncoder.java contrib/TWikiDrawPlugin/packages/com/keypoint/PngEncoderIndexed.java Copyright: *No copyright* License: LGPL-2.1+ FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/js/fckeditorcode_gecko.js MoinMoin/web/static/htdocs/applets/FCKeditor/editor/js/fckeditorcode_ie.js Copyright: A.MoveToBookmark(D);return;};A.Expand('inline_elements');D=A.CreateBookmark(true);var T=A.GetBookmarkNode(D,true);var U=A.GetBookmarkNode(D,false);A.Release(true);var I=new FCKElementPath(T);var X=I.Elements;var O;for (var i=1;i>''' box. Přesvědčte se, že máte velká písmena tam a jen tam, kam patří stránky|| uživatele a ty, kteří neradi čtou dokumentaci: výchozí body: wiki, použijte jednoduše její InterWiki jmno, těsně za něj napiště dvojtečku a vzápětí jmno stránky číslo ve [[WikiNazev | WikiNázvech License: UNKNOWN FIXME Files: debian/process_language_pages debian/tweak-moin-manpage Copyright: 2009, Frank lin Piat ; License GPL V2 or later 2010, Frank lin Piat ; License GPL V2 or later License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/anywikidraw/mediawiki 1.12 to 1.15/extensions/AnyWikiDraw/AnyWikiDrawForMediaWiki.jar.pack.gz contrib/AnyWikiDraw/anywikidraw/mediawiki 1.7 to 1.10/extensions/AnyWikiDraw/AnyWikiDrawForMediaWiki.jar.pack.gz Copyright: U (Hr޽{m~vr$VjxO!a<̈Y?w?}.Z3~snJG;~[t}n!~)LуL 5m5 {:^VFA6ZcgHZ(2?QAX1zxM>"ex$؝v\O_gdn9{<[ƦΖGlF 0AXs@&zLZͤ License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Russian--essential_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Russian--essential_pages.zip Copyright: XZfu~N6%eroQ9ɓQ.+6v:pb![5%^W`fp8zaܗv/,ҴD7of=d ̜9s'OgY[^R Ph5DGG^3^^Dg ª" 7pUWuᚎ* i.C؎:uL暔uUW_}u}R.7MJ5IJ %ZJk 4~ber'^AsQ ;&`La- Z͜\6#ŗ.A.^"Qϯ TSH &d8lHh~&jTk{'wDR* R0Յ%{M6:;;jj* License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/French--optional_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/French--optional_pages.zip Copyright: [[AideDesAnalyseurs#L_analyseur_highlight|highlight License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--optional_help_pages.zip Copyright: a ajuda para os novos usuários de uma wiki MoinMoin se acostumar com o modo de funcionamento das wikis um ambiente de hipertexto colaborativo, com ênfase em facilidade de acesso e alteração de informação uma Wiki:WikiWikiWeb, leia Wiki:WhyWikiWorks e Wiki:WikiNature. Consulte tambm Wiki:WikiWikiWebFaq e Wiki:OneMinuteWiki. Usando o recurso de InterWiki, possível fazer referência a uma vasta gama de informações de outras wikis uma lista de páginas úteis para novos usuários uma lista de todas as páginas de ajuda disponíveis uma lista de todas as páginas de ajuda. Para um índice mais detalhado, veja ConteúdoDaAjuda License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Slovak--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovak--translated_system_pages.zip Copyright: boly naposledy upravovan dlho nikto nemenil kontaktn údaje majú aspoň jednu staršiu verziu (kliknite pre diff)|| miesto na publikovanie informácií ''o sebe'', ako napríklad na ne odkazujú: neboli editovan dlhšie než všetky ostatn (t.j. zoznam najstarších editácií) neodkazuje nijaká iná stránka: nikto neodkazuej náhodn stránky od poslednej záložky (kliknite pre diff)|| od poslednej záložky, ale už viac needitovan|| odkazy sa odkazuje stránky stránky|| sú súčasťou titulnej stránky (a teda zoznam pojmov vo wiki) súvisiace stránky, ak si v dropdown menu v editovacom páse na začiatku a konci stránky vyberiete: utvoriť chránen podstránky a tak obmedziť verejný prístup k vašim stránkam východiskov body: zoznamy sú prečíslovan ďalšie riadky License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Slovak--optional_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovak--optional_system_pages.zip Copyright: boly naposledy upravovan na ne odkazujú: neboli editovan dlhšie než všetky ostatn (t.j. zoznam najstarších editácií) neodkazuje nijaká iná stránka: stránky východiskov body: zoznamy sú prečíslovan ďalšie riadky License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--optional_template_pages.zip Copyright: claro) o parâmetro mais importante que você precisa definir em qualquer caso - os outros são opcionais uma página de sincronização que descreve todos os parâmetros. Veja HelpOnSynchronisation para uma explicação detalhada License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Spanish--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Spanish--optional_pages.zip Copyright: configurado en su navegador está trabajando la gente actualmente forma vas a cambiar tu configuración hacer si deseas que se traduzcan de la misma forma que `FrontPage`? hacer si no quieres esto? instalado en tu wiki existirán diferentes opciones de navegación, sin embargo en la gran mayoría de ellos habrán una serie de opciones estándar que te permi ir a la PáginaInicial (inicio), los CambiosRecientes (modificaciones recientes). el ÍndicePorTitulos (índice de todas los títulos de páginas), el ÍndicePorPalabras (índice de todas las palabras en la página de títulos), NavegaciónDelSitio (lista de todas las herramientas de navegación) y ContenidosDeAyuda (página principal de ayuda) llena con H,,2,,O nombres son páginas de plantilla pueden ser diferentes)>>, esta página será entonces adicionada a la lista de las páginas Plantilla mostradas cuando trates de ver una página no existente. Por ejemplo PáginaDeAyudaNoExistente tiene un enlace a una AyudaPlantilla que carga el contenido de la AyudaPlantilla en la caja de edición, cuando haces click sobre ella pertenece a la URL y qu no. Hay cuatro formas de forzar el final de una URL: se trata este wiki? Describe este wiki para que tus nuevos visitantes sepan de qu se trata si necesita actualizarse para 1.3. La mayoría de esto es sólo cierto para la versión clásica wiki License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Spanish--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Spanish--optional_help_pages.zip Copyright: configurado en su navegador forma vas a cambiar tu configuración hacer si deseas que se traduzcan de la misma forma que `FrontPage`? hacer si no quieres esto? instalado en tu wiki existirán diferentes opciones de navegación, sin embargo en la gran mayoría de ellos habrán una serie de opciones estándar que te permi ir a la PáginaInicial (inicio), los CambiosRecientes (modificaciones recientes). el ÍndicePorTitulos (índice de todas los títulos de páginas), el ÍndicePorPalabras (índice de todas las palabras en la página de títulos), NavegaciónDelSitio (lista de todas las herramientas de navegación) y ContenidosDeAyuda (página principal de ayuda) llena con H,,2,,O nombres son páginas de plantilla pueden ser diferentes)>>, esta página será entonces adicionada a la lista de las páginas Plantilla mostradas cuando trates de ver una página no existente. Por ejemplo PáginaDeAyudaNoExistente tiene un enlace a una AyudaPlantilla que carga el contenido de la AyudaPlantilla en la caja de edición, cuando haces click sobre ella pertenece a la URL y qu no. Hay cuatro formas de forzar el final de una URL: si necesita actualizarse para 1.3. La mayoría de esto es sólo cierto para la versión clásica License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Lithuanian--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Lithuanian--optional_pages.zip Copyright: h_z{oМh2$F٘t$ʇҀCH;%24aIRȦAz8_M"*UʌAXY+HOnԹ[d‘t^@C#lRkQE_N*}+m~aKl6ml)^Ee%&( rb7 License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/anywikidraw/mediawiki 1.12 to 1.15/extensions/AnyWikiDraw/AnyWikiDraw.i18n.php contrib/AnyWikiDraw/anywikidraw/mediawiki 1.7 to 1.10/extensions/AnyWikiDraw/AnyWikiDraw.i18n.php Copyright: 2007-2008, the original authors of AnyWikiDraw 2007-2009, the original authors of AnyWikiDraw holder of the original work. ' holders") holders. For details see accompanying license terms of this software is owned by the authors and License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Portuguese--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Portuguese--translated_system_pages.zip Copyright: normalmente ''pública'', qualquer pessoa pode ler e editar (o que um aspecto positivo, veja-o como uma forma de comunicar consigo). Mas pode criar igualmente sub-páginas protegidas, por isso restringir o acesso a algumas das suas páginas não um problema o local ideal para publicar informação ''sobre si próprio'', como por exemplo: um índice de todas as palavras presentes nos títulos das páginas um índice de todas as páginas deste Wiki uma lista de entradas mais antigas deste wiki License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Portuguese--essential_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Portuguese--essential_template_pages.zip Copyright: o nome de utilizador e o que se segue só activado se o utilizador coincidir tão fácil como incluir uma linha de controlo no topo da página que deseja controlar, como a seguinte: um nome de página correspondente ao {{{page_group_regex}}} com algumas linhas no formato " * Member" (ver [[#Grupos License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Slovak--all_category_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Slovak--essential_category_pages.zip Copyright: stránky v tejto kategórii: License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Hungarian--all_template_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hungarian--essential_template_pages.zip Copyright: szeretne tenni saját magáról License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Hungarian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hungarian--essential_pages.zip Copyright: szeretne tenni saját magáról vált a a mintával (pattern) foglalkozó közössgben (lásd a wiki törtnett: Wiki:History). A wiki npszerűsgt főleg az újdonságának s a meghívott szerzőknek (Wiki:InvitedAuthors) köszönhette License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Lithuanian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Lithuanian--optional_help_pages.zip Copyright: {}qtۋ.&thWNCgŖ>j7xRyn@4q2d7|͘[ǑL6_0Cի@Y;oƎM-%/F<Ge8fkbK)'cd* F^L4`',.$6Z<6bf/a&Jf(( 50s|`ZjQdt\*2.0+"(X}wf1Ǔb9DqcZ4+&ȯ|s9=g309g3NڋJ1:;i};#/0_Rd License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/default/fck_strip.gif MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/silver/fck_strip.gif Copyright: yqihyٗyyqP9WSsLD License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/anywikidraw/mediawiki 1.12 to 1.15/extensions/AnyWikiDraw/AnyWikiDrawForMediaWiki.jar contrib/AnyWikiDraw/anywikidraw/mediawiki 1.7 to 1.10/extensions/AnyWikiDraw/AnyWikiDrawForMediaWiki.jar Copyright: wԛct>} License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/anywikidraw/anywikidraw-0.14-for-twiki-4.1.zip contrib/AnyWikiDraw/anywikidraw/anywikidraw-0.14-for-twiki-4.3.zip Copyright: r{ VHm=N=RIR{ ~/d 8 ١Q$̠7g2r soN^O} License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/images/rain.gif contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/images/samples/Backgrounds/rain.gif Copyright: WVz=@X`(謨>.mgGZ 3Y6`cuÎC vfH܌SiQq3+2H /*^Zfv.֐96r#c{j&C'{9f,z6W䝳6$!RHRg0mk; r License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/modern/img/draft.png MoinMoin/web/static/htdocs/modernized/img/draft.png Copyright: @ 8g&2@/'b*q΂fSXMDټ *R8`c%Q License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--all_help_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--optional_pages.zip Copyright: DH+EiUpU6 5L~p>lԤԨH~}N2SeZW>i}m 5*c;73%c+W 6٣QBHJb٨=n[E{1޾Kkۦf0ľ License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Hebrew--all_system_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Hebrew--essential_system_pages.zip Copyright: ב[[CategoryCategory|Category License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--all_pages.zip wiki/underlay/pages/LanguageSetup/attachments/Ukrainian--optional_help_pages.zip Copyright: 5L~p>lԤԨH~}N2SeZW>i}m 5*c;73%c+W 6٣QBHJb٨=n[E{1޾Kkۦf0ľ License: UNKNOWN FIXME Files: MoinMoin/support/parsedatetime/parsedatetime_consts.py Copyright: 2004-2008, Mike Taylor 2006-2008, Darshana Chhajed 2007, Bernd Zeimetz License: Apache-2.0 FIXME Files: MoinMoin/support/parsedatetime/parsedatetime.py Copyright: 2002-2006, Mark Pilgrim 2004-2008, Mike Taylor 2006-2008, Darshana Chhajed License: Apache-2.0 FIXME Files: MoinMoin/support/parsedatetime/__init__.py Copyright: 2004-2008, Mike Taylor 2006-2008, Darshana Chhajed License: Apache-2.0 FIXME Files: docs/licenses/twikidraw.txt Copyright: 1996,1998, Jef Poskanzer 2000, Peter Thoeny, Peter@ThoenySPAMBLOCK.com. It 2001, Motorola. License: BSD FIXME Files: MoinMoin/filter/EXIF.py Copyright: 2002, Gene Cash Svi Svi license is intended to be similar to the FreeBSD license License: BSD (2 clause) FIXME Files: docs/licenses/werkzeug/LICENSE Copyright: 2009, the Werkzeug Team, see AUTHORS for more details HOLDERS AND CONTRIBUTORS License: BSD (2 clause) FIXME Files: docs/licenses/pygments/LICENSE Copyright: 2006, the respective authors (see AUTHORS file) HOLDERS AND CONTRIBUTORS License: BSD (2 clause) FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/ImageObject.cfc Copyright: 2006, Rick Root HOLDERS AND OWNER OR License: BSD (3 clause) FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/image.cfc Copyright: 2004, James F. Dew 2007, Rick Root HOLDERS AND OWNER OR License: BSD (3 clause) ISC FIXME Files: debian/rules Copyright: 2003-2010, Jonas Smedegaard 2009-2010, Frank Lin PIAT License: GPL FIXME Files: MoinMoin/web/static/htdocs/common/js/infobox.js Copyright: 2002, Klaus Knopper License: GPL-2 FIXME Files: MoinMoin/wikiutil.py Copyright: - 0xac00) 2000-2004, Juergen Hermann 2004, Florian Festi 2005-2008, Thomas Waldmann 2006, Mikko Virkkil 2007, Reimar Bauer 588) * 588) License: GPL-2+ FIXME Files: MoinMoin/script/migration/wikiutil160a.py Copyright: - 0xac00) 2000, - 2004, Juergen Hermann 2004, Florian Festi 2006, Mikko Virkkil 2007, Reimar Bauer 588) * 588) License: GPL-2+ FIXME Files: MoinMoin/macro/AdvancedSearch.py Copyright: *No copyright* License: GPL-2+ FIXME Files: docs/licenses/COPYING Copyright: 1989, 1991 Free Software Foundation, Inc 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR HOLDERS AND/OR OTHER PARTIES disclaimer" for the program, if holder saying it may be distributed holder who places the Program under this License interest in the program law: the software, and year name of author License: GPL-2+ FIXME Files: MoinMoin/action/Despam.py Copyright: 2005, ???, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/macro/PageList.py Copyright: 2003-2008, Thomas Waldmann 2008, Reimar Bauer @: 2001-2003, Juergen Hermann License: GPL-2+ FIXME Files: MoinMoin/action/SubscribeUser.py Copyright: 2003, Daniela Nicklas 2005, Alexander Schremmer 2009, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/search/queryparser/expressions.py Copyright: 2005, Alexander Schremmer 2005, Florian Festi 2005, Nir Soffer 2006, Franz Pletz 2006-2008, Thomas Waldmann 2009, Dmitrijs Milajevs License: GPL-2+ FIXME Files: MoinMoin/macro/GetText2.py Copyright: 2006, Alexander Schremmer 2009, Eugene Syromyatnikov 2009, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/_tests/test_packages.py Copyright: 2005, Alexander Schremmer 2007, Federico Lorenzi 2010, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/security/__init__.py Copyright: 2000-2004, Juergen Hermann 2003, Gustavo Niemeyer 2003-2008, Thomas Waldmann 2005, Oliver Graf 2007, Alexander Schremmer License: GPL-2+ FIXME Files: MoinMoin/parser/text_docbook.py Copyright: 2005, Alexander Schremmer 2005, Henry Ho License: GPL-2+ FIXME Files: MoinMoin/parser/text_xslt.py Copyright: 2001-2003, Juergen Hermann 2005, Alexander Schremmer 2005, Henry Ho License: GPL-2+ FIXME Files: MoinMoin/_tests/_test_template.py Copyright: 2003-2004, Juergen Hermann 2007, Alexander Schremmer 2009, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/util/bdiff.py Copyright: 2005, Matt Mackall 2006, Alexander Schremmer License: GPL-2+ FIXME Files: MoinMoin/parser/text_rst.py Copyright: 2004, Alexander Schremmer 2004, Matthew Gilbert License: GPL-2+ FIXME Files: MoinMoin/formatter/text_docbook.py Copyright: 2005, Alexander Schremmer 2005, Petr Pytelka (small modifications) 2005,2008, Mikko Virkkil License: GPL-2+ FIXME Files: MoinMoin/macro/NewPage.py Copyright: 2004, Alexander Schremmer 2004, Nir Soffer 2004, Vito Miliano (vito_moinnewpagewithtemplate@perilith.com) 2006-2008, Reimar Bauer 2008, Radomir Dopieralski License: GPL-2+ FIXME Files: MoinMoin/action/newpage.py Copyright: 2004, Alexander Schremmer 2004, Nir Soffer 2004, Vito Miliano (vito_moinnewpagewithtemplate@perilith.com) 2008, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/conftest.py Copyright: 2005, Nir Soffer 2007, Alexander Schremmer 2008, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/converter/_tests/test_text_html_text_moin_wiki.py Copyright: 2005, Bastian Blank 2005,2007, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/auth/__init__.py Copyright: 2005-2006, Bastian Blank, Florian Festi License: GPL-2+ FIXME Files: MoinMoin/PageGraphicalEditor.py Copyright: 2006, Bastian Blank, Florian Festi 2006-2007, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/converter/text_html_text_moin_wiki.py Copyright: 2005-2006, Bastian Blank, Florian Festi , Reimar Bauer 2005-2007, Thomas Waldmann International Organization for Standardization 1986 sign, U+00A9 ISOnum --> License: GPL-2+ FIXME Files: MoinMoin/action/fckdialog.py Copyright: 2003-2004, Frederico Caldeira Knabben 2005-2006, Bastian Blank, Florian Festi , Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/formatter/text_gedit.py Copyright: 2005-2006, Bastian Blank, Florian Festi , Thomas Waldmann , Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/macro/Hits.py Copyright: 2004-2008, Reimar Bauer 2005, BenjaminVrolijk License: GPL-2+ FIXME Files: jabberbot/capat.py Copyright: 2007, Robert Lehmann 2008, Bolesław Kulbabiński License: GPL-2+ FIXME Files: MoinMoin/script/migration/1089999.py Copyright: 2008, Christopher Denter License: GPL-2+ FIXME Files: MoinMoin/search/Xapian/indexing.py Copyright: 2006, Franz Pletz 2006-2009, Thomas Waldmann 2009, Dmitrijs Milajevs License: GPL-2+ FIXME Files: MoinMoin/datastruct/backends/wiki_dicts.py Copyright: 2003, Gustavo Niemeyer 2003-2007, Thomas Waldmann 2009, Dmitrijs Milajevs License: GPL-2+ FIXME Files: MoinMoin/userform/admin.py Copyright: 2001-2004, Juergen Hermann 2003-2007, Thomas Waldmann 2007-2008, Reimar Bauer 2009, Dmitrijs Milajevs License: GPL-2+ FIXME Files: MoinMoin/datastruct/backends/_tests/test_wiki_dicts.py Copyright: 2003-2004, Juergen Hermann 2007, Thomas Waldmann 2009, Dmitrijs Milajevs License: GPL-2+ FIXME Files: MoinMoin/datastruct/backends/_tests/test_composite_dicts.py Copyright: 2008, MoinMoin: Melita Mihaljevic 2009, Dmitrijs Milajevs License: GPL-2+ FIXME Files: MoinMoin/datastruct/backends/wiki_groups.py Copyright: 2008, Thomas Waldmann 2009, Dmitrijs Milajevs License: GPL-2+ FIXME Files: MoinMoin/macro/HighlighterList.py Copyright: 2009, Eugene Syromyatnikov License: GPL-2+ FIXME Files: MoinMoin/widget/browser.py Copyright: 2002, Juergen Hermann 2010, Eugene Syromyatnikov 2010, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/script/export/package.py Copyright: 2002-2004, Juergen Hermann 2005-2006, Thomas Waldmann 2007, Federico Lorenzi License: GPL-2+ FIXME Files: MoinMoin/util/diff3.py Copyright: 2002, Florian Festi License: GPL-2+ FIXME Files: MoinMoin/Page.py Copyright: 2000-2004, Juergen Hermann 2005-2008, Thomas Waldmann 2006, Florian Festi 2007, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/util/lock.py Copyright: 2005, Florian Festi , Nir Soffer 2008, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/i18n/tools/check_i18n.py Copyright: 2003, Florian Festi , Nir Soffer , Thomas Waldmann License: GPL-2+ FIXME Files: wiki/server/moin.fcgi Copyright: 2000-2005, Juergen Hermann 2008, Florian Krupicka 2008, Thomas Waldmann 2010, Radomir Dopieralski License: GPL-2+ FIXME Files: MoinMoin/util/__init__.py Copyright: 1999-2000, FourThought, http://4suite.com/4DOM 2004, Juergen Hermann , Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/macro/FullSearch.py Copyright: 2000-2004, Juergen Hermann 2006, Franz Pletz License: GPL-2+ FIXME Files: MoinMoin/support/python_compatibility.py Copyright: 2007, Heinrich Wendel 2009, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/macro/AttachInfo.py Copyright: 2004, Jacob Cohen, Nigel Metheringham License: GPL-2+ FIXME Files: MoinMoin/macro/AttachList.py Copyright: 2004, Jacob Cohen, Nigel Metheringham 2006, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/action/SlideShow.py Copyright: 2005, Jim Clark 2005, Nir Soffer 2008, Thomas Waldmann 2009, Reimar Bauer 2010, Paul Boddie License: GPL-2+ FIXME Files: MoinMoin/macro/FootNote.py Copyright: 2002, Juergen Hermann 2007, Johannes Berg 2007, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/action/revert.py Copyright: 2000-2004, Juergen Hermann 2006-2008, Thomas Waldmann 2007-2009, Reimar Bauer 2008, Johannes Berg License: GPL-2+ FIXME Files: MoinMoin/auth/mysql_group.py Copyright: 2006, Nick Phillips 2007, Johannes Berg 2008, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/action/userprefs.py Copyright: 2006, Radomir Dopieralski 2007-2008, Johannes Berg License: GPL-2+ FIXME Files: MoinMoin/user.py Copyright: 2000-2004, Juergen Hermann 2003-2007, Thomas Waldmann 2010, Michael Foetsch License: GPL-2+ FIXME Files: MoinMoin/macro/Navigation.py Copyright: 2003, Juergen Hermann 2008, Radomir Dopieralski License: GPL-2+ FIXME Files: MoinMoin/_tests/test_user.py Copyright: 2003-2004, Juergen Hermann 2009, Reimar Bauer לא קיים__' # Hebrew License: GPL-2+ FIXME Files: MoinMoin/util/diff_html.py Copyright: 2002, Juergen Hermann 2002, Scott Moonen License: GPL-2+ FIXME Files: MoinMoin/action/LocalSiteMap.py Copyright: 2001, Steve Howell 2001-2004, Juergen Hermann License: GPL-2+ FIXME Files: README Copyright: 2000-2006, Juergen Hermann 2006-2009, The MoinMoin development team, see License: GPL-2+ FIXME Files: MoinMoin/caching.py Copyright: 2001-2004, Juergen Hermann 2006-2009, Thomas Waldmann 2008, Thomas Pfaff License: GPL-2+ FIXME Files: MoinMoin/stats/useragents.py Copyright: 2002-2004, Juergen Hermann 2007, Thomas Waldmann for c in colors License: GPL-2+ FIXME Files: MoinMoin/formatter/text_plain.py Copyright: 2000-2002, Juergen Hermann 2007, Timo Sirainen License: GPL-2+ FIXME Files: MoinMoin/theme/__init__.py Copyright: 2003-2008, Thomas Waldmann Juergen Hermann et al.') % (version.release, version.revision, ) License: GPL-2+ FIXME Files: MoinMoin/stats/languages.py Copyright: 2002-2004, Juergen Hermann , # Part of the code is 2007, Nina Kuisma 2007, Thomas Waldmann , # from useragents.py License: GPL-2+ FIXME Files: MoinMoin/action/_tests/test_attachfile.py Copyright: 2007, Karol Nowak 2007-2008, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/_tests/__init__.py Copyright: 2007, Karol Nowak 2008, Thomas Waldmann , Reimar Bauer License: GPL-2+ FIXME Files: docs/licenses/pikipiki.txt Copyright: 1999-2000, Martin Pool License: GPL-2+ FIXME Files: MoinMoin/auth/sslclientcert.py Copyright: 2003, Martin v. Loewis 2006, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/action/RenamePage.py Copyright: 2002-2004, Michael Reinsch 2006-2007, Thomas Waldmann 2007, Reimar Bauer License: GPL-2+ FIXME Files: MoinMoin/script/import/wikipage.py Copyright: 2010, MoinMoin:PascalVolk License: GPL-2+ FIXME Files: MoinMoin/_template.py Copyright: 2007, MoinMoin:YourNameHere License: GPL-2+ FIXME Files: MoinMoin/auth/ldap_login.py Copyright: 2006, Nick Phillips 2006-2008, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/parser/_ParserBase.py Copyright: 2002, Taesu Pyo 2005, Oliver Graf 2005-2008, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/util/_tests/test_pysupport.py Copyright: 2004, Oliver Graf 2007, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/macro/EmbedObject.py Copyright: 2006, TomSi 2006-2009, Reimar Bauer 2007, OliverSiemoneit License: GPL-2+ FIXME Files: MoinMoin/web/static/htdocs/modernized/css/SlideShow.css Copyright: 2008, Thomas Waldmann 2010, Paul Boddie License: GPL-2+ FIXME Files: MoinMoin/parser/highlight.py Copyright: 2008, Radomir Dopieralski License: GPL-2+ FIXME Files: MoinMoin/action/logout.py Copyright: 2005-2006, Radomirs Cirskis License: GPL-2+ FIXME Files: MoinMoin/action/login.py Copyright: 2005-2006, Radomirs Cirskis 2006, Thomas Waldmann License: GPL-2+ FIXME Files: MoinMoin/parser/_tests/test_unicode.py Copyright: 2007-2008, Raphael Bossek License: GPL-2+ FIXME Files: MoinMoin/auth/cas.py Copyright: 2009, Richard Liao License: GPL-2+ FIXME Files: MoinMoin/_tests/pep8.py Copyright: 2006, Johann C. Rocholl HOLDERS License: MIT/X11 (BSD like) FIXME Files: MoinMoin/support/tarfile.py Copyright: 2002, Lars Gustbel License: MIT/X11 (BSD like) FIXME Files: MoinMoin/util/daemon.py Copyright: 2001-2004, Twisted Matrix Laboratories 2004-2005, Thomas Waldmann , Nir Soffer 2005, Nir Soffer HOLDERS BE License: MIT/X11 (BSD like) GPL-2+ FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_about.html Copyright: © 2003-2010, Frederico Caldeira Knabben 2003-2010, Frederico Caldeira Knabben License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/ar.js Copyright: (IE)" 2003-2010, Frederico Caldeira Knabben Div" XHTMLَ" التقليدي (Big5)" المفاتيح، ثم اضغط زر موافق." تحتاج لمتصفح من النوعInternet Explorer إصدار 5.5 فما فوق. هل تود اللصق دون تنظيف الكود؟" حاوي Div" كامل (_top)" للمتصفح الذي تستخدمه تمنع القص التلقائي. فضلاً إستخدم لوح المفاتيح لفعل ذلك (Ctrl+X)." للمتصفح الذي تستخدمه تمنع النسخ التلقائي. فضلاً إستخدم لوح المفاتيح لفعل ذلك (Ctrl+C)." License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/he.js Copyright: (_blank)" 2003-2010, Frederico Caldeira Knabben להתמ במקלדת לם כך (Ctrl+C)." להתמ במקלדת לם כך (Ctrl+X)." License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/fa.js Copyright: (i، ii، iii)" (style)" 2003-2010, Frederico Caldeira Knabben ِگفتگو فراهم نیست. اطمینان حاصل نید ه تمامی برنامه‌های پیشگیری از نمایش popup را از ار بازداشته‌اید." پنجره جدید نیست. اطمینان حاصل نید ه تمامی برنامه‌های پیشگیری از نمایش popup را از ار بازداشته‌اید." License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/license.txt Copyright: 1989, 1991 Free Software Foundation, Inc. 1991, 1999 Free Software Foundation, Inc 2003-2010, Frederico Caldeira Knabben 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR HOLDERS AND/OR HOLDERS AND/OR OTHER PARTIES Representations ______ holder or holder saying it may be distributed holder who places the Library under this License may add holder who places the Program under this License law: law: that is to say, a work containing the Library or a notices, you must include the the the licenses granted in Sections 2.2(a) and 2.2(b) are the licenses granted in this Section 2.1(a) and (b) are the software, and License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/es.js Copyright: 2003-2010, Frederico Caldeira Knabben bloqueando las ventanas emergentes (pop up)." License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/_whatsnew_history.html Copyright: 2003-2010, Frederico Caldeira Knabben de Jong.
  • License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/fr-ca.js Copyright: 2003-2010, Frederico Caldeira Knabben de votre navigateur empêchent l'diteur de copier automatiquement vos donnes. Veuillez utiliser les quivalents claviers (Ctrl+C)." de votre navigateur empêchent l'diteur de couper automatiquement vos donnes. Veuillez utiliser les quivalents claviers (Ctrl+X)." de votre navigateur peuvent limiter quelques fonctionnalits de l'diteur. Veuillez activer l'option \"Excuter les contrôles ActiveX et les plug-ins\". Il se peut que vous rencontriez des erreurs et remarquiez quelques limitations." de votre navigateur, l'diteur ne peut accder au presse-papier directement. Vous devez coller à nouveau le contenu dans cette fenêtre." est introuvable." License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/fr.js Copyright: 2003-2010, Frederico Caldeira Knabben de votre navigateur empêchent l'diteur de copier automatiquement vos donnes. Veuillez utiliser les quivalents claviers (Ctrl+C)." de votre navigateur empêchent l'diteur de couper automatiquement vos donnes. Veuillez utiliser les quivalents claviers (Ctrl+X)." de votre navigateur peuvent limiter quelques fonctionnalits de l'diteur. Veuillez activer l'option \"Excuter les contrôles ActiveX et les plug-ins\". Il se peut que vous rencontriez des erreurs et remarquiez quelques limitations." de votre navigateur, l'diteur ne peut accder au presse-papier directement. Vous devez coller à nouveau le contenu dans cette fenêtre." est introuvable." à Droite" à gauche" License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/cs.js Copyright: 2003-2010, Frederico Caldeira Knabben jazyky" návrhy -" oblasti" okno (_blank)" okno (_parent)" okno (_self)" okno. Prověřte, zda nemáte aktivováno blokování popup oken." otevřít nov okno. Prověřte, zda všechny nástroje pro blokování vyskakovacích oken jsou vypnuty." pole" pozadí" pravopisn chyby nenalezeny" sloupce" spuštění" tlačítko" využívat všechny dosputn schopnosti editoru." výběry" zarovnání" řádky" římsk číslice (I, II, III)" římská číslice (i, ii, iii)" License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/sk.js Copyright: 2003-2010, Frederico Caldeira Knabben jedno slovo" možnosti" nastavenia Vášho prehliadača nedovoľujú editoru pristupovať priamo k datám v schránke. Musíte ich vložiť znovu do tohto okna." nastavenia Vášho prehliadača nedovoľujú editoru spustiť funkciu pre kopírovanie zvolenho textu do schránky. Prosím skopírujte zvolený text do schránky pomocou klávesnice (Ctrl+C)." nastavenia Vášho prehliadača nedovoľujú editoru spustiť funkciu pre vystrihnutie zvolenho textu do schránky. Prosím vystrihnite zvolený text do schránky pomocou klávesnice (Ctrl+X)." nastavenia vášho prehliadača môžu obmedzovať niektor funkcie editora. Pre ich plnú funkčnosť musíte zapnúť voľbu \"Spúšťať ActiveX moduly a zásuvn moduly\", inak sa môžete stretnúť s chybami a nefunkčnosťou niektorých funkcií." okno (_blank)" okno (_parent)" okno (_self)" okno (_top)" okno nebolo možn otvoriť. Uistite sa, že máte vypnutú službu blokovania popup okien." otvoriť nov okno. Uistite sa, že máte vypnutú službu blokovania popup okien." otvoriť. Uistite sa, že máte vypnutú službu blokovania popup okien." pole" pozadie" prehrávanie" práva" písmená (A, B, C)" písmená" riadky" rímske číslice (I, II, III)" slová pre indexovanie (oddelen čiarkou)" slová" stĺpce" tlačidlo" zarovnanie" License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/hu.js Copyright: 2003-2010, Frederico Caldeira Knabben letölteni most?" License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/pt-br.js Copyright: 2003-2010, Frederico Caldeira Knabben reconhecido" License: MPL-1.1 FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/lang/vi.js Copyright: 2003-2010, Frederico Caldeira Knabben thăm" License: MPL-1.1 FIXME Files: debian/licensecheck.diff Copyright: $_matched; = $match; License: QPL (part of Qt) GPL-2+ FIXME Files: contrib/images/logos/star-moin.png Copyright: eY<8& License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Italian--optional_pages.zip Copyright: fX,p,bXv{ o4  ްbX rFTggl|5X,iڲ25.544n%n,͵X,_[n^WbjkTkkh,((`+bX pN\.611|IY,ZMMM`׊qh0|>X,|V@pij?8n;.`bX X,t:H‰NkkkbXpwwjs"蚚,PV#I0 '''avvisi''' quando qualcuno cerca di modificare una pagina già aperta in modifica, viene visualizzato un avviso indicante di aspettare finch l'utente che sta modificando la pagina non ha completato il suo lavoro License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/images/samples/Java_Related/javacentral.gif Copyright: $1CkmX}G`bt&$9篆El5IGEVsƶ$> BcA)2cX2S/32hȈYcdBG>I+1 U85eu^0}Mpe2[4,c_c:\;:_hPyJj.3e΅E`8j 5x License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--admin_pages.zip Copyright: !MoinMoin python包的安装目录). ''plugintype'' 可以是`parser`, `macro`, 等 License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Simplified_Chinese--all_pages.zip Copyright: !MoinMoin python包的安装目录). ''plugintype'' 可以是`parser`, `macro`, 等 Wiki''''''Name 这个单词不带有链接时,可以使用以下方法之一: License: UNKNOWN FIXME Files: MoinMoin/i18n/ar.MoinMoin.po Copyright: %(action_name)s مجهول." %s (errno=%d)." '%(new_pagename)s' غير موجود او ليس لديك حقوق كافي." '%(theme_name)s' لم تحَمل." (%(count)d)." MoinMoin." \"%(oldname)s\" ل\"%(pagename)s\" من قبل %(editor)s:\n" \"%(pagename)s\" قد تغيرت من قبل %(editor)s:\n" \"%(pagename)s\" قد حذفت من قبل %(editor)s:\n" \"%(pagename)s\"" الاساسي بعد. لن نستطيع خدم ال OpenID الخاص بك.\n" التالي (زر right)" المستخدم من قبل %(data_dir)s/" الوحيد هما BOTH و DOWN." بواسط --pages او --search، سيفترض انها حزم كامل." تحولك الي صفح \"%(page)s\"" تعيين كلم السر: %s?action=recoverpass&name=%s&token=%s\n" سر حسابك في الويكي البعيد في الاسفل. <
    > /!\\ يجب ان " قرائ فقط,%(username)s)>>||" ل\"%(pagename)s\"" لأن \"%(content)s\" غير مسموح به في هذا الويكي." لانك لا تملك حقوق admin عليها." لمرفقات هذه الصفح، استخدم '''{{{attachment:اسم الملف}}}''' \n" مجهول %(func)s في سطر %(lineno)i." ويكي \"%(page_name)s\" لالأعلام بالتغيير\n" License: UNKNOWN FIXME Files: MoinMoin/i18n/pt.MoinMoin.po Copyright: %(bumptime)s de que está a editar " %(timestamp)s, ou seja; durante %(mins_valid)d minuto(s)." EXIBIDA no campo do formulário identificado por " a primeira sincronização entre o wiki local e remoto para a página %s." apreciada." controlado pelo grupo da página correspondente.\n" demasiado antiga, necessária uma versão " demasiado longo, tente um nome mais curto." desconhecido." imutável!" inválida. Por favor, consulte a página de " permitido " permitido após tabelas ou cabeçalhos.\n" permitido utilizar o nome da página do " possível carregar o tema '%(theme_name)s'!" possível criar uma página sem nome. Por favor, especifique o nome da " possível editar versões antigas!" possível embeber o objecto com o formatador escolhido" possível encontrar o ficheiro " possível exibir este anexo." possível ter argumentos sem nome associado em argumentos com nome" possível, por favor instale as Docutils." suportado em servidores autónomos." suportado" suportado. Pode desejar eliminar uma das páginas para as " suportado." um ficheiro .zip." um pacote MoinMoin." um utilizador:" uma boa ideia mudar a senha para uma senha nova e " utilizado." License: UNKNOWN FIXME Files: MoinMoin/i18n/pt-br.MoinMoin.po Copyright: %(bumptime)s que você está editando " %(bumptime)s." a primeira sincronização entre o wiki local e o remoto para a página " aceito. Você pode querer excluir uma das página para que seja " considerada para os resultados de busca!" controlado pela associação ao grupo da página de grupo " desconhecida." imutável!" inválida!" inválido. Por favor veja HelpOnSearching " inválido." muito grande, tente um mais curto." o seu usuário, digite a senha abaixo para associar o nome ao seu\n" o único usuário" permitido." por %(mins_valid)d minuto(s)." possível copiar a página devido a um erro no sistema de arquivos: %s" possível criar uma página sem um nome. Por favor, especifique um nome " possível editar revisões antigas!" possível mostrar o anexo diretamente na " possível remover o acompanhamento de expressão regular!" possível renomear página devido a um erro no sistema de arquivos: %s" possível salvar esta página porque\"%(content)s\" não " possível, por favor instale o " requerido" salvo para você sempre que " suportado." um arquivo .zip." um arquivo de pacote do MoinMoin." um nome de usuário válido, escolha outro." uma OpenID válida" válida." License: UNKNOWN FIXME Files: MoinMoin/i18n/gl.MoinMoin.po Copyright: %(bumptime)s." '''%(size)d''' bytes aquí e prema en EditarTexto " descoñecido e non se pode amosar este anexo." empregado por outra persoa." erróneo" o CSS, dixea en branco)" posíbel crear unha páxina sen nome. Por favor, dalle un nome á páxina." sensíbel a maiúsculas e minúsculas" soportada en servidores de tipo " unha boa idea, por suposto, " License: UNKNOWN FIXME Files: MoinMoin/i18n/fr.MoinMoin.po Copyright: %(draft_timestamp_str)s).''' Un brouillon est " (%(localname)s)." accord." ajout pour vous." annule." aucun rsultat. Veuillez la modifier " cette page !" chang, vous pouvez vous connecter." d'diter ou de prvisualiser cette page pour la " de l'utilisateur" depuis (p. ex. « 2 weeks before »)" depuis le brouillon des modifications" dplace vers « " dtruite, alors que sa version locale a t " envoy." est incorrect." fusionne et cette fusion a produit des conflits." il y a %(mins_ago)d minutes " introduits sur sa version " le contenu de cette page, elle n'a pas t " modifie par %(editor)s :\n" n'a pas t reconnue. En " obtenue. Au " par un autre compte." possible d'ajouter pour vous un lien vers cette page." possible de vous abonner à cette page." pour changer votre mot de passe. Le courrier contiendra\n" pour se dsabonner." pour supprimer un lien rapide." qu'un code de rcupration du mot de passe\n" que vous contrôlez l'identit dont l'URL est %s (si vous\n" renomm en local. Cela n'est pas pris en charge pour " renomme « %(pagename)s » par %(editor)s :\n" renomme" renomme. " restaure" saute du fait d'un conflit local ou distant non rsolu." supprims." trouv." trouve !\n" un dpassement de la taille totale maximale des pièces-jointes par " un dpassement du nombre maximal de pièces-jointes par page " votre mot de passe, donnez votre adresse de courrier \n" crass : %(filelist)s." à copier cette page !" à crer une page complmentaire" à dcompresser les pièces jointes de cette page." à installer des fichiers." à joindre un fichier à cette page." à remplacer les pièces jointes de cette page." à restaurer une version antrieure de cette page !" à raliser cette action." à supprimer les pièces jointes de cette page." à utiliser l'action %(action_name)s sur cette page." à utiliser l'action %(actionname)s sur cette page." à voir les pièces jointes de cette page." à votre identifiant OpenID." à vous abonner à une page que vous ne pouvez pas " — elles " License: UNKNOWN FIXME Files: MoinMoin/i18n/it.MoinMoin.po Copyright: %(owner)s la sta modificando." agli amministratori è " alcuni file non " c'è un conflitto di modifiche, locale o remoto, " eccederebbe il " eccederebbe lo " ha dei tipi MIME differenti " il nome del nuovo allegato è vuoto." il nome della nuovo pagina è vuoto." la pagina personale come informazione sull'autore" manca il diritto di scrivere sulla pagina locale." non è consentito modificarla " License: UNKNOWN FIXME Files: MoinMoin/i18n/he.MoinMoin.po Copyright: %(username)s\n" OpenID נוחכי." {{{\"%s\"}}} אינו חוקי. ראה HelpOnSearching למידע נוסף." ב-scp, ftp, " בHomepageGroupsTemplate ליצירת\n" במבנה ם ל FirstnameLastname)" במנק המתמ האינטראקטיבי בכדי להתמ בפעולה %(actionname)s!" בם InterWiki פנימי ונה (%(remotename)s) מהם ציינת " בם קובץ תקין עבור הקובץ המצורף '%(filename)s'." צורף לדף \"%(pagename)s\" באתר \"%(sitename)s\"" License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/00_needs_fixing.zip Copyright: '%(theme_name)s' لم تحَمل." (como sempre) constituído por 2 partes, como `MODELO `. Utilizamos a parte do "nome verdadeiro" para compor o modelo do nome da página de destino (pode conter caracteres especiais, espaços em branco, etc.) e a parte do endereço de correio electrónico para enviar a mensagem para o destino correcto. A forma mais simples de um modelo de nome de página de destino um nome de página como PáginaDeTestesWiki 1. Verifique se um dos endereços de destino da mensagem (para, cc, ...) está no mail_import_wiki_addrs a primeira sincronização entre o wiki local e o remoto para a página " aconselhável que um utilizador torne o wiki inutilizável para todos configurada para um novo utilizador ao criar uma conta. As contas existente não são afectadas por esta opção, enquanto que as alterações na navi_bar as afectam sempre. As ligações rápidas pr-definidas podem ser removidas pelo utilizador no menú das preferências do utilizador, enquanto que as definições da navi_bar não. || configurada para um novo utilizador ao criar uma conta. || của trang này!" en langue française, nous vous recommandons de modifier l'expression rationnelle utilise pour identifier les modèles en ajoutant le paramètre suivant à votre fichier {{{wikiconfig.py}}} : inválido. Por favor veja HelpOnSearching " necessário que o endereço de correio electrónico seja único e válido o prefixo dos ficheiros de sessão PHP particularmente útil se não quiser que as páginas remotas ocupem o seu namespace global. Pode utilizá-lo para agregar sítios wiki diferentes no seu wiki local sensíbel a maiúsculas e minúsculas" significa''? suportado) uma funcionalidade opcional que apenas funcionará quanto o suporte de correio electrónico estiver activo para este wiki. Para mais informações, consulte o tópico AjudaNaConfiguração/CorreioElectrónico uma palavra que utiliza palavras capitalizadas. O NomeDeWiki torna-se automaticamente uma hiperligação para a página com o esse nome. As letras maiúsculas e minúsculas são determinadas pela configuração. A configuração por omissão deve funcionar com caracteres UTF-8 (os dígitos são considerados como caracteres minúsculos) utilizada uma fonte de letra maior, por isso não coloque muita informação num diapositivo בם קובץ תקין עבור הקובץ המצורף '%(filename)s'." צורף לדף \"%(pagename)s\" באתר \"%(sitename)s\"" ل\"%(pagename)s\"" لأن \"%(content)s\" غير مسموح به في هذا الويكي." License: UNKNOWN FIXME Files: MoinMoin/i18n/cs.MoinMoin.po Copyright: ''<> /!\\ Měli byste " wiki." z kategorií" z wiki a zkuste znovu." z wiki nebo sjednoťte mimetype." změny nejsou uloženy!" změny!\n" zvolit, jak se budou tyto stránky zobrazovat ostatním uživatelům.\n" záznamy v logu." části" čílso, ne \"%s\"" číslo \"%(arg)s\" po \"%(key)s\"" číslo \"%(key)s\" před \"%(token)s\"" číslo, ne \"%s\"" žádoucí stránky." License: UNKNOWN FIXME Files: MoinMoin/i18n/ko.MoinMoin.po Copyright: ''<>'''''굵게'''<> /!\\ 해당 암호는 특정 관" License: UNKNOWN FIXME Files: MoinMoin/i18n/sk.MoinMoin.po Copyright: ''<%(count)s prílohy." CSS)" OpenID boli odstránen." \"%(wanted)s\" po \"%(key)s\", získán \"%(token)s\"" ako ASCII znaky z mena súboru a skúste " balíčky pre '%s'" cel číslo \"%(arg)s\" po \"%(key)s\"" cel číslo \"%(key)s\" pred \"%(token)s\"" dolu v zozname súborov.\n" editovacie konflikty!" heslo (opakovanie)" heslo dvakrát." heslo" heslo." informácie o stránke" informácie" meno a kliknite na '''Mail me my account data'''.\n" meno prílohy" meno stránky" meno súboru pre prílohu „%(filename)s“." meno súboru: „%s“ !" meno „%(filename)s“ ; %(bytes)d " meno „%(filename)s“) už existuje." meno" meno, zvoľte si in." meno." meno\n" na uvedenú mailovú adresu." nahrať!" nastavenia oznamov!" nastavenia sú uložen!" nemusia " nižšie:" nájsť v slovníku %(totalwords)d " od '''%s'''!" podporovan smery sú BOTH (oba) a DOWN (dolu)." položky; ## číslovan " používať bezmenn argumenty po argumentoch s menami" požadovan stránky." pre iný účet." premenovať kvôli chybe súborovho systmu: %s." premenovať stránku bez udania novho mena." pridať rýchly odkaz na túto stránku pre vás." prihlasovacie meno „{{{%s}}}“.\n" práva ACL na tejto stránke, pretože nemáte práva " práva." prílohy uložen na %(pagename)s" písmo'''<> a kurzíva''<>;\n" písmo'''<>; <>'''''tučná " rozdiely!\n" sa na ňu dostali prostredníctvom " slová alebo sa obráťte na HelpOnSearching. %s" slová do slovníka" slová/termíny" ste urobili. Osobitne si ceníme, že venujete " stránky ako „%s“" stránky v tejto wiki." stránky vo Vašich nastaveniach." stránky" synchronizovať. Vzdialená stránka bola premenovaná. " systmov položky" súbory by " súbory nie sú " súbory" udalosti" užívateľsk meno alebo heslo." v balíčku." verzie sa editovať nedajú!" voľby" vyhľadávanie „%s“ " vyhľadávanie: „%s“" vytvoriť stránku bez udania mena. Prosím, zadajte meno stránky." výrazy zadať do fultextovho vyhľadávate, kliknite sem!" výsledky v tejto wiki. <
    >" z „ %(oldpagename)s “." zaregistrovať Vás na odoberanie tejto stránky." zlúčiť, pretože nemáte oprávnenie na " zmeny sa neuložili!" zmeny, môžete použiť funkciu„Nahrajte " zo stránky „%(page)s“" zobraziť jeho obsah na stránke." zobraziť reStructured text, prosím, nainštalujte si Docutils." zrušiť odoberanie definovan regulárnym výrazom!" záznamy v logu" časti sa označujú takto." čiarkami):" číslo a nie „%s“" License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Czech--all_pages.zip Copyright: ''rychl odkazy'' 1. Klikněte na "Create new page" 1. Upravte svoji stránku a uložte ji 1. Zvolte z nabízených šablon buňky == chyby v programu další jen na sv pokusy.''' fráze" i kotevní odkazy: i uživatelům textových prohlížečů (MeatBall:LynxFriendly) a barvoslepým (MeatBall:ColourBlind). Pokud si stránku s InterWiki odkazem prohlížíte pomocí grafickho prohlížeče, poznáte, na kterou wiki odkazuje. MIMOCHODEM, důvodem proč byla zvolena ikonka kterou vidíte je skutečnost, že na vytváření stránek na wiki většinou spolupracuje několik autorů je na konec názvu stránky připojit "'''Template'''". Stránka se šablonou pak bude přidána do seznamu šablon, který se zobrazuje při pokusu o navštívení neexistující stránky. Například NonExistentHelpPage obsahuje odkaz na HelpTemplate, jehož aktivací dojde k nahrání obsahu HelpTemplate do okna editoru je sice z jiných stránek odkazováno, ale doposud je nikdo nevytvořil již dlouho nebyly upravovány jmno (motiv Modern tak činí na vršku stránky), jednoduše na něj klikněte jsou nahrazeny zvláštními hodnotami v okamžiku uložení stránky. V náhledu se však nahrazen neobjeví! nevedou žádn odkazy obsahují odkaz na tuto stránku. Tohle funguje dokonce i pro stránky, kter nebyly vytvořeny odkazují na !WindowsPage otázky (sami se můžete ptát na MoinMoin:MoinMoinQuestions) po nastavení záložky (kliknutí zobrazí změny)|| po nastavení záložky|| použít závorky setkat s autorem !MoinMoinu: seznamy jsou přečíslovány stránky = stránky do textovho pole a klikněte "<>" stránky obsahující oboje "linux" i "xmms" stránky). Na konci vyhledávací stránky vpište do políčka carefully sv uživatelsk jmno '''<>''' box. Přesvědčte se, že máte velká písmena tam a jen tam, kam patří stránky|| umístit před ostatní příkazy uživatele a ty, kteří neradi čtou dokumentaci: vyhledávání je dostupn na NajdiStranku výchozí body: wiki značky wiki, použijte jednoduše její InterWiki jmno, těsně za něj napiště dvojtečku a vzápětí jmno stránky číslo ve [[WikiNazev | WikiNázvech číslování nadpisů může být ovládáno pomocí procesorov instrukce `#pragma section-numbers` (viz. HelpOnProcessingInstructions) License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Czech--essential_pages.zip Copyright: ''rychl odkazy'' HTML == buňky == citace a odsazování = ctěn jmno a pokud chcete, aby vás ostatní mohli kontaktovat přímo i svůj e-mail. Chcete li, můžete přidat další osobní informace. Během psaní používajte tlačítka '''<>''' a '''<>'''. Nakonec klkněte na '''<>''' abyste stránku uložili je sice z jiných stránek odkazováno, ale doposud je nikdo nevytvořil je součástí tmatu již existující stránky již dlouho nebyly upravovány jmno (motiv Modern tak činí na vršku stránky), jednoduše na něj klikněte najdete v rozbalovacích nabídkách umístěných v editačních pruzích nahoře a dole na stránce: nevedou žádn odkazy obsahují odkaz na tuto stránku. Tohle funguje dokonce i pro stránky, kter nebyly vytvořeny odkazy po nastavení záložky (kliknutí zobrazí změny)|| po nastavení záložky|| pomocí můžete přílohu pomocí odkazu nahrát.) použít pro věci ''pro sebe'' (a třeba i pro ostatní), jako: pro publikaci informací ''o sobě'', jako například: seznamy == shodou okolností obsahují jin sekvence, například čtyři apostrofy pro kurzívu mohou být interpretovány jako tři apostrofy začínající tučn písmo a jeden další samostatný apostrof) ve Wiki''''''Nazvu: {{{Wiki''''''Nazev}}}, {{{Wiki``Nazev}}}, {{{Wiki~++~Nazev}}} stránky "patří" jednotlivým osobám a neměly by být upravovány ostatními, s výjimkou zanechání vzkazu. Zanechat vzkaz lze přidáním zprávy na konec stránky. Zprávu je dobr oddělit čtyřmi pomlčkami, asi takto: stránky). Na konci vyhledávací stránky vpište do políčka carefully sv uživatelsk jmno '''<>''' box. Přesvědčte se, že máte velká písmena tam a jen tam, kam patří stránky|| tyto odkazy: verze jsou automaticky zálohovány vám umožní automaticky generovat indexy souvisejících částí wiki (viz HelpOnMacros) ze dvou nebo více slov, kde každ samostatn podslovo začíná velkým písmenem - !CammelCase změně odebíran stránky číslo ve [[WikiNazev | WikiNázvech License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Czech--essential_system_pages.zip Copyright: ''rychl odkazy'' je sice z jiných stránek odkazováno, ale doposud je nikdo nevytvořil již dlouho nebyly upravovány jmno (motiv Modern tak činí na vršku stránky), jednoduše na něj klikněte nevedou žádn odkazy obsahují odkaz na tuto stránku. Tohle funguje dokonce i pro stránky, kter nebyly vytvořeny po nastavení záložky (kliknutí zobrazí změny)|| po nastavení záložky|| stránky). Na konci vyhledávací stránky vpište do políčka carefully sv uživatelsk jmno '''<>''' box. Přesvědčte se, že máte velká písmena tam a jen tam, kam patří stránky|| číslo ve [[WikiNazev | WikiNázvech License: UNKNOWN FIXME Files: wiki/config/more_samples/ui_wikiconfig_snippet Copyright: (depends on theme) License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/French--essential_system_pages.zip Copyright: (pour les thèmes ''modern'' et ''modernized'', regardez en haut de la page) cre.''' de plusieurs mots attachs, chacun commençant par une majuscule, comme par exemple InformationsSystème. Les Noms''''''Wiki deviennent automatiquement des liens pointant vers la page correspondante. Les caractères considrs comme minuscules et majuscules dpendent du paramtrage du wiki. Les paramètres par dfaut devraient fonctionner pour le codage Unicode UTF-8 (les chiffres sont considrs comme des minuscules) de quatre tirets, comme ceci : directement. Vous pouvez galement, si vous le souhaitez, indiquer d'autres informations à votre sujet. Utilisez les boutons '''<>''' et '''<>''' pour vrifier votre travail, puis cliquez sur le bouton '''<>''' pour sauvegarder la page votre [[PagePersonnelle|page personnelle License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/French--essential_pages.zip Copyright: (pour les thèmes ''modern'' et ''modernized'', regardez en haut de la page) de quatre tirets, comme ceci : directement. Vous pouvez galement, si vous le souhaitez, indiquer d'autres informations à votre sujet. Utilisez les boutons '''<>''' et '''<>''' pour vrifier votre travail, puis cliquez sur le bouton '''<>''' pour sauvegarder la page en montrant d'abord le balisage wiki, puis son rendu effectif. Vous y trouverez galement des liens vers les pages d'aide correspondantes. Attention, certaines fonctionnalits dpendent du paramtrage de votre wiki License: UNKNOWN FIXME Files: contrib/images/logos/santa2-moin.png Copyright: 2005, (using The GIMP, it's great stuff.)pIDATx{kp׹޳@$`cp 1q#|RSgNzv鏓f&3=IҺә{Rb'ZDZblcq0HBwi}n{ #;͖^ߺ<ﻞꢦ:!uR Hj!jr[EΫRq!'HGVϓΞ cFi ՠtFiBJj@SH< LI>)"DPY&SvL)ݪ1 kՐJYR)K@)c!DB@>" stránky obsahující oboje "linux" i "xmms" stránky se zobrazí seznam stránek, kter na ni odkazují. Odkazy na stránky kter zatím neexistují jsou zabrazeny červeně nebo uvozeny otazníkem: kliknutím na takový odkaz je možn stránku vytvořit. Toto je jeden ze způsobů, jak vytvořit novou stránku: přidat nový WikiNazev na existující stránku, nechat si zobrazit náhled, kliknout na nový odkaz a vytvořit stránku (více detailů viz NapovedaTvorbaStranky) stránky, například `http://example.com/wiki/MyNewPage` umístit před ostatní příkazy v jedn vyhledávací výrazy platí pro vyhledávání v textu a v názvech stránek i v parametrech maker {{{FullSearch}}} a {{{PageList}}} vyhledávání je dostupn na NajdiStranku vytváření sub stránek. Více informací o makru `NewPage` obsahuje HelpOnMacros výrazy výsledek, který zobrazí wiki. Navíc zde naleznete odkazy na související stránky nápovědy. Mějte na paměti, že někter funkce mohou záviset na vašem nastavení wiki značky zapsat výraz ve dvojitých nebo jednoduchých úvozovkách změny při upgradování wiki instancí. Prosím dodržujte zaběhlou strukturu stránek nápovědy pokud chcete upravovat stráky na Moin''''''Master. Před jakýmikoliv většími úpravami je nejdříve prodiskutujte na mailing listu nebo Moin''''''Moin wiki.''-~ úrovně nadpisů a výše (tzn. úroveň 1 a 2 budou číslovan, úrovně 3, 4 a 5 nebudou) úrovně nadpisů: číslování nadpisů == číslování nadpisů může být ovládáno pomocí procesorov instrukce `#pragma section-numbers` (viz. HelpOnProcessingInstructions) číslování nadpisů na t stránce License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Czech--optional_pages.zip Copyright: 1. Editujte novou stránku a nakonec ji uložte 1. Klikněte na "Create new page" 1. Upravte svoji stránku a uložte ji 1. Zvolte z nabízených šablon InterWiki zkratky přidáte jednoduše na stránce InterWikiMap Wikipedii, svobodn encyklopedii a jejich substituce při ukládání stránky = byly naposledy upravovány chyby v programu další jen na sv pokusy.''' fráze" funkce. Budeme rádi hledání v textu prohledává tak tituly stránek. Výsledky v titulech mají větší váhu než výsledky v textu i kotevní odkazy: i uživatelům textových prohlížečů (MeatBall:LynxFriendly) a barvoslepým (MeatBall:ColourBlind). Pokud si stránku s InterWiki odkazem prohlížíte pomocí grafickho prohlížeče, poznáte, na kterou wiki odkazuje. MIMOCHODEM, důvodem proč byla zvolena ikonka kterou vidíte je skutečnost, že na vytváření stránek na wiki většinou spolupracuje několik autorů je na konec názvu stránky připojit "'''Template'''". Stránka se šablonou pak bude přidána do seznamu šablon, který se zobrazuje při pokusu o navštívení neexistující stránky. Například NonExistentHelpPage obsahuje odkaz na HelpTemplate, jehož aktivací dojde k nahrání obsahu HelpTemplate do okna editoru jmno), záloha textu, který editujete, se při každm uložení nebo náhledu stránky zazálohuje do `UserName/MoinEditorBackup`. Pokud se cokoliv stane s prohlížečem během úprav stránky, lze použít tuto zálohu. Náhled je užitečný! jsou na wiki k nalezení. Pro výřečnější přehled stránek nápovědy kde každá je uvedena stručným popisem navštivte NapovedaObsah jsou nahrazeny zvláštními hodnotami v okamžiku uložení stránky. V náhledu se však nahrazen neobjeví! jsou součástí názvů stránek jsou zvláště vhodným studijním materiálem pro nov uživatele. Pro rychl seznámení s MoinMoin značkovacím jazykem navštivte SyntaxReference moudrosti můžete použít na tto wiki (směrodatná editovatelná verze je umístěna na MoinMaster:InterWikiMap): na TERM odkazují na stránce Home``Page``Name/My``Dict. Stačí tam vypsat vlastní slovník (podle HelpOnDictionaries) s proměnnými a jejich hodnotami na tyto neexistující odkazují: nenahradí. Stejnětak se nenahradí v náhledech stránek. Nahrazování proměnných je jinak globální a děje se kdekoliv na stránce, včetně zobrazení zdrojovho kódu, komentářů, instrukcí pro zpracování a ve všech "zvláštních" oblastech, kde by se mohlo předpokládat, že tomu tak není odkazují na !WindowsPage otázky (sami se můžete ptát na MoinMoin:MoinMoinQuestions) použít více výrazů (slov) oddělených mezerou použít závorky počítadlo, kter každý požadavek na stránku bere jako její zobrazení pro šablony) || HelpTvorbaStranky || prostředí, kde je kladen důraz na snadný přístup k informacím a k jejich modifikaci psací stroj` (záleží na konfiguraci) písmo''' {{{psací stroj}}} rozšíří funkčnost vaší MoinMoin wiki setkat s autorem !MoinMoinu: seznamy jsou přečíslovány součástí InterWiki prostoru, což znamená, že je možn jednoduše odkazovat na množství informací dostupných na jiných veřejných wiki stránkách stránky stránky = stránky do svho navigačního pruhu. Viz seznam Pohotových odkazů v nastavení uživatele stránky do textovho pole a klikněte "<>" stránky obsahující oboje "linux" i "xmms" stránky se zobrazí seznam stránek, kter na ni odkazují. Odkazy na stránky kter zatím neexistují jsou zabrazeny červeně nebo uvozeny otazníkem: kliknutím na takový odkaz je možn stránku vytvořit. Toto je jeden ze způsobů, jak vytvořit novou stránku: přidat nový WikiNazev na existující stránku, nechat si zobrazit náhled, kliknout na nový odkaz a vytvořit stránku (více detailů viz NapovedaTvorbaStranky) stránky, například `http://example.com/wiki/MyNewPage` umístit před ostatní příkazy uživatele a ty, kteří neradi čtou dokumentaci: v jedn vyhledávací výrazy platí pro vyhledávání v textu a v názvech stránek i v parametrech maker {{{FullSearch}}} a {{{PageList}}} vyhledávání je dostupn na NajdiStranku vytváření sub stránek. Více informací o makru `NewPage` obsahuje HelpOnMacros výchozí body: výrazy wiki ani nemůže odkaz na zatím neexistující stránku vykreslit jinak wiki značky wiki, použijte jednoduše její InterWiki jmno, těsně za něj napiště dvojtečku a vzápětí jmno stránky zapsat výraz ve dvojitých nebo jednoduchých úvozovkách změny při upgradování wiki instancí. Prosím dodržujte zaběhlou strukturu stránek nápovědy pokud chcete upravovat stráky na Moin''''''Master. Před jakýmikoliv většími úpravami je nejdříve prodiskutujte na mailing listu nebo Moin''''''Moin wiki.''-~ úrovně nadpisů a výše (tzn. úroveň 1 a 2 budou číslovan, úrovně 3, 4 a 5 nebudou) úrovně nadpisů: číslování nadpisů == číslování nadpisů může být ovládáno pomocí procesorov instrukce `#pragma section-numbers` (viz. HelpOnProcessingInstructions) číslování nadpisů na t stránce License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Czech--optional_help_pages.zip Copyright: 1. Editujte novou stránku a nakonec ji uložte 1. Klikněte na "Create new page" 1. Upravte svoji stránku a uložte ji 1. Zvolte z nabízených šablon a jejich substituce při ukládání stránky = chyby v programu fráze" funkce. Budeme rádi hledání v textu prohledává tak tituly stránek. Výsledky v titulech mají větší váhu než výsledky v textu je na konec názvu stránky připojit "'''Template'''". Stránka se šablonou pak bude přidána do seznamu šablon, který se zobrazuje při pokusu o navštívení neexistující stránky. Například NonExistentHelpPage obsahuje odkaz na HelpTemplate, jehož aktivací dojde k nahrání obsahu HelpTemplate do okna editoru jmno), záloha textu, který editujete, se při každm uložení nebo náhledu stránky zazálohuje do `UserName/MoinEditorBackup`. Pokud se cokoliv stane s prohlížečem během úprav stránky, lze použít tuto zálohu. Náhled je užitečný! jsou na wiki k nalezení. Pro výřečnější přehled stránek nápovědy kde každá je uvedena stručným popisem navštivte NapovedaObsah jsou nahrazeny zvláštními hodnotami v okamžiku uložení stránky. V náhledu se však nahrazen neobjeví! jsou součástí názvů stránek jsou zvláště vhodným studijním materiálem pro nov uživatele. Pro rychl seznámení s MoinMoin značkovacím jazykem navštivte SyntaxReference na TERM odkazují na stránce Home``Page``Name/My``Dict. Stačí tam vypsat vlastní slovník (podle HelpOnDictionaries) s proměnnými a jejich hodnotami nenahradí. Stejnětak se nenahradí v náhledech stránek. Nahrazování proměnných je jinak globální a děje se kdekoliv na stránce, včetně zobrazení zdrojovho kódu, komentářů, instrukcí pro zpracování a ve všech "zvláštních" oblastech, kde by se mohlo předpokládat, že tomu tak není odkazují na !WindowsPage otázky (sami se můžete ptát na MoinMoin:MoinMoinQuestions) použít více výrazů (slov) oddělených mezerou použít závorky pro šablony) || HelpTvorbaStranky || prostředí, kde je kladen důraz na snadný přístup k informacím a k jejich modifikaci rozšíří funkčnost vaší MoinMoin wiki setkat s autorem !MoinMoinu: součástí InterWiki prostoru, což znamená, že je možn jednoduše odkazovat na množství informací dostupných na jiných veřejných wiki stránkách stránky = stránky do textovho pole a klikněte "<>" stránky obsahující oboje "linux" i "xmms" stránky se zobrazí seznam stránek, kter na ni odkazují. Odkazy na stránky kter zatím neexistují jsou zabrazeny červeně nebo uvozeny otazníkem: kliknutím na takový odkaz je možn stránku vytvořit. Toto je jeden ze způsobů, jak vytvořit novou stránku: přidat nový WikiNazev na existující stránku, nechat si zobrazit náhled, kliknout na nový odkaz a vytvořit stránku (více detailů viz NapovedaTvorbaStranky) stránky, například `http://example.com/wiki/MyNewPage` umístit před ostatní příkazy v jedn vyhledávací výrazy platí pro vyhledávání v textu a v názvech stránek i v parametrech maker {{{FullSearch}}} a {{{PageList}}} vyhledávání je dostupn na NajdiStranku vytváření sub stránek. Více informací o makru `NewPage` obsahuje HelpOnMacros výrazy wiki značky zapsat výraz ve dvojitých nebo jednoduchých úvozovkách změny při upgradování wiki instancí. Prosím dodržujte zaběhlou strukturu stránek nápovědy pokud chcete upravovat stráky na Moin''''''Master. Před jakýmikoliv většími úpravami je nejdříve prodiskutujte na mailing listu nebo Moin''''''Moin wiki.''-~ úrovně nadpisů a výše (tzn. úroveň 1 a 2 budou číslovan, úrovně 3, 4 a 5 nebudou) úrovně nadpisů: číslování nadpisů == číslování nadpisů může být ovládáno pomocí procesorov instrukce `#pragma section-numbers` (viz. HelpOnProcessingInstructions) číslování nadpisů na t stránce License: UNKNOWN FIXME Files: docs/licenses/modernized.icons.txt Copyright: 6. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Act (or the equivalent in other jurisdictions) Act (or the equivalent in other jurisdictions) in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit owner under law or other applicable laws License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/draw/PmWikiDraw.jar Copyright: .`pOP b#XE8i|g@e< s|E_/JxHsټn hڲGҺ v6׽%kkeY{_{^# F~J7m{Fw_~`M License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/guide/contents/copyright.html Copyright:

    by License: UNKNOWN FIXME Files: MoinMoin/support/pygments/formatters/rtf.py Copyright: 2006-2010, the Pygments team, see AUTHORS > 128: License: UNKNOWN FIXME Files: MoinMoin/util/thread_monitor.py Copyright: 2006, Alexander Schremmer License: UNKNOWN FIXME Files: MoinMoin/support/htmlmarkup.py Copyright: 2003-2006, Edgewall Software 2006, Alexander Schremmer License: UNKNOWN FIXME Files: MoinMoin/_tests/test_sourcecode.py Copyright: 2006, Armin Rigo (originally only testing for tab chars) 2007, adapted and extended (calling the PEP8 checker for most stuff) by Thomas Waldmann License: UNKNOWN FIXME Files: MoinMoin/i18n/vi.MoinMoin.po Copyright: Ba" Hai" bởi vì việc đó sẽ xoá toàn bộ những thay đổi\n" của trang này!" khác" License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/skins/office2003/fck_strip.gif Copyright: C &d%-YI*f2sdPdnk%r P;D'a sC#x#2`Ԡ%HCpPAj4 bGXM3|@~`"h fH=6 .hI C`J`;p2i %=$J2\ L-TtH ҋ|x H`C}̑C,! %@cEC*T4Z0R1Spj>p#2D S License: UNKNOWN FIXME Files: contrib/TWikiDrawPlugin/src/CH/ifa/draw/contrib/ChopPolygonConnector.java Copyright: 1996-1997, Erich Gamma License: UNKNOWN FIXME Files: debian/moin.1.template Copyright: 2010, Frank Lin PIAT License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/tounge_smile.gif Copyright: F818J(Y*S M4U+3N$հ?{}"J d_. $'g}Z License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/modern/img/admon-tip.png Copyright: F_=͆u>Ne?p#RS ~>Nndt7:;Z-[L?8=@ɴ\}V? z;A M_ xkܤ k#@3,^,11N%ٺd,jR?g%X4t#9t Y4| License: UNKNOWN FIXME Files: MoinMoin/support/pygments/cmdline.py Copyright: 2006-2008, Georg Brandl.' % __version__ 2006-2010, the Pygments team, see AUTHORS License: UNKNOWN FIXME Files: MoinMoin/support/werkzeug/debug/shared/FONT_LICENSE Copyright: HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY Holder(s) and any contributor to the Holder(s) or (iii) with Holder(s)" refers to all individuals and companies who have a Modified Versions which are not Substantially Changed must be law, except executing it on a ownership of the Font Software License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Czech--essential_help_pages.zip Copyright: HTML == buňky == buňky || citace a odsazování = seznamy == výsledek, který zobrazí wiki. Navíc zde naleznete odkazy na související stránky nápovědy. Mějte na paměti, že někter funkce mohou záviset na vašem nastavení License: UNKNOWN FIXME Files: MoinMoin/support/flup/server/paste_factory.py Copyright: 2005, Ian Bicking and contributors; written for Paste (http://pythonpaste.org) License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Czech--optional_system_pages.zip Copyright: InterWiki zkratky přidáte jednoduše na stránce InterWikiMap Wikipedii, svobodn encyklopedii byly naposledy upravovány další jen na sv pokusy.''' i kotevní odkazy: i uživatelům textových prohlížečů (MeatBall:LynxFriendly) a barvoslepým (MeatBall:ColourBlind). Pokud si stránku s InterWiki odkazem prohlížíte pomocí grafickho prohlížeče, poznáte, na kterou wiki odkazuje. MIMOCHODEM, důvodem proč byla zvolena ikonka kterou vidíte je skutečnost, že na vytváření stránek na wiki většinou spolupracuje několik autorů moudrosti můžete použít na tto wiki (směrodatná editovatelná verze je umístěna na MoinMaster:InterWikiMap): na tyto neexistující odkazují: počítadlo, kter každý požadavek na stránku bere jako její zobrazení psací stroj` (záleží na konfiguraci) písmo''' {{{psací stroj}}} seznamy jsou přečíslovány stránky stránky do svho navigačního pruhu. Viz seznam Pohotových odkazů v nastavení uživatele uživatele a ty, kteří neradi čtou dokumentaci: výchozí body: wiki ani nemůže odkaz na zatím neexistující stránku vykreslit jinak wiki, použijte jednoduše její InterWiki jmno, těsně za něj napiště dvojtečku a vzápětí jmno stránky License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/modernized/img/moin-news.png Copyright: 2003, Jakub 'jimmac' Steiner'3XIDAT8˥N0?C!cv:G*ɔW*P-މ(D_!c Md4j,|lbj!Os l6'M'Emi=r P蕹=|Ja<PElڵ6hoZ@e& RFT+qxWCjT License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/modernized/img/moin-unsubscribe.png Copyright: 2003, Jakub 'jimmac' Steiner'3X}IDAT8ՒJ[Q{i81iq lu +SNgJ bBHL3OqQq͆aVpzrI5D@AE ~QDt/2`IUc!s.ZkDkm<=9JY8bZs={B*ir^~ mQ9zUEU-*Iee)Ëu6|?/i492ïYm0lnyN"rpxNj|ȫmV+SvfɗgV~wtO$I1S9pȏ+&ww޼sqy @ua_lnvYmm677Q_k<w> yIENDB` License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/modernized/img/moin-www.png Copyright: 2004, Jakub Steiner License: UNKNOWN FIXME Files: MoinMoin/support/werkzeug/debug/shared/jquery.js Copyright: 2010, John Resig 2010, The Dojo Foundation License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/AnyWikiDrawForPmWiki.jar.pack.gz Copyright: Mmyu﫭[Vs'ȗ= License: UNKNOWN FIXME Files: contrib/TWikiDrawPlugin/src/CH/ifa/draw/appframe/LightweightDrawApplet.java Copyright: 2001, Motorola - License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/applets/TWikiDrawPlugin/twikidraw.jar Copyright: N *jiPc瘛ft^ SPj ѕW3ݤ L3 u|Cjb^@^WJ2ƕY0NI73C*yAƧjȄY%M4R}ibT5O{5[ 6%QDW:}F@S,Wԕe`В^ӐfW C in[2һ'/ }Y; V ٹE*pEM/b۬9޼O1tc`trN4(i˶tni License: UNKNOWN FIXME Files: MoinMoin/web/_fallback_cgi.py Copyright: 2003-2006, Phillip J. Eby License: UNKNOWN FIXME Files: MoinMoin/support/HeaderFixed.py Copyright: 2002-2004, Python Software Foundation License: UNKNOWN FIXME Files: docs/licenses/LICENSE.Python Copyright: 1991, - 1995, Stichting Mathematisch Centrum Amsterdam law, and, to the extent such License: UNKNOWN FIXME Files: wiki/server/test.wsgi Copyright: 2008, Thomas Waldmann License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/French--all_help_pages.zip Copyright: [[AideDesAnalyseurs#L_analyseur_highlight|highlight d'une ligne blanche) License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/French--all_pages.zip Copyright: [[AideDesAnalyseurs#L_analyseur_highlight|highlight d'une ligne blanche) le paramètre `wikis` du fichier `farmconfig.py` (voir ci-dessus), nous nous contenterons ci-dessous de vous donner quelques conseils qui vous faciliteront le travail. Pensez galement à consulter les astuces de paramtrage d'un seul wiki qui vous expliqueront les règles d'hritage des paramètres par celui-ci. Et vrifiez que votre diteur est correctement paramtr.''' License: UNKNOWN FIXME Files: MoinMoin/i18n/mn.MoinMoin.po Copyright: \"%(token)s\"" ХэрэглэгчийнТохиргоо -нд Abonnement-ын Ердийн утгыгрчилн үү." License: UNKNOWN FIXME Files: MoinMoin/i18n/sv.MoinMoin.po Copyright: att välja ett nytt\n" License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/French--admin_pages.zip Copyright: au moment de son incription et obtiendra en retour une fois après avoir cliquer sur le bouton un courriel avec toutes les informations ncessaire pour se reconnecter avec Moin''''''Moin est suffisant comme URL de base pour les icônes, les feuilles de style CSS, et cætera — ce nom contient la version de Moin''''''Moin, et change pour chaque version. Ce paramètre remplace l'option `url_prefix = '/wiki'`, qui est maintenant dconseille et qui pouvait parfois porter à confusion. || par celui-ci. Et vrifiez que votre diteur est correctement paramtr.''' parcouru par un analyseur syntaxique pour ce fichier. La valeur par dfaut est uniquement adapte aux langues utilisant des caractères latins (« langues occidentales »). Reportez-vous à la section [[#parametrage-international|Paramtrage international pour le dveloppement de Moin''''''Moin. || pour les ModificationsRcentes. || si l'utilisateur n'a pas dfini de prfrence ou s'il a choisi le format de date « par dfaut »). || License: UNKNOWN FIXME Files: MoinMoin/i18n/hu.MoinMoin.po Copyright: azokat." kerülni a szerkesztői ütközseket ''ne szerkessze'' ezt az " License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Slovak--all_pages.zip Copyright: boly naposledy upravovan dlho nikto nemenil kontaktn údaje majú aspoň jednu staršiu verziu (kliknite pre diff)|| miesto na publikovanie informácií ''o sebe'', ako napríklad na ne odkazujú: neboli editovan dlhšie než všetky ostatn (t.j. zoznam najstarších editácií) neodkazuje nijaká iná stránka: nikto neodkazuej náhodn stránky od poslednej záložky (kliknite pre diff)|| od poslednej záložky, ale už viac needitovan|| odkazy sa odkazuje stránky stránky v tejto kategórii: stránky|| sú súčasťou titulnej stránky (a teda zoznam pojmov vo wiki) súvisiace stránky, ak si v dropdown menu v editovacom páse na začiatku a konci stránky vyberiete: utvoriť chránen podstránky a tak obmedziť verejný prístup k vašim stránkam východiskov body: zoznamy sú prečíslovan ďalšie riadky License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Brazilian_Portuguese--essential_system_pages.zip Copyright: bom, considere as páginas pessoais um meio de comunicação com você). No entanto você pode criar sub-páginas protegidas para restringir o acesso público para algumas de suas páginas fornecida em PáginasDesejadas sua página pessoal na wiki, onde você pode inserir informações para contato, seus interesses e habilidades, etc. É a propriedade pessoal do dono/autor da página, portanto seja cuidadoso ao editar as páginas pessoais de outros usuários, por exemplo usando-as apenas para deixar mensagens aos respectivos usuários. E lembre-se: ao criar uma PáginaWikiPessoal, coloque um link para CategoriaPáginaPessoal no final da página um índice de todas as palavras presentes nos títulos das páginas um índice de todas as páginas nesta wiki License: UNKNOWN FIXME Files: contrib/images/logos/mastermoin2.png Copyright: cc)C+p,ބnscca'caQl;eF ,4 \ץh$ License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Italian--admin_pages.zip Copyright: ci sia un wiki in cui sono archiviate tutte le pagine degli utenti, utile se si hanno molti utenti. È possibile anche collegarsi a pagine utente non-wiki se il nome utente wiki è negli URL obiettivo. Per maggiori informazioni, consultare AiutoSuConfigurazione gli utenti anonimi possano usufruire delle caratteristiche della sessione normale, impostare `anonymous_session_lifetime` l'internazionalizzazione funzioni, il wiki deve essere accessibile quando il bot di notifica viene avviato tutti i wiki nella farm condividano gli account utenti o aggiungere il percorso assoluto della directory condivisa degli utenti nel file "wikiconfig.py" License: UNKNOWN FIXME Files: MoinMoin/i18n/ca.MoinMoin.po Copyright: conflictes que han estat introduits en la part remota." contindrà futures\n" diferents tipus MIME en els dos wikis i no pot ser fusionat. " el fitxer " el nom o el nom cont " habilitat el processament de correu o de Jabber." habilitat el processament de correu.\n" pots pujar contingut per un altre pàgina. Si el nom " tot el que puguis " totes les /subpàgines?" un número suficient de caràcters diferents." License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Slovak--essential_pages.zip Copyright: dlho nikto nemenil kontaktn údaje majú aspoň jednu staršiu verziu (kliknite pre diff)|| miesto na publikovanie informácií ''o sebe'', ako napríklad nikto neodkazuej náhodn stránky od poslednej záložky (kliknite pre diff)|| od poslednej záložky, ale už viac needitovan|| odkazy sa odkazuje stránky v tejto kategórii: stránky|| sú súčasťou titulnej stránky (a teda zoznam pojmov vo wiki) súvisiace stránky, ak si v dropdown menu v editovacom páse na začiatku a konci stránky vyberiete: utvoriť chránen podstránky a tak obmedziť verejný prístup k vašim stránkam License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Slovak--essential_system_pages.zip Copyright: dlho nikto nemenil kontaktn údaje majú aspoň jednu staršiu verziu (kliknite pre diff)|| miesto na publikovanie informácií ''o sebe'', ako napríklad nikto neodkazuej náhodn stránky od poslednej záložky (kliknite pre diff)|| od poslednej záložky, ale už viac needitovan|| odkazy sa odkazuje stránky|| sú súčasťou titulnej stránky (a teda zoznam pojmov vo wiki) súvisiace stránky, ak si v dropdown menu v editovacom páse na začiatku a konci stránky vyberiete: utvoriť chránen podstránky a tak obmedziť verejný prístup k vašim stránkam License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/French--essential_help_pages.zip Copyright: en montrant d'abord le balisage wiki, puis son rendu effectif. Vous y trouverez galement des liens vers les pages d'aide correspondantes. Attention, certaines fonctionnalits dpendent du paramtrage de votre wiki License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Portuguese--all_template_pages.zip Copyright: equivalente ao registo seguinte: necessário que o utilizador tenha permissões de escrita, de edição e de eliminação o nome de utilizador e o que se segue só activado se o utilizador coincidir tão fácil como incluir uma linha de controlo no topo da página que deseja controlar, como a seguinte: um nome de página correspondente ao {{{page_group_regex}}} com algumas linhas no formato " * Member" (ver [[#Grupos License: UNKNOWN FIXME Files: MoinMoin/i18n/es.MoinMoin.po Copyright: es CSS, djala en blanco)" es un MoinMoin wiki?" License: UNKNOWN FIXME Files: MoinMoin/multiconfig.py Copyright: from a License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Italian--course_pages.zip Copyright: le funzionalità sono estendibili utilizzando dei plug-in. Macro, processori, azioni, etcetera possono essere create e incluse o installate come un plug-in nessuno si è comportato in malo modo con voi è utile pensare a una struttura e a delle convenzioni, come: License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/modernized/img/admon-warning.png Copyright: muMbUj?UKT*U)ZW 6 Ĺ)1mc {G}_exGe8+ʚ~xW:868emXzMm8pNVz3(ɻw 歯g||>wN>D_ License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Portuguese--all_pages.zip Copyright: necessário que o utilizador tenha permissões de escrita, de edição e de eliminação para os que apenas quer utilizar um wiki [[WikiMoinMoin|MoinMoin License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Portuguese--essential_system_pages.zip Copyright: normalmente ''pública'', qualquer pessoa pode ler e editar (o que um aspecto positivo, veja-o como uma forma de comunicar consigo). Mas pode criar igualmente sub-páginas protegidas, por isso restringir o acesso a algumas das suas páginas não um problema o local ideal para publicar informação ''sobre si próprio'', como por exemplo: um índice de todas as palavras presentes nos títulos das páginas um índice de todas as páginas deste Wiki License: UNKNOWN FIXME Files: docs/licenses/pygments/AUTHORS Copyright: s) are: License: UNKNOWN FIXME Files: MoinMoin/support/pygments/lexers/other.py Copyright: 2006-2010, the Pygments team, see AUTHORS |Et |Então |Entonces |Entao |En |Eeldades |E |Duota |Dun |Donitaĵo |Donat |Donada |Do |Diyelim ki |Dengan |Den youse gotta |De |Dato |Dar |Dann |Dan |Dado |Dacă |Daca |DEN |Când |Cuando |Cho |Cept |Cand |Cal |But y\'all |But |Buh |Biết |Bet |BUT |Atès |Atunci |Atesa |Anrhegedig a |Angenommen |And y\'all |And |An |Ama |Als |Alors |Allora |Ali |Aleshores |Ale |Akkor |Aber |AN |A tak |A |\* )' License: UNKNOWN FIXME Files: wiki/underlay/pages/LanguageSetup/attachments/Portuguese--optional_system_pages.zip Copyright: uma lista de entradas mais antigas deste wiki License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/anywikidraw/pmwiki/cookbook/AnyWikiDraw/AnyWikiDrawForPmWiki.jar Copyright: fBj*5WIDpEfª*S *5^lT(Li License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif Copyright: JY&jb+˨:0+׬ License: UNKNOWN FIXME Files: contrib/images/logos/mastermoin1.png Copyright: 3yMך License: UNKNOWN FIXME Files: contrib/AnyWikiDraw/src.tar.bz Copyright: rgO'7;'- x|!{t{~2JٖWu$NP,+w*g nk/2b+#$v<.ig2 ;~zyb`Ɩ5&j<ǿ_ ,HE License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/common/moinmoin.png Copyright: ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ License: UNKNOWN FIXME Files: MoinMoin/i18n/fa.MoinMoin.po Copyright: بار وارد شوید. MoinMoin\n" حساب OpenID خود وارد شده " عبارت عددی \"%(key)s\" بیاید" فایل از نوع .zip نیست." License: UNKNOWN FIXME Files: MoinMoin/web/static/htdocs/applets/FCKeditor/editor/images/smiley/msn/thumbs_up.gif Copyright: ,ș<5B ><&%iH g|tLuٱRU%Yu*RBkVT`fڵc-Z5T@bz&>S+J+H!/"PeHf_e; License: UNKNOWN FIXME Files: debian/licensecheck Copyright: ", values %s); # The full word $_matched; 2007-2008, Adam D. Barratt 2007-2008, Adam D. Barratt ; based = $match; = join(" Adam D. Barratt Also display the file's SIGN License: zlib/libpng Public domain FIXME debian/source/0000755000000000000000000000000012211217775010473 5ustar debian/source/format0000644000000000000000000000001412211217775011701 0ustar 3.0 (quilt) debian/README.source0000644000000000000000000000361312211217775011355 0ustar Building this package for Debian -------------------------------- This source package need no special handling for normal package builds. Developing this package for Debian ---------------------------------- The source of this package is developed using git and the helper tool git-buildpackage, with all official releases tagged and signed and binary diffs of tarballs stored using pristine-tar. This is documented below /usr/share/doc/git-buildpackage/manual-html/ . A custom build target shows current upstream and packaging versions: debian/rules print-version Current upstream tarball can be prepared using this other build target: debian/rules get-orig-source To switch to newer upstream source, first add a dummy changelog entry and comment out DEB_UPSTREAM_TARBALL_MD5 before getting the source: dch -v ${new_upstream_version}-1 "Dummy changelog entry" sed -i -e 's/^\(DEB_UPSTREAM_TARBALL_MD5\b\)/#\1/' debian/rules debian/rules get-orig-source Store new md5sum to help ensure identical source is received later. Setting DEB_MAINTAINER_MODE=1 enables additional build routines helpful during development of the package, but unfit for normal builds. This typically includes the CDBS feature of auto-updating debian/control with CDBS-related build-dependencies, which is forbidden by Debian Policy as build environment must not change during automated builds. Maintaining packaging build routines ------------------------------------ This source package wraps debhelper commands and other tedious parts of the build routines using the CDBS framework. Please refer to the actual makefile snippets included from debian/rules for details on their purpose and ways to override defaults. Additionally, makefile snippets included from below /usr/share/cdbs may also be documented in /usr/share/doc/cdbs/cdbs-doc.pdf.gz . -- Jonas Smedegaard Thu, 26 Feb 2009 21:28:29 +0100 debian/gbp.conf0000644000000000000000000000014612211217775010613 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True sign-tags = True debian/licensecheck.diff0000644000000000000000000000734612211217775012457 0ustar --- /usr/bin/licensecheck 2009-11-22 19:26:47.000000000 +0100 +++ licensecheck 2009-11-29 23:57:18.000000000 +0100 @@ -270,6 +270,7 @@ my $file = shift @files; my $content = ''; my $copyright_match; + my $copyright_matched = ''; my $copyright = ''; my $license = ''; my %copyrights; @@ -278,9 +279,12 @@ while () { last if ($. > $opt_lines); $content .= $_; - $copyright_match = parse_copyright($_); + $copyright_matched++ if ($copyright_match); + $copyright_match = parse_copyright $copyright_matched; if ($copyright_match) { $copyrights{lc("$copyright_match")} = "$copyright_match"; + } else { + $copyright_matched = ''; } } close(F); @@ -307,6 +311,7 @@ } sub parse_copyright($) { + my $matched = shift; my $copyright = ''; my $match; @@ -323,6 +328,10 @@ |and|or # Part of a sentence )\b'; + if (($matched) and (/^\s*\d+/)) { + $_ = 'copyright' . $_; + } + if (m%$copyright_indicator_regex(?::\s*|\s+)(\S.*)$%ix) { $match = $1; @@ -334,6 +343,27 @@ $match =~ s/^\s+//; $match =~ s/\s{2,}/ /g; $match =~ s/\\@/@/g; + + $match =~ s/(MoinMoin:)?Alexander ?Schremmer( [<(][^>)]*[>)])?/Alexander Schremmer /gi; + $match =~ s/(MoinMoin:)?Dmitri..? ?Mili?aj?evs?( [<(][^>)]*[>)])?/Dmitrijs Milajevs /gi; + $match =~ s/(MoinMoin:)?Eugene ?Syromyatnikov( [<(][^>)]*[>)])?/Eugene Syromyatnikov /gi; + $match =~ s/(MoinMoin:)?Florian ?Festi( [<(][^>)]*[>)])?/Florian Festi /gi; + $match =~ s/(MoinMoin:)?Florian ?Krupicka( [<(][^>)]*[>)])?/Florian Krupicka /gi; + $match =~ s/(MoinMoin:)?Forrest ?Voight( [<(][^>)]*[>)])?/Forrest Voight /gi; + $match =~ s/(MoinMoin:)?Franz ?Pletz( [<(][^>)]*[>)])?/Franz Pletz /gi; + $match =~ s/(MoinMoin:)?Johannes ?Berg( [<(][^>)]*[>)])?/Johannes Berg /gi; + $match =~ s/(MoinMoin:)?J.?.?rgen ?Hermann( [<(][^>)]*[>)])?/Juergen Hermann /gi; + $match =~ s/(MoinMoin:)?Karol ?Nowak( [<(][^>)]*[>)])?/Karol Nowak /gi; + $match =~ s/(MoinMoin:)?Melita ?Mihaljevic( [<(][^>)]*[>)])?/Melita Mihaljevic /gi; + $match =~ s/(MoinMoin:)?Nir ?Soffer( [<(][^>)]*[>)])?/Nir Soffer /gi; + $match =~ s/(MoinMoin:)?Petr ?Pytelka( [<(][^>)]*[>)])?/Petr Pytelka /gi; + $match =~ s/(MoinMoin:)?Radomir ?Dopieralski( [<(][^>)]*[>)])?/Radomir Dopieralski /gi; + $match =~ s/(MoinMoin:)?Reimar ?Bauer( [<(][^>)]*[>)])?/Reimar Bauer /gi; + $match =~ s/(MoinMoin:)?Richard ?Liao( [<(][^>)]*[>)])?/Richard Liao /gi; + $match =~ s/(MoinMoin:)?Thomas ?Pfaff/Thomas Pfaff/gi; + $match =~ s/(MoinMoin:)?Thomas ?Waldmann( [<(][^>)]*[>)])?/Thomas Waldmann /gi; + $match =~ s/(\d+ )by /$1/g; + $copyright = $match; } } @@ -432,6 +462,14 @@ $license = "GPL (unversioned/unknown version) $license"; } + if ($licensetext =~ /GPL, see COPYING/) { +# $license = "GPL (unversioned/unknown version) $license"; + $license = "GPL-2+ $license"; + } + if ($licensetext =~ /GNU GENERAL PUBLIC LICENSE Version ([^ ]+)\./) { + $license = "GPL (v$1) $license"; + } + if ($licensetext =~ /This file is part of the .*Qt GUI Toolkit. This file may be distributed under the terms of the Q Public License as defined/) { $license = "QPL (part of Qt) $license"; } elsif ($licensetext =~ /may be distributed under the terms of the Q Public License as defined/) { debian/watch0000644000000000000000000000031012211217775010216 0ustar # Run the "uscan" command to check for upstream updates and more. version=3 opts=uversionmangle=s/(alpha|beta|rc)/~$1/ \ http://static.moinmo.in/files/moin-(.*)\.tar\.gz debian uupdate --no-pristine debian/python-moinmoin.examples0000644000000000000000000000007212211217775014076 0ustar wikiserver.py wikiconfig.py wiki/config debian/examples/* debian/process_language_pages0000755000000000000000000000242612211217775013625 0ustar #!/bin/sh # This script clean-up the underlay page. (contained in zip files). # Copyright 2009, Frank lin Piat ; License GPL V2 or later. # Strip these notes in underlay about editing only on moinmaster: ## Pour plus d'informations, consultez la page MoinMoin:MoinDev/Translation. ## Please edit system and help pages ONLY in the moinmaster wiki! ## Please edit system and help pages ONLY in the master wiki! ## For more information, please see MoinMoin:MoinDev/Translation. set -e set -x UNDERLAY_DIR=$1 [ ! -d "$UNDERLAY_DIR" ] && (echo "Error: argument isn't a directory" ; false) find $UNDERLAY_DIR -iname '*.zip' \ | grep -E '[^[:alnum:]/_\.-]' \ && (echo "^^ Are the above filenames safe?"; exit 1) BASE=$PWD COUNT=0 for f in $(find $BASE/$UNDERLAY_DIR -iname '*.zip') ; do echo "Cleaning comments in $f" tmp=`mktemp -d --tmpdir=$BASE` || exit 2 cd $tmp unzip -q $f chmod a+rw ./* egrep -r -l -Z '^## ' * \ | xargs -r -0 -n 1 \ sed -i -e '1,8{/^## \(Please edit system\|For more information\|.*MoinMoin:MoinDev\/Translation\)/d}' # ^^ search and drop notes in the 8 first lines. chmod a-w ./* chmod a+w MOIN_PACKAGE rm $f zip -q $f * cd $BASE rm -Rf $tmp COUNT=$(($COUNT + 1)) done [ $COUNT -eq 0 ] && (echo "Error: No Zip (language pages) found" ; false) || true debian/moin-mass-migrate.80000644000000000000000000000166012211217775012620 0ustar .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 debian/moin-update-wikilist.10000644000000000000000000000160512211217775013336 0ustar .TH moin-update-wikilist 1 .SH NAME moin\-update\-wikilist \- add or remove user from /etc/moin/wikilist .PP .SH SYNOPSIS .B moin\-update\-wikilist \fIUSERNAME\fR .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\-migrate(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