Zwiki 0.18.0 2003-05-01

    Summary

	Full Plone and CMF skin, miscellaneous fixes.

    Upgrade notes

	If you have a cmf_install_zwiki external method, refresh it after
	installing this release (by saving it, or restarting zope).

	The new zwiki_plone skin replaces the zwiki_cmf skin; although the
	latter is still shipped it will hopefully go away soon.  An
	existing CMF zwiki should keep working as before. To change it
	over to the zwiki_plone skin, do this:

	 1. in your CMF site's portal_skins Contents tab, delete the
	 default and zwiki_cmf folders (and zwiki_orig, if you don't use
	 that)

	 2. in the properties tab, remove zwiki_cmf (and zwiki_orig) from
	 all skins

	 3. run the install method again (CMFSITEURL/cmf_install_zwiki)

	Structured text headings will get bigger next time you save the
	page (or visit SOMEPAGEURL/upgradeAll to re-render all pages).
	
    Changes

      General

	* structured text headings now start at H2 not H3

	* when using regulations, don't require change regulations
	permission just to comment (IssueNo0485)

	* be more robust displaying pages with old-style page ids that
	have not yet been upgraded (IssueNo0495)

	* use precise links in contents, rather than depending on
	standard_error_message (IssueNo0454, Leslie Barnes)

	* when saving a page via external editor/ftp/webdav, don't require
	a space after the : in the safety belt/type/log headers. Was
	causing a name error with external editor + emacs whitespace mode
	(IssueNo0438, Andrew Burrow)

	* if there is an id renaming collision during upgradeAll, just log
	the error and continue (IssueNo0483)
	
	* edit conflict & lock dialogs were giving NameErrors

	* new method: ancestorsAsList

      Skins and content

        * a fully functional Plone (and CMF) skin, at last! The
	zwiki_plone skin provides most current features of Zwiki's default
	skin, within the standard plone UI. It should also be functional
	for CMF sites, allowing zwiki_cmf to be retired.  (Alexander Limi
	funded by Walt Ludwick, with Simon Michael, Sidnei da Silva, Alan
	Runyan)

	* skin code fixes; Zwiki accepts Page Templates, Filesystem Page
	Templates, and DTML Methods as skin objects, and will warn if any
	other type is found.

	* UserOptions was not honouring the redirectURL argument if just
	clearing cookies

	* tweaked blank subject comment heading format.. not happy with it
	yet

      Mail

	* mailouts were failing when creating a page with no initial text

	* make comment mailout work when there is no subject_heading field
	(IssueNo0481, az` on irc)

      Tracker

	* when changing issue properties, add a user-supplied or default
	comment to the page recording what was done (DeanGoodmanson)


Zwiki 0.17.0 2003-04-01

    Summary

	Simpler page ids, faster performance and better memory efficiency,
	new general-purpose page type including tracker and fit support,
	more robust parenting, skin improvements, preliminary stylesheet
	support, code cleanups, doctest no longer used.

    Upgrade notes

	If you have pages with punctuation in the names, or zwiki tracker
	issues, you'll need to change their id/name. See below.

	If you have a tracker in your wiki, you'll also need to install
	the latest IssueTracker/FilterIssues pages and add a new 'isIssue'
	FieldIndex to your catalog. Also, in a large wiki you may find
	changing issue descriptions is much slower than before. See below.

	issuedtml and stxprelinkdtmlhtml pages will be auto-upgraded to
	the new stxprelinkdtmlfitissuehtml type.
	
	The CMF install method in Extensions has been renamed to Install.py.
	
    Changes

      General

        * Simpler page ids
 
	  Page ids are now always derived from the name (title). This
	  improves performance, removes a source of confusion, but means
	  pages can no longer have a totally different title and id (like
	  tracker issues used to).  Also, page ids no longer include
	  punctuation, and fuzzy links now ignore punctuation.

	  Pages with old-style ids should be renamed so that wiki links to
	  them will work.  You can upgrade these pages and update links
	  throughout the wiki by visiting SOMEPAGEURL/upgradeAll.  This
	  may take a long time; you can watch progress in the debug
	  log. It's safe to run this more than once. Alternately, you can
	  visit SOMEPAGE/upgradeId to rename and relink a single page.

	  Some incoming links may break due to url changes; having the
	  zwiki standard_error_message installed will help.

	* Improved performance and memory efficiency

	  Link rendering is faster due to the new ids and code
	  refactoring.
	  (Unscientific ab test: roughly a 4x speedup rendering a
	  normal page and 20x for a long one.)  Also, zwiki is no longer
	  so eager to load all pages into the zodb cache. Certain
	  operations will still trigger this (search, rename) but in
	  general use, a zope serving large wikis should now use less
	  memory. This may also help your performance and reduce "first
	  page render" delay.

	* new/improved page lookup methods: pages, pageIds, pageNames,
	pageIdsStartingWith, pageNamesStartingWith,
	firstPageIdStartingWith, firstPageNameStartingWith, pageWithId,
	pageWithName, pageWithNameOrId, pageWithFuzzyName. Use these in
	your DTML code when possible as they will be optimized. pageWith*
	now return a correct acquisition wrapper (fixes IssueNo0472).
	pageWithFuzzyName's ignore_case has no extra cost now and is
	always on. The argument is left in place for backwards
	compatibility for the moment. Also this may have been acquiring
	pages, fixed.

	* new general-purpose page type incorporating issue and fit
	support: stxprelinkdtmlfitissuehtml. stxprelinkdtmlhtml and
	issuedtml pages are auto-upgraded to this.  This page type
	displays an issue properties form if the page name begins with
	IssueNo. Also, any tables whose first cell begins with "fit." or
	"fittests." are run as fit tests at page view time.

	* rename improvements: support for upgrading to new-style ids;
	allow renames without sending mail; reduce unnecessary indexing;
	preserve creation info when renaming (IssueNo0398); be more
	tolerant of confused parentage;

	* Don't leave orphans when deleting a page

	* cleaner catalog logging

	* all doctests have been converted to pyunit tests

	* Details of WWML changes in last month's release (PeterMerel):

         - C2-compatible apostrophe embedding using minimal-munch

         - C2-compatible generation of indents from leading spaces

         - Intuitive fixed-width tables using | as a column delimiter. I
	   purely hate the STX tables, which do everything except the most
	   obvious formatting everybody wants.

         - Ability to use images as page names with [image-url]

         - Ability to generate blockquotes by using = instead of *

         - Ability to force a BR in definitions using \\

         - Probably some other things I've forgotten.
	
      Skins and content

	* the latest zwiki.org RecentChanges: fix a mispaced try which
	allowed errors, be less chatty about brute force/catalog, move
	note field next to page name, drop the "use table" option and the
	T issue indicator.

	* edit form layout improvements

	* lose the gray title background and use site logo on all "form" pages

	* Made the diff form skinnable: support a 'diffform' page template
	or dtml method accepting two arguments: 'revA' and 'difftext'.

	* Made the contents view skinnable: support a 'contentspage' page
	template or dtml method accepting two arguments: 'hierarchy'
	(a html string) and 'singletons' (a list of html strings).

	* allow multiple space-separated wiki names in backlinks' other
	parents field and the page management form (PeterMerel)

	* contents improvements: make "you are here" bold; list singletons
	at the bottom, if any. (PeterMerel)

	* "contents" is used more consistently and is the preferred new name
	for the map method.

	* page creation links now have class "new" (IssueNo0456)

	* preliminary CSS support: the default skin embeds a "stylesheet"
	object if present. 

      Mail

	* longish headings were not being stripped from mailouts

	* mail out comments with their original formatting (not the page
	diff)

	* don't try to find a subject in comment body any more

	* don't send mailouts from a page named TestPage, whether or not it has
	[test] subject; log discarded [test] mailouts

      CMF

	* cmf_install_zwiki.py has been renamed to Install.py (IssueNo0460)

      Tracker

        * Issue pages have a new naming scheme to conform with the new
	  page ids: "IssueNoNNNN issue description". upgradeAll will take
	  care of this for you. Old IssueNoXXXX urls will still work if
	  you have standard_error_message installed. You need updated
	  IssueTracker/FilterIssues pages which can be found in
	  ZWiki/content/tracker. A new 'isIssue' FieldIndex is required in
	  the catalog.

	* changeProperties has been replaced by changeIssueProperties.
	  This does a full page rename, with link updating, when changing
	  an issue description (slow).

	* The 'issuedtml' page type is deprecated; the new combined
	  'stxprelinkdtmlfitissuehtml' type is used instead. Old issue
	  pages will be auto-upgraded. See also HowToInstallAZwikiTracker.

	* If you use the new page type throughout, you can change an
	  ordinary page into an issue by renaming it "IssueNo..." and vice
	  versa.

Zwiki 0.16.0 2003-03-02

    Summary

	CMF skin updates, various mail tweaks to support mailing list
	integration, enhancements to comment behaviour, WWML,
	misc. bugfixes.

    Changes

      Skins and content

	* enhancements and fixes to the CMF support and zwiki_cmf skin
	from the nzo project - title fix, wiki folder edit view, don't
	create standard_error_message in CMF, CMF-style edit form, other
	skin updates. (Sidnei da Silva, LaloMartins)

	* dropped zwiki_orig skin
	
        * default skin: subject field, always post with heading,
	tweaked page management form

	* more compact comment headings

	* add discussion icon to comment headings in a CMF site

      Mail

	* mailout all comments, regardless of use_heading flag

	* with multiple bracketed strings in a subject, use the right-most

	* mailin.py: support for preventing duplicates when using a
	mailing list, commented out; 

	* generate list id header from mail_from, not mail_replyto

	* new mail_signature property to override mailout footer

	* new mail_page_name boolean property to disable page name in
	subject

	* mailin.py: parse boolean options correctly

	* don't add extra spaces in mailout subjects

	* log reason for mailout failures

      General

	* WWML: fixed a couple of little bugs and added a couple of little
	extra markups. (PeterMerel)

	* comment(): a non-blank comment subject now enables the heading
	if use_heading is not already true

	* preserve parentage when pages are renamed (IssueNo0168)

	* fixed a strange problem with catalog()

	* fix Localizer ustr NameError caused by non-unicode zope or unit
	testing

	* testing support - don't append or mail out comments with [test]
	subject
	
	* test modules re-organized


Zwiki 0.15.0 2003-02-01

    Summary

	Minor bugfixes and some changes to wikimail behaviour.

    Upgrade notes

        If you're doing mailin, don't forget to re-save your external
	method after installing this release.

    Changes

      Mail

	* don't store page names in recipient real name. This seems to
	create more confusion than it solves. mailin.py's checkrecipient
	option is now off by default, and the line in Mail.py:sendMailTo()
	which puts the page name in mailouts' reply-to is commented out.

	* don't recognize bare wiki names in mailin subjects - only page
	names enclosed in brackets. Explicit is better than implicit.
	More details on http://zwiki.org/WikiMailDiscussion, please
	comment there if you don't agree with these changes.
	
	* non-headed comments were sending error reports to mail_admin
	if configured

      Skins and content

	* default: some fixes for valid HTML (Pieter Biemond, IssueNo0399)

	* default, zwiki_orig: increase max quote size in header to 300

	* zwiki_orig: get rid of the javascript double-click

      General

	* leave unknown link titles blank instead of showing "xxx zwiki bug"

	* a comment's subject (explicit from a field or inlined) is now
        used for the transaction log regardless of the use_heading checkbox.
	

Zwiki 0.14.0 2003-01-09

    Summary

	A mailin.py rewrite.

    Upgrade notes

        If you don't use mailin, no need to upgrade.  After installing
	this you'll want to click your external method's save button to
	update it. Note this version of mailin.py drops the special
	virtual host support.

    Changes

      Mail

	* a rewritten mailin.py with tweaked delivery rules and unit
	tests. Fixes IssueNo0376.

	* be more fussy about recognizing a recipient real name as a page
	name
	
	* bracketed free form names in the subject are now also recognized
	(it will use the first bracketed thing found)


Zwiki 0.13.1 2002-12-07

    Summary

	A "bugfix-plus" release, for IssueNo0385 (missing permissions).

    Changes

	* finish the switch to modern security declarations,
	fixing IssueNo0385 and hopefully not breaking much else.

	* also send mailouts on page deletion and renaming

Zwiki 0.13.0 2002-12-01

    Summary

	Bugfixes, more solid CMF & Plone support, wikimail enhancements,
	skins re-organization.

    Upgrade notes

	If you have mailin set up and find replies going to the default
	page instead of the originating page, see IssueNo0376.

    Changes

      CMF

	* rename CMFInstall.py to cmf_install_zwiki.py

	* CMF skin support. zwiki_cmf is a lightweight CMF skin for zwiki;
	zwiki_orig is a CMF skin that looks like zwiki's standard UI

	* fix edit permission in CMF (IssueNo0366)

	* fix a timezones error when in CMF

	* make wiki folder & page management work in cmf/plone

	* catalog lookup changed: look for a CMF portal_catalog;
	look for SITE_CATALOG on page and containing folder only

	* when creating a Wiki Page in CMF, allow the standard_page_type
	folder property to control it's page_type.

	* hide user options when in CMF

      Mail
	
	* look up destination page in the recipient's real name (first); 
	mailouts will encode the source page in the reply-to's real name.
	This should make addressing and replying more natural.

	* allow subject headings in mail and web comments. (To set the subject
	from a web comment, use an initial one-line paragraph that is bold
	(using '** or < b>') and no longer than 100 characters.)
	Subjects are saved as edit log note and vice versa.

	* generate a mailout when pages are created

	* mailin page creation fixes

	* mailin: handle freeform page names

	* mailin: work even when default page is not found, as long as
	there's at least one wiki page in the folder.

	* mailin: add some failure logging

	* look for 'mailin_policy' property instead of 'posting_policy';
	the latter is still supported but deprecated

	* don't use < hr> in comment headings

      Skins and wiki content

	* clean out & reorganize templates and default content under
	skins, content

	* new unified RecentChanges implementation; use SITE_CATALOG,
	remove hard-coded zwiki.org

      General
	
	* wiki links to pages with accented names (and freeform names in
	general if standard_error_message is not present ?) were not working

	* parent wiki links were generating an error

	* workaround for zope 2.6 stx+dtml breakage (IssueNo0270)

	* fix for "some permissions had errors" (IssueNo0358)

	* fix title changing in ZMI Edit tab (IssueNo0280)

	* increase the added and removed lines truncation limits for diffs
	and mailouts (to 200 and 20 lines respectively)

	* ZWikiPage class initialization fix; fixes an event log file
	warning (and.. ?)

	* auto-upgrade WikiForNow pages

	* log messages at BLATHER priority instead of DEBUG, and don't
	require the Z_DEBUG_MODE or ZWIKI_DEBUG variable any more

	
Zwiki 0.12.0 2002-11-01

    Changes

	* subscription now accepts CMF member usernames as well as email
	addresses

	* add zwiki web, add zwiki page forms internationalized;
	.po files & spanish translation updated (JuanDavidIbanez)

	* preliminary fit (framework for interactive testing) support
	('dtmlfithtml' & 'stxdtmlfithtml' page types)

	* allow a 'mail_subject_prefix' folder property to override the
	folder title for mailout subjects. Useful when mailout subject and
	cmf's "you are here" must differ.

	* self.ZopeTime didn't work on a page in a CMF site, now does

	* apply the stx initial-word-becomes-bullet workaround for all
	zope versions

	* support for auto-upgrading wikifornow pages

	* minor default ui & content tweaks

Zwiki 0.11.0 2002-10-01

    Summary

	Bugfixes, international page names, edit log notes, WikiForNow
	assimilation completed, CMFWiki integration (alpha).

    Upgrading notes

	See Regexps.py for notes on configuring international page names.
	When running large & extensively cataloged wikis, you might notice
	this version being more memory intensive than 0.10 (which itself
	may be more memory hungry than 0.9.9). This release should coexist
	with CMFWiki without problems.  Otherwise the usual, see
	http://zwiki.org/TenMinuteZwikiUpgradeGuide &
	http://zwiki.org/HowToUpgradeZwiki for more.
	
    Changes (by category)

      Misc

	* better support for (single-byte) international characters in
	page names & ids; enable out of the box, with or without a locale
	set up (IssueNo0257)

	* merge CMF support into standard ZWiki pages. See
	Extensions/CMFInstall.py. (alpha)
	(CMFWiki) (ChrisMcDonough)

	* locking fixes for external editor support (CaseyDuncan)

	* save an optional log note with edit (or type change, file
	upload, ftp PUT, page creation, deletion (via DeleteMe))
	(WikiForNow) (KenManheimer)
	
	* allow page type to be set via FTP (WikiForNow)
	
	* Don't allow completely anonymous invocations of rename/delete
	(IssueNo0235)

	* reindex after renaming

	* set "FTP access" permission, send manage_edit through wiki
	editing code the way WikiForNow does (IssueNo0243)

	* a couple of compatibility tweaks for running inside a CMF/plone
	instance - provide view & SearchableText methods, use
	portal_catalog if present, don't use rule in comment headings.

      Default UI & wiki content

	* custom wikipage template was being called with the wrong context
	(IssueNo0225)

	* custom standard_wiki_header/footer methods were being ignored
	(IssueNo0228)

	* provide a traceback in html source when header or footer
	rendering fails

	* standard_error_message: fix missing "; make it work when not in
	site's root folder (IssueNo0250)

	* editform: move options down a row to handle long page names
	better; fix tab ordering

	* display last log note in history link title in header and at top
	left when diff browsing; use a form button to return from diff
	browsing

	* use ZMI widgets for page_type and NOT_CATALOGED (WikiForNow)

      Rendering

	* new "text + links" page type

	* wwml: some rendering fixes and convert spaces to tabs, described
	on ConvertSpacesToTabs (PeterMerel)

	* use new rendering code for issue pages (IssueNo0252,IssueNo0253)

        * enable stx bullet workaround for all zope versions (IssueNo0273)
	
      Editing

      Mail

	* filter blank items from mailout recipients (IssueNo0221)

      Tracker
	
      Compatibility

	* be more robust when upgrading timestamps (IssueNo0222)

	* be more robust with older zopes which may not have page
	templates (IssueNo0224)

	* don't use prefix tag in add zwiki web form for compatiblity with
	old zopes (IssueNo0229)

	* be more robust reading version.txt.. zope-cvs doesn't have one
	(IssueNo0254)

	* fixprops.py utility method for fixing up zwiki page properties

    API changes (summary)

	Nothing major.
	

Zwiki 0.10.0 2002-09-01

    Changes

        * minor text cleanups in default editform & zwikidotorg content

Zwiki 0.10.0rc1 2002-08-25

    Summary

	Pre-rendering for better performance, new freeform page names and
	fuzzy linking, WikiForNow regulations support (beta), page
	renaming & deleting, UI enhancement & simplification, better
	upgradability, page templates support, i18n started, many bugfixes
	& minor enhancements.

    Upgrading notes

	This release has renamed page types and a new render-caching
	mechanism, to which pages are upgraded automatically; full-featured
	UI defaults which will be used if you delete your custom DTML
	methods; and one new and one renamed permission.
	See http://zwiki.org/TenMinuteZwikiUpgradeGuide &
	http://zwiki.org/HowToUpgradeZwiki for more.
	
    Changes (by category)

      Default UI

	* made built-in defaults full-featured (equivalent to current
	zwiki.org UI). 

	* when adding a zwiki web, don't instantiate dtml methods, rely on
	the built-in defaults instead

	* support page templates as well as dtml methods for editform,
	subscribeform, backlinks and for main page layout (a page template
	named wikipage will take precedence over standard_wiki_header &
	standard_wiki_footer dtml methods). The page body is passed to in
	wikipage as options/body.  The following additional options are
	passed to editform: page, text, action, id, oldid.

	* built-in defaults are now read from the filesystem.  Defaults
	for standard_wiki_header/standard_wiki_footer are still provided
	but no longer quite as up-to-date and probably will be deprecated.

	* consistent api for accessing UI methods/templates/defaults

	* many UI updates and simplifications in default page layout,
	editform, backlinks etc.; made UI options more flexible & robust

	* full/simple/minimal display modes; simple (no page hierarchy) is
	displayed by default

	* retired jumpsearch (make the search box always do a simple
	search)

	* added tooltips & access keys to most links & form elements

	* display a convenient page rename/reparent/delete form in the
	footer in full mode if the user has a username (and permissions)

	* external editor support

	* make backlinks dtml more robust (IssueNo0210); fixed a case
	where the parent checkbox didn't show up; now uses a catalog if
	available to provide accurate fuzzy backlinks

	* upload permission was incorrect in editform (IssueNo0178)

	* removed "Show advanced edit form" option

	* ensure comment form depends solely on Add comments permission

	* fix white space in center of footer in NS 4.7

	* don't show "sp" for spacer image in text-mode browsers

	* a missing slash caused edits to fail in netscape 4.7

	* added secret AnnoyingQuote edit link

	* better support for web robots - removed robot-excluding meta tag
	from standard_wiki_header/wikipage, added robot exclusion tag to
	editform/subscribeform/backlinks; use form buttons instead of
	links to keep robots out of page history etc.

      Default zwikidotorg content

	* fewer pages

	* new FrontPage

	* new HelpPage

	* updated RecentChanges, uses catalog if available

	* updated SearchPage with selected extra search tools

	* cleaned up UserOptions

	* provide a list of timezones, MoinMoin style
	(IssueNo00146)

	* a standard_error_message method handles nonexistent urls,
	with fuzzy and partial matching on page names

      Rendering

	* Pre-rendering support: new page types (used by default) process
	text formatting rules and wiki linking rules once at edit time.
	This makes rendering of large pages much faster (possibly at the
	expense of quicker zodb growth). Also allows us to accurately
	catalog links.

	* Better freeform page names - square brackets now allow almost
	any page name, not just those with url- and zope-id-safe
	characters. Freeform names are converted to wikiname-like page ids
	and either may be used for linking, supporting co-existence of
	freeform and wikiname pages.

	* Fuzzy linking - square brackets also do fuzzy linking, ignoring
	whitespace and capitalization.

	* square brackets now link only to zwiki pages, not other zope
	objects or url paths

	* Wiki links now have title attributes/tooltips displaying the
	target's age and last editor when you mouse over (except for
	freeform page names in contents hierarchy and parent context)

	* support for simple sub wikis/WikiAcquisition - wikilink targets
	can be acquired from the parent folder (or above) and are
	displayed with ../ prepended

	* don't link WikiNames inside structured text links (IssueNo0190)
	or the content of html anchor tags (IssueNo0194)

	* allow stx tables to have + at the corners

	* the RemoteWikiURL tag is now case-insensitive

	* make accidental structured text footnote processing less likely;
	use more standards-compliant "ref" prefix for footnotes, like newer stx

	* don't treat a bare url followed by : as a remote wiki link

	* make stx links work in non-html stx modes (IssueNo0193)

	* fix for IssueNo0186 (page rendering fails if it contains a
	freeform link containing unbalanced parentheses)

	* added (?L) to the regexps which use \w or \b to make them
	locale-sensitive. (EdwardKreis, AlexyKhrabrov,
	InternationalCharsInRegexps)
	
	* display "you are here" in page hierarchy

      Editing
	
	* strip HTML header & footer found in edit text

	* make post-stx HTML & BODY tag stripping more robust (EdwardKreis)

	* check for a webdav lock before saving an edit or entering editform

	* don't highlight the last edit access key if it's not hyperlinked

	* allow existing files to be re-uploaded (IssueNo0006)

	* don't add a link for uploaded files if the page already has one

	* set last_editor properly during mailin (IssueNo0207)

	* recatalog pages after ftp/http/webdav put

	* abandon the old antidecap kludge

      Mail

	* fixed the multiple subscription bug (IssueNo0161)

	* fixed page creation

	* make mailin tracker issue creation more robust

	* mailin in the context of a zwiki page was not working as
	advertised

	* include standard mailing list headers in mailouts

	* discard all mail that appears to come from a bot, and the common
	"out of office" auto responder replies

	* post comments/create pages using the sender's real name or just the
	username component from their email address, not the full address
	(IssueNo0066, PieterB/SM)

	* fixed a bug in upgradeSubscribers which caused folder properties
	to proliferate

      Tracker

	* added a createIssue method which can replace the AddIssue &
	IssuePrototype pages
	
	* increased title's max length from 100 to 200 when editing issues

	* when rendering the issue form, generate option menus dynamically
	from the issue_* properties (MikeFair)

      Compatibility

	* better auto-upgrading & backwards compatibility; allow
	auto-upgrading to be disabled via flag in Defaults.py; 
	new upgradeAll method for batch upgrading & re-rendering

	* removed STletters dependency for older zopes

	* don't pass stx header argument with zope 2.4.0 (IssueNo0152,
	TrevorToenjes)

	* added zope 2.5.1 to list of zope versions for unit testing

	* improved python1.5 support

	* improved zope version checking

      Misc
	
	* support WikiForNow-style regulations if use_regulations boolean
	folder property is true

	* add support for page renaming/deleting

	* tweak allowed suffixes for fs-based wiki templates

	* add more informative transaction notes

	* ZWikiPage.manage_changeProperties was non-functional

	* fix ZMI add zwiki page (IssueNo0187), make it equivalent to wiki
	page creation

	* spanish translation of initial i18n strings (J. David Ibez)

	* canadian french translation of initial i18n strings (JoannePlouffe)

	* the beginnings of i18n support, using Localizer if installed.  A
	few strings (edit conflict, authentication errors) internationalized.

	* use last_edit_time everywhere in preference to
	bobobase_modification_time

	* debug logging of zwiki catalog operations (if Z_DEBUG_MODE or
	ZWIKI_DEBUG variables are true and STUPID_LOG_SEVERITY is <= -200)
	
    API changes (summary)

	* wikimail/editform/subscribeform/backlinks page templates will be
	used in preference to standard_wiki_header/standard_wiki_footer/
	editform/subscribeform/backlinks DTML methods. The page body is
	passed to wikipage as options/body. These options are passed to
	editform: page, text, action, id, oldid.

	* page types renamed. Here is the current list of page types (see
	AllAboutPageTypes for details)::

	  stxprelinkdtmlhtml
	  stxdtmllinkhtml
	  dtmlstxlinkhtml
	  stxprelinkhtml
	  stxlinkhtml
	  stxprelink
	  stxlink
	  wwmlprelink
	  wwmllink
	  prelinkdtmlhtml
	  dtmllinkhtml
	  prelinkhtml
	  linkhtml
	  dtmlhtml
	  html
	  plaintext

	* the RemoteWikiURL tag is case-insensitive

	* the OFS.ObjectManager.bad_id definition is used as the basis for
	generating page ids

	* some properties are now looked up by containment rather than
	acquisition context, eg subscriber lists

      ADDED::

	'Zwiki: Rename pages' permission
	use_regulations folder property
	zwiki_displaymode cookie
	ZWIKI_DEBUG environment variable
	addStandardLayoutTo
	age
	applyLineEscapesIn
	asAgeString
	backlinks
	canonicalId
	canonicalLinks
	canonicalLinks
	changeIssueProperties
	createIssue
	creationTime
	editform
	folder
	htmlunquote
	isMailoutEnabled
	isZwikiPage
	lastEditInterval
	lastEditTime
	linkTitle
	linkTitleFrom
	offspringAsList
	offspringIdsAsList
	pageWithFuzzyName
	pageWithName
	pageWithNameOrId
	relative_urls
	renderLinksIn	
	standard_wiki_footer
	standard_wiki_header
	stxToHtml
	subscribeform
	upgradeAll
	urlunquote
	wikipage
	
      CHANGED::
	
	'Zwiki: Recycle pages' permission -> 'Zwiki: Delete pages'
	creation_time and last_edit_time are now ISO-format strings
	doLegacyFixups -> upgrade
	
      REMOVED::

	zwiki_advancededit cookie

Zwiki 0.9.9 2002-04-16

        Focus: unit tests, wikimail enhancements, general fixes and a
	permissions rename. See main release notes below (rc1).

      Bug fixes

	- zwikidotorg template: remove references to old permissions 

Zwiki 0.9.9rc6 2002-04-15

      Bug fixes

        - recognize , in urls (IssueNo0130)

	- zwikidotorg template: remove comment form border

Zwiki 0.9.9rc5 2002-04-14

      Bug fixes

	- fix bracketed path linking (IssueNo0139)

	- missed some old-style imports in the subscription code

Zwiki 0.9.9rc4 2002-04-13

      Bug fixes

        - zwikidotorg template: UserOptions tweaks - make default editform
	dimensions match built-in default (60x15); don't use PST as
	default timezone
	
        - zwikidotorg template: make timezone conversion in the header
	more robust

	- remove a local PYTHONPATH dependency from all imports, and 
	make unit tests more robust across zope versions & invocation
	methods

	- wikimail: multipart message handling got broken in the cleanup, 
	fixed

	- wikimail: make inclusion of poster's username in mailout From
	header more robust

Zwiki 0.9.9rc3 2002-04-10

      Bug fixes

	- zwikidotorg template: removed SiteLogo capability & obsolete
	zwiki_homepage reference, added secret feature for minimalists.

Zwiki 0.9.9rc2 2002-04-09

      Bug fixes

	- render page header *after* body, so that body can turn it off
	with dtml

	- make create more robust for dtml use in a top-level folder

	- built-in ui tweaks - use colours like zwikidotorg's, make
	editform textarea smaller, remove non-useful help links

	- zwikidotorg template: include user option presets in the footer,
	make help link depend on a HelpPage, update default bookmarks

      API changes (summary)

	- new page method zwiki_version()
	
Zwiki 0.9.9rc1 2002-04-08

      Features

	- zwiki permissions renamed. Details::

	  'Add ZWiki Pages' (no change)
	  'Add ZWiki Webs' (no change)
	  'Zwiki: Add comments to pages' (was Append to ZWiki Pages)
	  'Zwiki: Change page types' (was Change ZWiki Page Types)
	  'Zwiki: Edit pages' (was Change ZWiki Pages)
	  'Zwiki: Reparent pages' (was Reparent ZWiki Pages)
	  'Zwiki: Recycle pages' (was Send ZWiki Pages to Recycle Bin)
	  
	  Zwiki also uses zope's 'Add Documents, Images, and Files' (no change)

	 Upgrade notes: you'll need to make a note of your zwiki
	 permissions settings before upgrading and recreate them after this
	 upgrade. You'll find all the new permissions at the bottom of the
	 security page, aside from the Add permissions which are
	 unchanged. Also you may have dtml which checks for the old
	 permissions and needs to be updated. For example, the wiki
	 templates refer to the permissions by name in
	 standard_wiki_header, standard_wiki_footer and editform.

	- zwiki page 'subscribers' property replaced by 'subscriber_list'
	property; the folder also now exposes this in the ZMI.  Upgrade
	notes: old pages will be upgraded as needed, this will affect
	the last-modified times.

	- new zwiki page properties: 'creator', 'creator_ip', and
	'creation_time'

	- a 'redirectURL' REQUEST attribute can be used to control the
	destination after edit, append or comment.

	- the enclosing [] are displayed prior to page creation

	- relative paths within [] now display in their entirety 
	(instead of just the last component)

	- UI and usability tweaks for the default subscription form;
	other page subscriptions are listed

	- the folder title is now used in html page titles, in mailout
	subjects and before the word "contents" in the page header. The
	old titleprefix method is no longer used.
	
	- wikimail: only comments (made via the "comment" method) are now
	mailed out by default; to mail out all edits as before, set a
	'mailout_policy' folder property to "edits".

	- wikimail: hide mailout recipients (if Lennart Regebro's
	MailHostFix product is installed)

	- wikimail: mailout now requires either a 'mail_from' or
	'mail_replyto' folder property. If 'mail_from' is present, always
	use that for the From: field. Otherwise, show the poster's email
	address or user name. (closes IssueNo0122)
	
	- wikimail: increase wrap margin from 70 to 78 in mailouts

	- wikimail: add X-Zwiki-Version, X-BeenThere & Precedence headers

	- wikimail: basic loop protection - silently discard any incoming
	messages containing X-Zwiki-Version

	- wikimail: mailin can now create pages (JosYule)

	- wikimail: mailin can create tracker issues (see mailin.py)

	- wikimail: mailin.py now accepts mail only from subscribers
	(somewhere in the wiki) by default.  Call with 'subscribersonly=0'
	or set folder property 'posting_policy' to "open" to disable.

	- wikimail: the default destination page for mailin can be
	configured with a 'default_page' folder property

	- wikimail: use only the first plaintext part from multipart MIME
        messages

	- wikimail: use virtual host monster to help direct messages if
	present (may have some imeme-isms ?)

	- wikimail: some other tweaks to mailin delivery rules intended
	to simplify mailin alias setup (see mailin.py)

	- zwikidotorg template: header/footer/editform UI updates; display
	subscriber count in the header; set comment headings on by default
	for pages named "IssueNo*"

	- zwikidotorg template: for site logo, use the folder's
	'site_logo' property/object or the default zwiki icon.

	- add zwiki web form: made this a little more robust; added
	support for template configuration wizards (if a form or script
	named TEMPLATE_config is found, redirect there to create the wiki)


      Bug fixes

        - DeleteMe should redirect to the first existing parent
	afterwards, now working again (IssueNo0008)

        - zwiki now coexists with structured text footnote references
	(yay!). [] will link to a matching footnote if there is one,
	otherwise it is treated as a wiki link (IssueNo0110)
	
	- don't treat [] as wiki links if they contain characters which
	zope does not allow in object ids (IssueNo0090)

	- don't html-quote international characters any more. If losing
	international characters due to edits by dumb browsers is now a
	problem for you, please follow up on IssueNo0004.
	(Taewook Kang & others)

	- make wikiname regular expressions a bit more international by
	using string.upper/lowercase. You may need to modify bad_id in
	zope's OFS/ObjectManager.py also.
 	(LaloMartins, Alexy Khrabrov)

	- fix for IssueNo0112, structured text pages have extra html &
	body tags (natesain)

	- parenting tweaked to work better with acquisition/subfolders
	(IssueNo0108) (robert@redcor.ch) 
	
	- wikimail: stray html tags were being left in mailouts containing
	long quoted lines (IssueNo0087)

	- wikimail: don't add extra blank lines in mailouts
	
	- wikimail: don't send duplicates when subscribed to both page and
	wiki (IssueNo0055)

	- wikimail: calling mailin in the context of a page should always
	use that page for posting, now it does

	- wikimail: format quoted replies in mailed-in tracker issues,
	as is done with mailed-in comments (IssueNo0070)

	- zwikidotorg template & general: edit access control ui
	improvements.  Help/subscribe links now always visible;
	edit/append links conditionally visible; viewing editform requires
	edit permission; misc. color & layout tweaks.
	
	- zwikidotorg template: fix scrolling to bottom of page after
	comment

	- zwikidotorg template: don't include "set" links on backlinks,
	because they are vulnerable to robots

	- zwikidotorg template: show search and quote in header by default
	again

	- zwikidotorg template: removed the "preferred front page" option
	(IssueNo0120)

	- zwikidotorg template: adding an empty comment was giving an error
	(IssueNo0123)

	- tracker support: issuedtml page type: layout & colour scheme tweaks

	- tracker support: allow sorting by category/severity/status to
	give the expected order (see IssueNo0115)
	
	- tracker support: don't list other page types when editing an issue page

	- tracker support: don't inherit issuedtml page type when creating
	a new page from an issue page

        - Possibly fixed a bug with Add Zwiki Page permission. 

	- unit tests overhauled, cleaned out and updated. Zwiki now
        follows the latest zope testing practices. 

      API changes (summary)

        - permissions renamed (see above)
	
	- viewing editform() now requires edit permission

	- 'subscriber_list' page property replaces 'subscribers'

	- new page properties: 'creator', 'creator_ip', 'creation_time'

        - new optional folder (or page) property: 'mailout_policy'
	
        - new optional folder properties: 'mail_replyto',
	'posting_policy', 'default_page'
	
        - 'titleprefix' property/method no longer used, folder title used
	instead

	- new optional REQUEST attribute: 'redirectURL'

	- sendMailTo() now takes a list of recipients, not a string

	- subscriberList(), wikiSubscriberList(), allSubscribers() now
	return a list
	
	- new page methods: allSubscriptionsFor(email),
	otherPageSubscriptionsFor(email)

	- zwiki_mailin.py external method renamed to mailin.py

	- new mailin() arguments: 'subscribersonly', 'trackerissue'

        - wikis subdirectory renamed to templates, and filesystem
	templates now use suffix to specify zope meta_type/zwiki page_type

	- zwikidotorg template: new optional folder property 'site_logo'

	- tracker support: new page methods: category_index(),
	severity_index(), status_index()
	
Zwiki 0.9.8 2001-11-29

	- auto-cataloging no longer requires DTMLDocumentExt and adding a
	zwiki page no longer gives "AttributeError: index_object" if it's
	not present. (IssueNo0054). Zwiki uses the catalog specified by
	the SITE_CATALOG property, or "Catalog", or none.

	- the add zwiki web form complained "list.remove(x): x not in list"
	due to missing ZWiki/wikis/DEFAULTS, fixed  (IssueNo0043)

	- includes the experimental 'issuedtml' render method used by
	ZwikiTracker

	- zwikidotorg template: UserOptions was not displaying the
	username field properly

	- a somewhat important change that also went in last release:
	responsibility for generating the page header and footer
	has been moved into the render_* methods


Zwiki 0.9.7.2 2001-11-26

	- blank extra revision on each edit fixed; browsing diffs now
	works like it's supposed to (credits-to: Geoff Gardiner)
	
	- included TextFormatter.py in tarball

	- updated README, removed mention of zwikiwebs.zexp

	- added download link to announcements

	(credits-to: Ray Lance, Dietmar Gaffling)


Zwiki 0.9.7.1 2001-11-23

	- zwikidotorg template: remove "BookMarks" page reference from
	footer

	- ack it's going to be one of *those* releases :)
	zwikidotorg template: UserOptions page_type should be 
	structuredtextdtml


Zwiki 0.9.7 2001-11-23

	- another zwikiwebs change. The 'Add ZWiki Web' form now looks
	for wiki templates in both the filesystem (.../ZWiki/wikis/) and
	the ZODB (/Control_Panel/Products/ZWiki/), with filesystem taking
	precedence. The zwikidotorg template is shipped (via filesystem)
	as the default; additional templates can be installed in either
	place, or not, at user discretion.  Auto-import of zexp's has been
	disabled. (credits-to: CMFWiki)

	- new comment method added, just like append but convenient for
	adding standard comment headings
	
	- misc wikimail & comment heading tweaks; mail-outs now discard
	the comment heading if present; don't display fractional seconds
	in comment headings (credits-to: 1Jerry)

	- stopped antidecapitationkludge appearing in html source; no
	longer used in 2.4

	- misc 2.4 compatibility updates; added workaround to disable
	stxNG's footnote links on 2.4
	
	- zwikidotorg template: UserOptions cleanup; added workaround for
	zope 2.4.x-2.4.2's stx underline problem; added site logo option &
	presets
	
	- automatic cataloging is supported again. Currently, the
	DTMLDocumentExt product is assumed to be present. It's
	SITE_CATALOG property is required to activate this.
	(credits-to: DTMLDocumentExt)
	
	- textDiff now reports more localised changes, instead of spraying
	out the whole page; misc diff tweaks & fixes
	(credits-to: ndiff/difflib)

	- long lines are wrapped before diffing, and long diff chunks are
	abbreviated, for better readability in email. Currently it
	displays up to 10 deleted lines and up to 50 added lines.
	(credits-to: Hamish Lawson's TextFormatter)

	- lasttext and the diff methods accept one or more revision arguments
	(counted backwards from the latest revision).

	- the old html-format diff has been demoted to oldDiff. The new one
	colourizes textDiff's output and adds whizzy navigation links for
	stepping through the edits. (Click on the page timestamp).

	- zwikidotorg template: automatic comment headings now available
	on all pages and enabled by default on *Discussion pages; 
	horizontal rules now used
	
	- zwikidotorg template: header & footer tweaks; don't display 
	ip address for last editor

	- zwikidotorg template: subscribe form email address integrated
	with UserOptions

	- improved default subscribe form's layout; remember email address
	via cookie if possible


Zwiki 0.9.6 2001-10-22

	- zwikidotorg template updated to latest zwiki.org layout,
	example append_with_heading method added

	- mail subscribers now receive edits as well as appends

	- simple create method added to api

	- new page- & wiki-wide mail subscription mechanism
	(.../subscribeform)	

	- wiki_page_url/wiki_base_url renamed to page_url/wiki_url;
	checkEditTimeStamp/editTimestamp renamed to
	checkEditConflict/timeStamp; old api kept for backwards
	compatibility

	- code cleanups, refactoring


Zwiki 0.9.5 2001-10-13

	- the link to an uploaded file or image used to be !-escaped; this
	is no longer necessary
	
	- file upload now requires "Add Documents, Images and Files"
	permission (was "Add Documents, Files and Images")
	
	- fixed zwiki_username_or_ip() so last editor username is saved again
	
	- moved zwiki web creation into core python product, so the manual
	ZWikiWebs import is no longer needed.  The sample wikis are now
	shipped as individual zexp's in ZWiki/import, and are
	automatically imported to /Control_Panel/Products/ZWiki at product
	startup. (Install your own sample wikis there as
	well). /Control_Panel/Products/ZWikiWebs can be deleted.

	- "add zwiki web" form updates


Zwiki 0.9.4 2001-08-04

	- escaping remote wiki links with ! should now work

	- tests have been completely reorganized and updated

	- added custom __repr__ from CMFWiki
	
	- refactored code into multiple modules, following CMFWiki.
	Encapsulated some functionality in mix-in classes.

	- another stx fixup: a single letter followed by a period is no
	longer mistaken for a numeric bullet
	
	- fix for one of 0.9.3's stx fixups: spurious html comments no
	longer appear in stx examples

	- exposed the "zwiki_username_or_ip" utility method, which given
	REQUEST returns a best guess for username (authenticated user,
	zwiki_username cookie, or ip address)

	- experimental "lasttext" and "diff" methods show the text of a page's
	last revision and a concise diff with the latest

	- bare/noheader/nofooter flags can now also be passed as keyword args

	- from WikiForNow: wiki-linking is now inhibited within 
	- <pre></pre>
	- <code></code>
	- structured text :: examples
	- structured text '' quoted code
	- html tags.
	
	- append permission now works

	- tweaked the anti-javascript hack

	- tweaked the anti-decapitation kludge

	- added plainhtmldtml mode (DTML + HTML, nothing else)


Zwiki 0.9.3 2001-05-02

	- creating/editing/deleting pages with eg spaces in the name has
	been broken for a while, it seems - made some fixes in this area
	
	- made the edit conflict message more helpful

	- relaxed edit conflict checking: if your username & ip address
	match the last editor's, the timestamp will be ignored.  In other
	words, you can no longer have an edit conflict with yourself.
	This means eg you can backtrack in your browser, edit and click
	Change again. This change may disable conflict checking amongst
	anonymous users coming through a proxy.

	- renamed the "username" property to "last_editor", added
	"last_editor_ip", made these read-only in the mgmt. interface.
	Existing zwiki pages are upgraded when viewed. &dtml-username; is
	still supported for backwards compatibility, but deprecated;
	use &dtml-last_editor_or_ip; by preference.

	- stx workaround: trailing blank lines no longer cause unwanted
	headings

	- stx workaround: initial word plus period no longer becomes a
	numeric bullet

	- stx workaround: whitespace after :: no longer prevents example
	formatting
	
	- stx headings on first lines were broken - fixed
	
	- fix for a 0.9.1 bug: with hierarchy display enabled, creating a
	new page from a top-level page gave "typeerror"

	- gopher: urls are now recognized

	- renamed {wiki,page}_path to {wiki,page}_url in 0.9.2


Zwiki 0.9.2 2001-04-26

	- added a bunch of wiki_{page,base}_url variants for testing purposes

	- about: urls are now recognized

	- fixed a potential DeleteMe error message caused by incorrect parents

	- allow standard_wiki_page to be defined as a folder property
	
	- added plainhtml render mode - HTML only, no wiki-linking

	- test suite updates, documentation


Zwiki 0.9.1 2001-04-24

	-  allow non-wiki paths in []

	- image file names in [] are auto-inlined

	- use uploaded image size to help "add file/image" decide whether to inline
	
	- reset parents when they have become outdated/confused

	- folder attribute "standard_page_type" overrides type of all new pages

	- display new page name when creating a page

	- record username when creating a page

	- renamed wiki_page_url(), wiki_base_url() to page_path(),
	wiki_path(). The old names, used throughout existing dtml code,
	are supported but deprecated

	- made remotewikilinks more careful to avoid trailing punctuation

	- allow []-named pages in remote wiki links

	- disable structured text's [] footnote linking to avoid conflicts


Zwiki 0.9.0 2001-04-23

	- added append method

	- simple email notification (PageSubscribers)

	- made wikilinks absolute for greater robustness

	- header/footer layout tweaks

	- made last editor's authenticated username override username cookie

	- proxy role tweak

	- added file/image upload

	- added more detailed permissions

	- refactored edit()

	- changed/reverted wiki_{page,base}_url as per Christian Scholz
	for virtual hosting
	
	- allowed https: urls

	- allowed + and $ in remote wiki links


Zwiki 0.8.1 2001-01-04

	- added (experimental) page deletion

	- record IP address when username cookie is blank

	- make disabled javascript tags visible

	- added more unit tests


Zwiki 0.8.0rc1 2000-12-14

	- log last editor's IP address if there is no username cookie

	- wrapped a bunch of long lines

	- unit tests - added support for ZUnit and DocTest, and a few
	initial tests. http://zwiki.org/zwikidir/Makefile.sample contains
	some useful recipes for automated testing.

	ZWikiWebs.zexp: incorporated latest zwiki.org tweaks, namely:

	- removed a spurious menu from the add zwiki web form	

	- added UserOptions to the default BookMarks and removed it from
	the page footer

	- bookmarks, quote, search box and hierarchy may all be turned on
	or off in UserOptions

	- the default home page is now a user option

	- user options & search box tab ordering fixed

	- always show the editform even for write-protected pages, with
	appropriate header/footer color

	- page history is now accessible

	- simplified RecentChanges 

	
Zwiki 0.7.1 2000-11-03

	- fixed broken line-ending handling and non-rendering of initial
	  lines containing ":" in dtml modes

	- return to the wiki page after clicking the reparent button

	- added warning of incompatibility with old dtml methods to readme

	
Zwiki 0.7.0 2000-10-31 "Halloween!"

	- cookie-based user options, including edit form size, timezone,
	  bookmarks and wikiwikiweb-style username (help from Phil Armstrong)

	- ZWiki is now zope 2.2-compatible (Garth Kidd) and -requiring,
	  and benefits from the 2.2 security model. Executable dtml pages
	  now run with those permissions that are common to both the
	  page-viewing user and the wiki web's owner. Set the folder's
	  owner to limit the permissions of executable pages.

	- incorporated & updated Chris Withers' product for creating wiki webs

	- added streamlined "hierarchal2" wiki style & other layout tweaks

	- wikiwikiweb-style late page creation

	- added simple javascript-disabling code

	- made paths work with virtual hosting again (Evan Simpson)

	- fixed unreliable ! line protection in structuredtext modes

	- fixed unreliable remote wiki links in classicwiki mode

	- more permissive remote wiki link regexps (Geoff Gardiner)

	- "with this" dtml kludge no longer needed

	- added built-in defaults for all dtml methods

	- simpler, more consistent urls & api

	- code refactoring/cleanups, other misc. bugfixes


Zwiki 0.6.1 2000-05-03

	- documented permission configuration in zwiki_examples/index_html

	
Zwiki 0.6 2000-05-02 "skins-structure-permissions"

	- wikinames must now start on a word boundary

	- added # and = to url regexp

	- try allowing numbers in wikinames

	- added utility methods wiki_base_url & wiki_page_url

	- added KenManheimer's hierarchy & navigation code

	- added JimFulton's edit conflict safety belts for http & ftp

	- added jim's permission & validation patch

	- add & change zwiki page permissions are now functional

	- reorganized & expanded example content

	- deemphasised DTML-enabled content where not needed - 
	  changed pages to structuredtext where possible, 
	  restricted permissions on the rest, changed the default
	  page type to structuredtext


Zwiki 0.5 2000-03-27 "simple"

	- simplified the default wiki content & page layout

	- disabled catalog support for the moment


Zwiki 0.4 2000-02-14

	- new sample wiki, defaults to structuredtextdtml mode only

	- bare urls are automatically hyperlinked, others should be left alone

	- extensible markup modes - you can add your own render methods

	- code cleanups

	- tweaked markup modes for usability (see new TextFormattingRules)

	- made validation of newly-edited DTML more accurate

	- ZWikiPages are catalog-aware (mostly.. still some issues ?)

	- added RemoteWikiLinks

	- bracketed numbers are no longer wikilinks, so StructuredText's 
	  footnotes can work


Zwiki 0.3 1999-11-14

	- sample wiki: included latest DTML features from ZWikiWeb - 
	  SearchPage, JumpTo, AnnoyingQuote, separate edit page, etc etc.

	- multiple markup formats - 
		structured text
		classic wiki (TresSeaver)
	  	HTML/DTML
		plain text

	- better international character handling (AlexandreRatti)

	- LFCR line-terminations are converted to LF

	- tweaked editform layout

	- source cleanup

	- renamed default_wiki_page to standard_wiki_page for consistency

	- ! at the beginning of a line protects it from wiki translation


Zwiki 0.2 1999-11-08

	- now checks for valid DTML & reports errors

	- no longer requires "view management screens" permission

	- tweaked wikilink regexp

	- new icon

	- misc fixes

	- standard_wiki_header, standard_wiki_footer & default_wiki_page
	  have built-in defaults; define as dtml methods to override

	- sample wiki: AllPages is a zwikipage; pagenames with spaces 
	  are listed properly

	- sample wiki: added a RecentChanges page

	- sample wiki: simplified


Zwiki 0.1 1999-11-05 

	- initial development release
