debian/0000775000000000000000000000000013361142265007173 5ustar debian/moin.1.template0000664000000000000000000000623112211217775012035 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/moin-mass-migrate0000775000000000000000000000545512211217775012465 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/python-moinmoin.dirs0000664000000000000000000000013612211217775013224 0ustar /etc/moin usr/share/doc/python-moinmoin/examples/desktop-edition usr/share/pyshared/MoinMoin debian/rules0000775000000000000000000001067312211217775010264 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/source/0000775000000000000000000000000012211217775010475 5ustar debian/source/format0000664000000000000000000000001412211217775011703 0ustar 3.0 (quilt) debian/watch0000664000000000000000000000031012211217775010220 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.install0000664000000000000000000000010612211217775013726 0ustar debian/moin-update-wikilist usr/bin debian/moin-mass-migrate usr/sbin debian/control0000664000000000000000000000251112263062417010575 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/lintian-overrides0000664000000000000000000000026112211217775012555 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/tweak-moin-manpage0000664000000000000000000000207112211217775012601 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/README.source0000664000000000000000000000361312211217775011357 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/copyright_hints0000664000000000000000000072020112211217775012337 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/copyright0000664000000000000000000024605512211217775011144 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/moin-update-wikilist0000775000000000000000000000174712211217775013213 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.docs0000664000000000000000000000012212211217775013206 0ustar README docs/INSTALL.html docs/README.migration docs/REQUIREMENTS docs/UPDATE.html debian/moinmaster.py0000664000000000000000000000244312211217775011730 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/wikilist0000664000000000000000000000103412211217775010755 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/postinst0000664000000000000000000000165112211217775011006 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/licensecheck0000775000000000000000000005036012211217775011547 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/python-moinmoin.examples0000664000000000000000000000007212211217775014100 0ustar wikiserver.py wikiconfig.py wiki/config debian/examples/* debian/README.Debian.in0000664000000000000000000001414612211217775011651 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/licensecheck.diff0000664000000000000000000000734612211217775012461 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/compat0000664000000000000000000000000212211217775010373 0ustar 7 debian/install0000664000000000000000000000014512211217775010566 0ustar debian/moin-mass-migrate /usr/sbin/ debian/moin-update-wikilist /usr/bin/ debian/wikilist /etc/moin/ debian/TODO0000664000000000000000000000404412211217775007667 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/examples/0000775000000000000000000000000012211217775011013 5ustar debian/examples/apache20.conf0000664000000000000000000000211112211217775013240 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/examples/wikiserver-init.sh0000664000000000000000000000127512211217775014507 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/gbp.conf0000664000000000000000000000014612211217775010615 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True sign-tags = True debian/NEWS0000664000000000000000000001042412211217775007675 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.manpages0000664000000000000000000000010612211217775014053 0ustar debian/moin-mass-migrate.8 debian/moin-update-wikilist.1 debian/moin.1debian/moin-mass-migrate.80000664000000000000000000000166012211217775012622 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.10000664000000000000000000000160512211217775013340 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 debian/servertweaks.sed0000664000000000000000000000067712211217775012431 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/patches/0000775000000000000000000000000013361141336010620 5ustar debian/patches/CVE-2016-9119.patch0000664000000000000000000000314213015037660013245 0ustar # HG changeset patch # User Thomas Waldmann # Date 1477942451 -3600 # Node ID 3bddf075fdbddfc3df94d6fc871bec50736fc75f # Parent 1563d6db198c2bd11c7b738438ce0d3d0d5a1417 security: fix XSS in GUI editor's link dialogue CVE-2016-9119 diff -r 1563d6db198c -r 3bddf075fdbd MoinMoin/action/fckdialog.py --- a/MoinMoin/action/fckdialog.py Fri Oct 28 21:33:38 2016 +0200 +++ b/MoinMoin/action/fckdialog.py Mon Oct 31 20:34:11 2016 +0100 @@ -198,7 +198,7 @@ -''' % "".join(["\n" % p for p in pages])) +''' % "".join(["\n" % wikiutil.escape(p) for p in pages])) def link_dialog(request): # list of wiki pages @@ -219,7 +219,7 @@ -''' % "\n".join(['' % (page, page) +''' % "\n".join(['' % (wikiutil.escape(page), wikiutil.escape(page)) for page in pages]) else: page_list = "" @@ -237,13 +237,14 @@ else: resultlist = iwpreferred[:-1] interwiki = "\n".join( - ['' % (key, key) for key in resultlist]) + ['' % (wikiutil.escape(key), wikiutil.escape(key)) + for key in resultlist]) # wiki url url_prefix_static = request.cfg.url_prefix_static scriptname = request.script_root + '/' action = scriptname - basepage = request.page.page_name + basepage = wikiutil.escape(request.page.page_name) request.write(u'''