I'm going to try and outline some notes from the Wiki session at DrupalCon. I may have missed some big ones. This is a good example of where a wiki would be nice - to make this list. Is it safe to say it is not certain whether to use Drupal modules and glue to make a wiki, or whether to integrate a wiki into Drupal? Maybe it depends on the case?
Basic and necessary
Access control
This may be related to also the ability to have multiple wikis, but it is about who can edit the wiki. A possible approach is node access based on cck type, or a module that allows full node access awareness for cck nodes (right now it is just whether a role can create a certain type, but no viewing by role is handled).
Write in wiki format or in html
Ability to use tinyMCE or just the plain textarea, switch back and forth, etc. and tinyMCE should never gobble anything up. This was discussed at the DrupalCon presentation, but I do not have links to anything yet.
Category assignment
this can just be done using a textfield and free tagging, it's better than writing Category: blah blah on every page you make.
Revisioning and rollback
this is already done. Save as draft is helpful if you want to moderate your wiki.
http://drupal.org/node/48731
Diffing revisions
This is handled to an extent in http://cvs.drupal.org/viewcvs/drupal/contributions/modules/diff/ but Moshe explained it could work better, maybe work better with HTML.
Links back to a page
this may be done using the links module, but it's the idea of what links to a given story which is like the References section on the bottom here http://en.wikipedia.org/wiki/Drupal It would be nice to have this automated as opposed to having to manually assign node references.
http://cvs.drupal.org/viewcvs/drupal/contributions/modules/links/
CamelCase
Make a new page using new page or whatever - this is already done, but may just be buggy
http://cvs.drupal.org/viewcvs/drupal/contributions/modules/freelinking/
Advanced and would be nice
Making Table of Contents for a single page
this could also be special markup/filter and is a matter of some regex work. You can see an example of it here http://en.wikipedia.org/wiki/Drupal where it says "Contents"
Multiple wikis
So, you could have wiki_drupal-development/ which is a wiki about drupal development, and then you could have wiki_wordpress-development so you have two wikis, and so if you CamelCase within one of them, it will put your new page in the correct wiki.

Comments
another one for basic would
another one for basic would be an extension of search to search just within a wiki, so maybe that could be controlled by searching just under a given url, like only search within /wiki/ or /wiki-drupal/ or /wiki-wordpress/.
This could also be done already if the wiki was done by using just a specific cck type - then you'd just search within that content type and could have a little module which assisted in setting up that content specific search. a nice detail maybe
Discussion pages?
Most wikis have discussion pages attached to the wiki pages, where discussion about further editing is done. How would that be done in Drupal?
I forgot this one - it was
I forgot this one - it was discussed that the comments which appear at the bottom of a node could possibly be put up as a tab next to where view | edit are. I think a question was whether this could be done nicely with the way comments work now, or would something have to be changed?
wiki404 for adding non existent pages
Just adding a node - An additional module for making pages that do not exist like a wiki is http://cvs.drupal.org/viewcvs/drupal/contributions/modules/wiki404/
WikiPage as new content type?
Not sure if you discussed about Wiki:
* as a new content type or
* just as new way of producing content and it's relations or
* separate module that would integrate with Drupal site in some way?
I have been wanting to do
I have been wanting to do Wiki with drupal for quite sometime.
Recently I came across the CCK Subform form content type. And I have wondering if that would be useful in creating a WikiPage.
In my mind, a Wiki Part from the markups and editing capabilities needs to offer the following main choices. And I am thinking atleast some of these needs can be met by the following current modules.
What do yall thinking.
Sarvi
Basic plan for my site
I agree with much of what has been discussed above. Over the past few months I've been trying to think through the best way of implementing a wiki-style area of my website. One concern I had is that more than one wiki page with the same title could concievably be created (need a way to disambiguate by categories if necessary). I would love to see a diff module that produces much cleaner HTML output. Is there any way we could borrow from MediaWiki's version?
Regarding "talk pages", I was thinking that the most feasible solution would be to create a tab that would link you to an (automatically created) forum where you can post topics and comments regarding the page. Would this be more flexible than a simple comment structure?
getting there
as evidenced by wiki pages on this site, we are making slow progress. i look at this post now and see this is a doable task.
alredy there?
I would say you can already setup a wiki with drupal. A place to do collaborative editing with automatic linking and page creation is already available, and this is in my opinion the main idea behind a wiki. Some nice-to-have features are still missing, but nothing really necessary.
I did a quick setup for a wiki: http://test.tschannen.net
It won't stay there forever, so have a look now. The setup is basically the same as here: Syntax filter, freelinking and diff are used.
Getting some attention
rötzi, your test wiki is already getting some excellent input. Please do make sure its interesting content is recorded somewhere here before you take it down! :)
Paul Chvostek — Developer, integrator, Internet plumber.
What about MediaWiki integration?
I love the new wiki page (thx Moshe!), but unless I'm missing something the formatting isn't compatible. Is there any way to move (cut/paste or some other format) between Drupal wiki and MediaWiki? I'm sure this has been asked before...
Gus Austin
Director of Chaos and Confusion
PepperAlley Productions
What am I trying to do with Drupal?
Gus Austin
markdown
we use markdown on this site. mediawiki uses own syntax. you can choose what you want for your own site.
Waiting for a real MediaWiki integrator
While missing a real MediaWiki integrator module/suite in Drupal, I have started playing around with a creepy little hack. I downloaded the contemplate module, created a new template named "remote mediawiki article" and then included only the following code in the body field:
<?phpprint file_get_contents('http:/my-mediawiki-server/wiki/' . $node->title . '?action=render');
?>
Which then will show any the article with the same name as the current node title, from the specified mediawiki site.
( action=render gives only the page content. Also add one slash before 'test'.)
Now I can control all the authentication et.c. within Drupal, while storing and building all the content on the MediaWiki. ...which is optimal, because I then can use the oh-so-potent MW's templates. Just missing the feature to also edit the wiki content inline in Drupal, (maybe) having the search index in Drupal et.c. et.c.
Samuel Lampa
MediaWiki / Drupal Theme design
Samuel Lampa
RIL Partner AB
MediaWiki syntax
By the way, did you try Liquid wiki module? It uses MediaWIki syntax, even though not completely. Some features like templates aren't included... =(
Samuel Lampa
RIL Partner AB
Auto create new node
How did you set it up to create a new node when clicking on a newly created freelink - is it the wiki404 module? I installed head for wiki404 and I'm not sure it is 5 compliant as it doesn't show up in list of modules.
I use freelinking to create
I use freelinking to create new nodes automatically. The PEAR Wiki filter redirects all links to freelinking, so they work together for this.
The wiki404 module I use is self-written. I wasn't aware there is a module with the same name, so the naming was unlucky...
My module just redirects 'wiki/unknown' to 'freelinking/unknown' und thus redirects to either an existing page (found by freelinking) or to a create node page (redirected by freelinking).
Freelink vs wiki404
I'm confused in the difference between Freelink and wiki404 (which, I take it, is not available). It appears that with Freelink you can only create the page from the Freelink listing of pages. Is your wiki404 module (not the module listed under /projects/wiki404) the thing that allows the creation of a new page when you click on a link that doesn't exist as a page?
My wiki404 module
I had a quick look at the wiki404 module available from drupal.org and it has basically the same effect. The drupal.org module redirects 404 errors to the node creation page. My module just redirects a non-existing path below 'wiki' to 'freelinking' which does then checks if a page with the same name (case insensitive) exists or not, and then either redirects to the page or to the node creation form. Have a look at my module:
http://test.tschannen.net/wiki/wiki404
wiki404_redirect
Hi rötzi, under your module, wiki404_redirect, it shows:
function wiki404_redirect() {if (arg(0)=='wiki' && arg(1)) {
drupal_goto('freelinking/'.urlencode(arg(1)));
} else {
return drupal_not_found();
}
}
arg(0) is expecting 'wiki' - is 'wiki' a category term?
Also, what are your settings under freelink? I'm not sure mine is set correctly.
no category
No, wiki is no category. I instructed pathauto to create the path aliases for wiki pages as 'wiki/[title]'. By this I restrict the wiki part of the page to reside under 'wiki' and the rest of the page is not affected by it. This just gives a separation from the wiki and the rest of the page.
Site settings:
New content type: wiki (just a default content type like 'page')
set to 'create new revision'
freelinking settings:
Default for new content: wiki
What to do if content not found: Search for content if user can't create
Restrict free links to this content type: wiki
Allow CameCase linking: no (not necessary since the freelinking filter is not used anyway)
Only link first occurence: no (not necessary since the freelinking filter is not used anyway)
input format:
New input format using PEAR Wiki filter only. freelinking filter is NOT enabled, but on the configuration page of the wiki filter it is set to 'use freelinking'.
pathauto:
Path alias for wiki node type: wiki/[title]
Lots of settings
I got a lot of the settings wrong. When I reset them, created the wiki content type, disabled most of the "use freelinking", added wiki/[title] to pathauto for wiki node type, it won't redirect. I ensured that I had the newest version of pathauto, freelink, and your pear wiki. It simply won't redirect to a new page with the title already filled out.
Just curious, when you say:
freelinking filter is NOT enabled, but on the configuration page of the wiki filter it is set to 'use freelinking'.Do you mean to check the box "Use wiki links?" On the config page for wiki input format ther is no option to 'use freelinking'.
freelinking
I just mean that the freelinking filter is not enabled in the format which uses the pearwiki filter. The module has to be enabled, and the pearwiki filter set to 'use wikilinks' and 'use freelinking'. If you don't see the 'use freelinking' option that means you are not using the developement version of pearwiki filter. You have to use the dev version or get it from CVS.
Success!
Yep, that was it, needed the dev version. Thanks a ton! I'm in love. Now I'm looking at Rep[lacement]Tags module to see if I can turn ~~~~ into a signature with date.
It is possible to get a
It is possible to get a little README about you configuration ?
I am very interesting how you integrate the Wiki in a Drupal site.
Thanks
MiStErLu
how to
I wrote a little how to. I never tried it myself but I hope I didn't forget anything too important.
http://test.tschannen.net/wiki/how_to_install_this_type_of_wiki_with_dru...
Found this recipe to work
Found this recipe to work quite nicely:
http://drupal.tschannen.net/wiki/set_up_a_wiki_with_drupal_5
I'll definitely use it in the future.
Mike
OpenConcept | WLP | FVC | OX | OO
--
OpenConcept | Twitter @mgifford | Drupal Security Guide
Updated link for recipe
If you find that the above link isn't working, here is an archived link for the recipe on how to set up a wiki:
http://web.archive.org/web/20070311234253/http://drupal.tschannen.net/wi...
Also, see my post on how the OpenConcept setup went, using this recipe:
http://openconcept.ca/blog/internal_wiki_setup
I'm moving to Drupal (if I can)
Hy, I am new to Drupal. I started a wiki site for church worship resources on wikispaces.com and my friend suggested I build my own site with Drupal. Can someone point me in the right direction for BABY STEPS to setting up a Drupal Wiki site.
Here is my current wiki site. www.worshiporange.com
Can someone please help?
setting up a wiki
I've been working on a drupal wiki for a few days now. Its got the usual modules often mentioned such as wikitools,talk, diff. Added CKeditor, flexifilter and freelinking, though recreating the mediawiki style balance between a wysiwyg editor and wiki markup is beyond my capabilities. Also using the default mediawiki filter from flexifilter conflicts with the freelinking markup ( [[]] creates links to wikipedia). Gotta work on that. So I really have to decide either still with the wysiwyg editor or mediawiki filter.
A demo of the wiki. Guests can edit the wiki but creating new pages is disabled. I wouldn't call these baby steps mainly because I wrote up the steps on the fly. I thought of using drupal for a wiki because I can add more non wiki related features to the site. I'm sure mediawiki, foswiki and tikiwiki can be modified as well but I've been learning drupal for a little while now.
about wiki pages
i need to add wikipages to my drupal site.Is there any tutorials or a step by step guide to add wikipages to the drupal site . I am using drupal7. or any useful links to setup wiki pages on the drupal site.
mediawiki to Drupal
Hi, have a look at http://cwgordon.com/how-to-create-a-wiki-with-drupal . It is a fairly old thread, but has some sort of a step by step. We are looking to convert our extensive Mediawiki setup wiki.2value.nl to Drupal. I am interested in how to's as well.