├── refresh.txt ├── tests ├── __init__.py ├── Comments_tests.py ├── Diff_tests.py ├── functional_tests.py ├── Catalog_tests.py ├── Utils_tests.py ├── CMF_tests.py ├── Views_tests.py ├── Archive_tests.py ├── init_tests.py └── I18n_tests.py ├── version.txt ├── plugins ├── rating │ ├── __init__.py │ ├── rating_tests.py │ └── ratingform.pt ├── tracker │ ├── __init__.py │ ├── filterissues.pt │ ├── issuebrowser.pt │ ├── issuetracker.pt │ ├── issuepropertiesform.dtml │ └── tracker_tests.py ├── README.txt ├── pagetypes │ ├── rst_tests.py │ ├── stx_tests.py │ ├── plaintext_tests.py │ ├── plaintext.py │ ├── html_tests.py │ ├── common_tests.py │ └── html.py ├── rss_tests.py ├── __init__.py └── tinymce.py ├── pagetypes ├── html.py ├── rst.py ├── stx.py ├── common.py ├── plaintext.py └── __init__.py ├── Extensions ├── __init__.py ├── README.txt ├── Install_tests.py └── Install.py ├── skins └── zwiki │ ├── star.png │ ├── blank_star.png │ ├── wikipage_icon.gif │ ├── wikipage_plone_icon.gif │ ├── wikifooter.pt │ ├── testtemplate.pt │ ├── wikiheader.pt │ ├── pagefooter.pt │ ├── sitefooter.pt │ ├── siteheader.pt │ ├── subtopics_outline.dtml │ ├── README.txt │ ├── content.pt │ ├── wikiindex.pt │ ├── helppage.pt │ ├── searchwiki.pt │ ├── useroptions.pt │ ├── wikistats.pt │ ├── recentchanges.pt │ ├── genericerror.pt │ ├── denied.pt │ ├── badtemplate.pt │ ├── Index.dtml │ ├── wikipage.pt │ ├── maintemplate.pt │ ├── hierarchylinks.pt │ ├── addwikipageform.dtml │ ├── subtopics_board.dtml │ ├── history.pt │ ├── contentspage.pt │ ├── head.pt │ ├── accesskeys.pt │ ├── addwikiform.dtml │ ├── commentform.pt │ ├── RecentChanges.dtml │ ├── pageheader.pt │ ├── pagemanagementform.pt │ ├── diffform.pt │ └── links.pt ├── PageTypes.py ├── content └── basic │ ├── index_html.dtml │ ├── WikiWikiWeb.stx │ ├── ZWiki.stx │ ├── sitemap.xml.dtml │ ├── FrontPage.stx │ └── standard_error_message.dtml ├── .cvsignore ├── scripts ├── view_source.dtml ├── README.txt ├── pagesByType.dtml ├── propreplace.py └── print.dtml ├── bin ├── README.txt ├── summarize ├── prepmoin.py └── zwikiexport.py ├── profiles └── default │ └── types.xml ├── index.txt ├── Permissions.py ├── README.txt ├── .authorspellings ├── setup.py ├── i18n ├── plone-fi.po ├── plone-ja.po ├── zwiki-plone.pot ├── plone-ru.po ├── plone-zh_CN.po ├── plone-zh_TW.po ├── plone-he.po ├── plone-br.po ├── plone-pl.po ├── plone-es.po ├── plone-it.po ├── plone-tr.po ├── plone-sv.po ├── plone-hu.po ├── plone-pt.po ├── plone-nl.po ├── plone-pt_BR.po ├── plone-de.po ├── plone-fr.po └── __init__.py ├── .sphinx.mk ├── Splitter.py ├── CONTRIBUTORS.txt ├── Defaults.py ├── conf.py └── Archive.py /refresh.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 2.0b1 2 | -------------------------------------------------------------------------------- /plugins/rating/__init__.py: -------------------------------------------------------------------------------- 1 | import rating 2 | -------------------------------------------------------------------------------- /plugins/tracker/__init__.py: -------------------------------------------------------------------------------- 1 | import tracker 2 | -------------------------------------------------------------------------------- /pagetypes/html.py: -------------------------------------------------------------------------------- 1 | from Products.ZWiki.plugins.pagetypes.html import * 2 | -------------------------------------------------------------------------------- /pagetypes/rst.py: -------------------------------------------------------------------------------- 1 | from Products.ZWiki.plugins.pagetypes.rst import * 2 | -------------------------------------------------------------------------------- /pagetypes/stx.py: -------------------------------------------------------------------------------- 1 | from Products.ZWiki.plugins.pagetypes.stx import * 2 | -------------------------------------------------------------------------------- /Extensions/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is there to make the module importable 2 | -------------------------------------------------------------------------------- /pagetypes/common.py: -------------------------------------------------------------------------------- 1 | from Products.ZWiki.plugins.pagetypes.common import * 2 | -------------------------------------------------------------------------------- /pagetypes/plaintext.py: -------------------------------------------------------------------------------- 1 | from Products.ZWiki.plugins.pagetypes.plaintext import * 2 | -------------------------------------------------------------------------------- /skins/zwiki/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmichael/ZWiki/HEAD/skins/zwiki/star.png -------------------------------------------------------------------------------- /PageTypes.py: -------------------------------------------------------------------------------- 1 | # backwards compatibility 2 | from pagetypes.common import * 3 | from pagetypes import * 4 | -------------------------------------------------------------------------------- /plugins/README.txt: -------------------------------------------------------------------------------- 1 | You can plug in new plugins - mixin classes for ZWikiPage - here. See __init__.py. 2 | -------------------------------------------------------------------------------- /skins/zwiki/blank_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmichael/ZWiki/HEAD/skins/zwiki/blank_star.png -------------------------------------------------------------------------------- /skins/zwiki/wikipage_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmichael/ZWiki/HEAD/skins/zwiki/wikipage_icon.gif -------------------------------------------------------------------------------- /Extensions/README.txt: -------------------------------------------------------------------------------- 1 | External Methods, to be installed in the ZODB. 2 | 3 | Install.py - standard CMF/Plone install script 4 | -------------------------------------------------------------------------------- /skins/zwiki/wikipage_plone_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmichael/ZWiki/HEAD/skins/zwiki/wikipage_plone_icon.gif -------------------------------------------------------------------------------- /content/basic/index_html.dtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /skins/zwiki/wikifooter.pt: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 | 6 | 7 | -------------------------------------------------------------------------------- /.cvsignore: -------------------------------------------------------------------------------- 1 | .* 2 | _darcs 3 | *.pyc 4 | *~ 5 | *.mo 6 | old 7 | Part* 8 | darcs* 9 | patch* 10 | dtmlmessages.pt 11 | *.darcs 12 | *.diff 13 | NOTES 14 | -------------------------------------------------------------------------------- /skins/zwiki/testtemplate.pt: -------------------------------------------------------------------------------- 1 | container= 2 | here= 3 | -------------------------------------------------------------------------------- /scripts/view_source.dtml: -------------------------------------------------------------------------------- 1 |
2 | 
3 | 
4 | 5 | -------------------------------------------------------------------------------- /bin/README.txt: -------------------------------------------------------------------------------- 1 | Command-line utilities, to be used on the filesystem. 2 | 3 | zwikiimport.py - import a directory tree into a wiki 4 | zwikiexport.py - export a wiki or wiki page to the filesystem 5 | -------------------------------------------------------------------------------- /profiles/default/types.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /skins/zwiki/wikiheader.pt: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
6 |
7 | 8 | 9 | -------------------------------------------------------------------------------- /skins/zwiki/pagefooter.pt: -------------------------------------------------------------------------------- 1 | 2 | 3 |