Moinmoin Documentation Release 0.1.Dev196+G250faa1

Total Page:16

File Type:pdf, Size:1020Kb

Moinmoin Documentation Release 0.1.Dev196+G250faa1 MoinMoin Documentation Release 0.1.dev196+g250faa1 The MoinMoin developers Aug 22, 2021 Contents 1 General 3 1.1 About MoinMoin.............................................3 1.2 What makes MoinMoin special?.....................................4 1.3 Who is using MoinMoin?........................................4 2 Features 7 2.1 Operating System Support........................................7 2.2 Servers..................................................7 2.3 Authentication..............................................8 2.4 Authorization...............................................8 2.5 Anti-Spam................................................8 2.6 Storage..................................................8 2.7 Search / Indexing.............................................9 2.8 User Interface..............................................9 2.9 Logging.................................................. 10 2.10 Technologies............................................... 11 3 License 13 4 Using MoinMoin 21 4.1 User Accounts.............................................. 21 4.2 Markups Supported by MoinMoin.................................... 24 4.3 Templates and Meta Data........................................ 77 4.4 Searching and Finding.......................................... 78 4.5 File Upload................................................ 81 4.6 Namespaces............................................... 82 4.7 User Subscriptions............................................ 82 5 Administrating MoinMoin 85 5.1 Requirements............................................... 85 5.2 Installation................................................ 86 5.3 Installation (for developers)....................................... 87 5.4 Server Options.............................................. 90 5.5 Introduction into MoinMoin Configuration............................... 92 5.6 Wiki Engine Configuration........................................ 94 5.7 Framework Configuration........................................ 118 5.8 Logging Configuration.......................................... 118 i 5.9 Changes in MoinMoin.......................................... 119 5.10 MoinMoin Version History........................................ 119 5.11 Upgrading................................................ 119 5.12 Backup and Restore........................................... 121 5.13 Indexes.................................................. 122 5.14 Password Resetting/Invalidation..................................... 125 5.15 Moin Command Line Interface..................................... 127 6 Getting Support for and Contributing to MoinMoin 131 6.1 MoinMoin Supports You......................................... 131 6.2 You Support MoinMoin......................................... 132 6.3 Translating MoinMoin.......................................... 133 7 Developing of MoinMoin 137 7.1 Development............................................... 137 8 Autogenerated API docs 147 9 Indices and Tables 149 ii MoinMoin Documentation, Release 0.1.dev196+g250faa1 Warning: This documentation only applies to MoinMoin version 2 (aka moin2, moin 2.0, mm2, MoinMoin2, etc.), except where explicitly noted otherwise. Moin2 is very different from moin 1.x, so docs from one version will not apply to the other. Contents 1 MoinMoin Documentation, Release 0.1.dev196+g250faa1 2 Contents CHAPTER 1 General 1.1 About MoinMoin MoinMoin is a wiki engine written in Python. It is Free and Open Source Software under GNU GPL v2+. For details please read the License. Project homepage: https://moinmo.in/ Using MoinMoin, wiki users can easily create and maintain web content from their browser. You can use it: • as an easily-maintained web site • as a knowledge base • for taking notes • for creating documentation You can use it for: • your company / organisation, your work group • your school, college, or university • your projects and interests • just yourself You can run it on: • a public web server • an intranet server • your desktop or laptop • Linux, Mac OS X, Windows, and other OSes 3 MoinMoin Documentation, Release 0.1.dev196+g250faa1 1.2 What makes MoinMoin special? Moin tries to be a great wiki engine, which encompasses: powerful, extendable and easy-to-use. We don’t try to be everything, but we don’t try to be minimalistic either. There are lots of wiki engines out there, making it hard to pick one. However, choosing wisely is important because you may have to live with your choice for a long time because switching wiki engines is not easy. We won’t list all of moin’s features, because comparing feature lists is just not enough. Some features are best left unimplemented, even if they sound great at first. In moin, you will find most important features like in most major wiki engines. But still, you and your wiki users might feel quite a different overall experience just because of a bunch of small, superficial differences. Of course the quality of some features’ implementations can vary greatly. Thus, you have to try it and play with it, not just look at feature comparisons. MoinMoin has been around since about 2000. It has rapidly grown and evolved through moin 1.9.x. Its developers have increased their experience with Python and wiki technology over the years. With moin 2.0, there has been a rather revolutionary cleanup / rewrite of how moin works based on that experience. This promises to make it easier, cleaner, more consistent, more powerful, more flexible and more modular. Moin is written in Python, an easy to read, high-level, object-oriented, dynamic, well-designed and platform- independent programming language. Moin is Free Software (that implies that it is Open Source) and, because we use Python, you may even like to read and modify moin’s code. 1.3 Who is using MoinMoin? This shows some of the better-known users of MoinMoin: 1.3.1 Web Sites • KernelNewbies, Xen, LinuxWireless, GCC • Debian, Ubuntu, CentOS • Apache, Gnome, Wine, OpenOffice, Squid, Exim, Dovecot • Python, ScyPy, TurboGears • Mercurial, Darcs • FSFE, FFII, c-base, MusicBrainz • linuxwiki.de, jurawiki.de, ooowiki.de and . moinmo.in :D For links and more sites, please see: https://moinmo.in/MoinMoinWikis You may also add missing moin-based sites there. 1.3.2 Intranet installations We know that there are a lot of private intranet installations of MoinMoin in: • enterprises, companies • government and administration • scientific research facilities, universities, schools 4 Chapter 1. General MoinMoin Documentation, Release 0.1.dev196+g250faa1 • communities Unfortunately, we do not have permission to name them here. 1.3. Who is using MoinMoin? 5 MoinMoin Documentation, Release 0.1.dev196+g250faa1 6 Chapter 1. General CHAPTER 2 Features 2.1 Operating System Support Moin is implemented in Python, a platform-independent language. It works on Linux, Mac OS X, Windows, FreeBSD and other OSes that support Python. That said, Linux is the preferred and most tested deployment platform and will likely have fewer issues than, for example, Windows. 2.2 Servers • Builtin Python server from werkzeug, which is easy to use. • Any server that talks WSGI to moin: – Apache2 with mod_wsgi – nginx with uwsgi – IIS with isapi-wsgi (not recommended - if you must use Windows, but have a choice concerning the web server, please use Apache2). – Other WSGI servers, see http://wsgi.org/ • With the help of flup middleware about any other server speaking: – fastcgi – scgi – ajp – cgi (slow, not recommended) 7 MoinMoin Documentation, Release 0.1.dev196+g250faa1 2.3 Authentication • Builtin - username / password login form of moin, MoinAuth • Builtin HTTP Basic Auth - browser login form, HTTPAuthMoin • Auth against LDAP / Active Directory (LDAPAuth) • Any authentication your web server supports via GivenAuth 2.4 Authorization • Content Access Control Lists (ACLs) – global, using a mapping, so you can apply ACLs on parts of the namespace – local, per wiki item – give rights, such as: * create, destroy * read, write, rename * admin – to: * specific users * specific groups of users * all logged-in users * all users • Function ACLs 2.5 Anti-Spam • Form Ticketing 2.6 Storage 2.6.1 Item Types • we store data of any type, such as text, images, audio, binary • we separately store any metadata • everything is revisioned 8 Chapter 2. Features MoinMoin Documentation, Release 0.1.dev196+g250faa1 2.6.2 Storage Backend Types • file system • sqlite3 • everything supported by SQLalchemy • you can easily add your own backend with little code 2.6.3 Serialization • dump backend contents to a single file • load backend contents from such a file 2.7 Search / Indexing • important metadata is indexed • content data is converted (if possible) and indexed • fast indexed search, fast internal operations • flexible and powerful search queries • search current and historical contents • using a shared index, find content in any farm wiki 2.8 User Interface 2.8.1 OO user interface • Most functionality is done in the same way no matter what type your wiki item has. 2.8.2 Templating • Theme support / User interface implemented with templates 2.8.3 Wiki features • Global History for all items (full list) • Latest Changes (“Recent Changes”), only lists the latest changes of an item • Local History for one item (“History”) • Diffs between any revision – text item diffs, rendered nicely with html – image diffs – binary “diff” (same or not same) 2.7. Search / Indexing 9 MoinMoin Documentation, Release 0.1.dev196+g250faa1 • Tags / Tag Cloud • Missing Items • Orphaned Items • “What refers here?”
Recommended publications
  • Wikis with Moinmoin Wiki Creative Group Writing
    KNOW HOW MoinMoin Wiki Building wikis with MoinMoin Wiki Creative Group Writing The members of a project team can profit from collecting their ideas, or any loose ends, in a central repository. Wikis are tailor-made for this task. BY HEIKE JURZIK ay before content manage- ment systems started to Wappear for website manage- ment, Wikis provided a kind of “open door” to HTML pages, allowing any visi- tor to click and edit the HTML content. Wiki is the abbreviation for WikiWiki- Web – “wiki wiki” is derived from Hawaiian and means “quick” or “quickly”. And the open authoring sys- restored at any time, should a page be MySQL, Oracle, or PostgreSQL. The soft- tem certainly is quick. The MoinMoin deleted or damaged by mistake. Also, ware then uses this data to create the Wiki engine is one of the better-known wikis allow you to assign special access public HTML pages. implementations of this technology. controls that can restrict editing to regis- Besides taking a look at the original Users can click to launch the embed- tered users, if required. wiki, you might like to visit what is cur- ded editor and access the content and The first wiki website was published rently the biggest wiki on the Web, the structure of the page they want to mod- by Ward Cunningham in 1995, and it is Wikipedia [3], which offers innumerable ify. Typically, an Edit link is provided to still online [1]. At the time, Cunningham articles on pages in multiple languages. make things easier. wrote an email message saying that he It is an example of how well information In contrast to “real” HTML, which had programmed a new kind of database can be organized with a wiki.
    [Show full text]
  • Research Article Constrained Wiki: the Wikiway to Validating Content
    Hindawi Publishing Corporation Advances in Human-Computer Interaction Volume 2012, Article ID 893575, 19 pages doi:10.1155/2012/893575 Research Article Constrained Wiki: The WikiWay to Validating Content Angelo Di Iorio,1 Francesco Draicchio,1 Fabio Vitali,1 and Stefano Zacchiroli2 1 Department of Computer Science, University of Bologna, Mura Anteo Zamboni 7, 40127 Bologna, Italy 2 Universit´e Paris Diderot, Sorbonne Paris Cit´e, PPS, UMR 7126, CNRS, F-75205 Paris, France Correspondence should be addressed to Angelo Di Iorio, [email protected] Received 9 June 2011; Revised 20 December 2011; Accepted 3 January 2012 Academic Editor: Kerstin S. Eklundh Copyright © 2012 Angelo Di Iorio et al. This is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited. The “WikiWay” is the open editing philosophy of wikis meant to foster open collaboration and continuous improvement of their content. Just like other online communities, wikis often introduce and enforce conventions, constraints, and rules for their content, but do so in a considerably softer way, expecting authors to deliver content that satisfies the conventions and the constraints, or, failing that, having volunteers of the community, the WikiGnomes, fix others’ content accordingly. Constrained wikis is our generic framework for wikis to implement validators of community-specific constraints and conventions that preserve the WikiWay and their open collaboration features. To this end, specific requirements need to be observed by validators and a specific software architecture can be used for their implementation, that is, as independent functions (implemented as internal modules or external services) used in a nonintrusive way.
    [Show full text]
  • Dokuwiki Download Windows
    Dokuwiki download windows DokuWiki on a Stick can be downloaded from the official DokuWiki download page. Just choose the option under “Include Web-Server”. Download DokuWiki! Here you can download the latest DokuWiki-Version. Either just MicroApache (Windows) Apache , PHP , GD2 and SQLite ​Install:upgrade · ​Upgrade · ​Hosting · ​DokuWiki Archived Downloads. To create an “on the Stick” edition of DokuWiki, visit and check the “MicroApache (Windows)” checkbox in the. DokuWiki is a great wiki engine with minimal requirements that usually gets Download the non- thread-safe version of PHP for Windows from. XAMPP is a popular WAMP stack for the Windows operating system. Download the DokuWiki zip file from (e.g. Bitnami native installers automate the setup of a Bitnami application stack on Windows, OS X or Linux. Each installer includes all of the software necessary to run. The Bitnami DokuWiki Stack provides a one-click install solution for DokuWiki. Download installers and virtual machines, or run your own DokuWiki server in the. Download the executable file for the Bitnami DokuWiki Stack from the Bitnami This tool is named on Windows and is located in the. How to install DokuWiki on Windows XP in less then 5 minutes: 1) Download and install WAMP5 (or the latest version) for Windows XP. How install DokuWiki on your server . Install DokuWiki on windows 7 localhost (XAMPP + php7. DokuWiki latest version: Free and User-Friendly Open-Source Information Storage Software. DokuWiki is Download DokuWiki for Windows. DokuWiki ist eine schlanke Wiki-Anwendung auf PHP-Basis, die ohne Datenbank auskommt und eingetragene Texte als TXT-Dateien ablegt.
    [Show full text]
  • WHY USE a WIKI? an Introduction to the Latest Online Publishing Format
    WHY USE A WIKI? An Introduction to the Latest Online Publishing Format A WebWorks.com White Paper Author: Alan J. Porter VP-Operations WebWorks.com a brand of Quadralay Corporation [email protected] WW_WP0309_WIKIpub © 2009 – Quadralay Corporation. All rights reserved. NOTE: Please feel free to redistribute this white paper to anyone you feel may benefit. If you would like an electronic copy for distribution, just send an e-mail to [email protected] CONTENTS Overview................................................................................................................................ 2 What is a Wiki? ...................................................................................................................... 2 Open Editing = Collaborative Authoring .................................................................................. 3 Wikis in More Detail................................................................................................................ 3 Wikis Are Everywhere ............................................................................................................ 4 Why Use a Wiki...................................................................................................................... 5 Getting People to Use Wikis ................................................................................................... 8 Populating the Wiki................................................................................................................. 9 WebWorks ePublisher and Wikis
    [Show full text]
  • Which Wiki for Which Uses
    Which wiki for which uses There are over 120 Wiki software available to set up a wiki plateform. Those listed below are the 13 more popular (by alphabetic order) wiki engines as listed on http://wikimatrix.org on the 16th of March 2012. The software license decides on what conditions a certain software may be used. Among other things, the software license decide conditions to run, study the code, modify the code and redistribute copies or modified copies of the software. Wiki software are available either hosted on a wiki farm or downloadable to be installed locally. Wiki software Reference Languages Wikifarm Technology Licence Main audience Additional notes name organization available available very frequently met in corporate environment. Arguably the most widely deployed wiki software in the entreprise market. A zero- Confluence Atlassian Java proprietary 11 confluence entreprise cost license program is available for non-profit organizations and open source projects aimed at small companies’ documentation needs. It works on plain DokuWiki several companies Php GPL2 50 small companies text files and thus needs no database. DrupalWiki Kontextwork.de Php GPL2+ 12 entreprise DrupalWiki is intended for enterprise use Entreprise wiki. Foswiki is a wiki + structured data + Foswiki community Perl GPL2 22 entreprise programmable pages education, public Wikimedia Php with backend MediaWiki is probably the best known wiki software as it is the MediaWiki GPLv2+ >300 wikia and many hostingservice, companies private Foundation and others database one used by Wikipedia. May support very large communities knowledge-based site MindTouchTCS MindTouch Inc. Php proprietary 26 SamePage partly opensource and partly proprietary extensions Jürgen Hermann & Python with flat tech savy MoinMoin GPL2 10+ ourproject.org Rather intended for small to middle size workgroup.
    [Show full text]
  • Using Wikis in Software Development
    open source Editor: Christof Ebert ■ Alcatel ■ [email protected] Using Wikis in Software Development Panagiotis Louridas In only a few years, wikis have become one of the most popular tool shells imaginable based on open source software. You can find them just about everywhere that demands effective col- laboration and knowledge sharing at a low budget. Wikipedia has certainly enhanced their pop- ularity, but they also have a place in intranet-based applications such as defect tracking, re- quirements management, test-case management, and project portals. Panagiotis Louridas describes wiki essentials and nicely distinguishes a variety of types. You’ll find something useful, I’m sure. —Christof Ebert y 1995, Ward Cunningham, a promi- What is a wiki? nent member of the design patterns A wiki is actually two things: community, was experimenting with a hypertext environment to promote the ■ a program that makes it exceptionally easy exchange of the community’s ideas. for anybody to edit Web pages and B ■ The environment was based on the a philosophy regarding how users should then-popular Apple Hyper- go about that editing. Card application. That applica- tion worked well for individual Generally, Web pages are written in HTML. users, but Cunningham was While it’s not difficult to learn HTML, non- looking for a Web-based imple- programmers tend to shy away from it. Even mentation. On 25 March 1995, programmers find it easier to edit text than he posted the Web’s first-ever structured HTML, where linking between wiki, calling it “the simplest pages requires attention to things such as ad- online database that could pos- dresses and anchors.
    [Show full text]
  • IBM Research Report On-Line Collaborative Software
    RC24249 (C0704-012) April 30, 2007 Computer Science IBM Research Report On-line Collaborative Software Development via Wiki WenPeng Xiao, ChangYan Chi, Min Yang IBM Research Division China Research Laboratory Building 19, Zhouguancun Software Park 8 Dongbeiwang West Road, Haidian District Beijing, 100094 P.R.C. Research Division Almaden - Austin - Beijing - Haifa - India - T. J. Watson - Tokyo - Zurich LIMITED DISTRIBUTION NOTICE: This report has been submitted for publication outside of IBM and will probably be copyrighted if accepted for publication. It has been issued as a Research Report for early dissemination of its contents. In view of the transfer of copyright to the outside publisher, its distribution outside of IBM prior to publication should be limited to peer communications and specific requests. After outside publication, requests should be filled only by reprints or legally obtained copies of the article (e.g. , payment of royalties). Copies may be requested from IBM T. J. Watson Research Center , P. O. Box 218, Yorktown Heights, NY 10598 USA (email: [email protected]). Some reports are available on the internet at http://domino.watson.ibm.com/library/CyberDig.nsf/home . On-line Collaborative Software Development via Wiki WenPeng Xiao ChangYan Chi Min Yang IBM China Research Lab IBM China Research Lab IBM China Research Lab 86-10-58748423 86-10-58748012 86-10-58748544 [email protected] [email protected] [email protected] ABSTRACT documentation or even idea to a project when s/he is attracted. Wiki is a collaborative authoring system for collective intelligence However, nearly all currently available development tools are which is quickly gaining popularity in content publication.
    [Show full text]
  • Awesome Selfhosted - Wikis
    Awesome Selfhosted - Wikis Wikis Related: Software Development - Documentation Generators See also: Wikimatrix, Wiki Engines - WikiIndex, List of wiki software - Wikipedia, Comparison of wiki software - Wikipedia. BookStack - BookStack is a simple, self-hosted, easy-to-use platform for organizing and storing information. It allows for documentation to be stored in a book like fashion. (Demo, Source Code) MIT PHP Cowyo - Cowyo is a feature-rich wiki for minimalists. (Demo) MIT Go django-wiki - Wiki system with complex functionality for simple integration and a superb interface. Store your knowledge with style: Use django models. (Demo) GPL-3.0 Python Documize - Modern Docs + Wiki software with built-in workflow, single binary executable, just bring MySQL/Percona. (Source Code) AGPL-3.0 Go Dokuwiki - Easy to use, lightweight, standards-compliant wiki engine with a simple syntax allowing reading the data outside the wiki. All data is stored in plain files, therefore no database is required. (Source Code) GPL-2.0 PHP Gitit - Wiki program that stores pages and uploaded files in a git repository, which can then be modified using the VCS command line tools or the wiki's web interface. GPL-2.0 Haskell Gollum - Simple, Git-powered wiki with a sweet API and local frontend. MIT Ruby jingo - Git based wiki engine written for node.js, with a decent design, a search capability and good typography. MIT Nodejs Mediawiki - MediaWiki is a free and open-source wiki software package written in PHP. It serves as the platform for Wikipedia and the other Wikimedia projects, used by hundreds of millions of people each month.
    [Show full text]
  • Wiki and Blogs
    Wiki and Blogs Ashish Mahabal Ay/Bi 199b 29 Mar 2011 Which Wiki? • Many to choose from • pmwiki –Patrick R Michaud –http://www.pmwiki.org/ Wiki markup Raw Transformed PQ wiki pmwiki latest stable 2.2.25 local/config.php $DefaultPasswords['admin'] = crypt('SomeAdminPassHere'); $DefaultPasswords['edit'] = crypt('SomeEditPassHere'); http://www.astro.caltech.edu/quest/pmwiki/pmwiki.php A few wiki engines • MediaWiki (http://www.mediawiki.org) • PmWiki (http://www.pmwiki.org) • MoinMoin (http://moinmo.in) • Twiki (http://twiki.org) Creole: (http://www.wikicreole.org) The lightweight markup language for formatting wikitext. It is aimed at being a common markup language for wikis to enable simple transfer of content between different wiki engines. (See also http://wiki.wikicreole.org) Blogs • Blogspot (http://www.blogger.com) • Wordpress (http://wordpress.org) • TypePad (http://www.typepad.com/) • Movable Type (http://MovableType.com) • … Vlogs, audio blogs, diary, groups, blogsphere, … RSS feeds, subscribing, … Using Yahoo Pipes Using APIs " (Application Programming Interface) • Each blogspot blog has an associated number. My movies blog, for instance, has the number 31487588. It can be seen when you post a new item in your blog. You can obtain the xml for your blog using that number and some utility like wget or curl: • wget http://www.blogger.com/feeds/31487588/ posts/default This gives you a few of the last entries To get a large number of, or all, entries, use something like: wget http://www.blogger.com/feeds/31487588/posts/default?max- results=20000 For getting entries between two dates, use the following format: wget http://www.blogger.com/feeds/31487588/posts/default?published- min=2008-03-16T00:00:00&published-max=2009-03-24T23:59:59 To get those with specific labels e.g.
    [Show full text]
  • Software Knowledge Management Using Wikis: a Needs and Features Analysis
    FACULDADE DE ENGENHARIA DA UNIVERSIDADE DO PORTO Software Knowledge Management using Wikis: a needs and features analysis Rafael Araújo Pires FINAL VERSION Report of Dissertation Master in Informatics and Computing Engineering Supervisor: Ademar Manuel Teixeira de Aguiar (PhD) Co-Supervisor: João Carlos Pascoal de Faria (PhD) March 2010 Software Knowledge Management using Wikis: a needs and features analysis Rafael Araújo Pires Report of Dissertation Master in Informatics and Computing Engineering Approved in oral examination by the committee: Chair: Maria Cristina Ribeiro (PhD) ____________________________________________________ External Examiner: Isabel Ramos (PhD) Internal Examiner: Ademar Manuel Teixeira de Aguiar (PhD) March 25, 2010 Abstract Knowledge Management is a sub-section of management that pursuits improvement in business performance. It increases the organization's ability to learn, to innovate, to solve problems and aims to enhance organizational knowledge processing. It is looking for the available and required knowledge assets that are divided as tangible and intangible. Tangible assets, which are related to explicit knowledge, include manuals, customer information, news, employees, patent licenses, proposals, project artifacts, etc. Intangible assets, which are related to tacit knowledge, include skills, experiences and knowledge of employees within the organization. It is a method that simplifies the process of sharing, distributing, creating, capturing, and understanding a company’s knowledge. The challenges involved
    [Show full text]
  • Wiki Technology, Community Dynamics and Community Culture
    Wiki Technology and Community Culture By Mingli Yuan July, 2008 Released under GFDL Contents Introduction − concept / history / jargons / a simple classification / organizations & companies / conferences Technology − implementations / features / principles / easy at first glance / syntax & parser / version control / wysiwyg / adventure of ideas Community Culture − openness & agf / npov / consensus / deletionism vs. inclusionism / controversy Introduction – concept A wiki is web pages anyone who accesses it can contribute or modify content a simplified markup language Introduction – history World Wide − 1994: Ward Cunningham, WikiWikiWeb (1994?) Patrick Mueller, the first WikiWikiClone − 2000: Sunir Shah, MeatballWiki − 2001: January 15, Jimmy Wales, Wikipedia Introduction – history cont. Mainland China Taiwan − 2001-12-27: − Schee / 徐子涵 Softme Studio / 索秘软 − hlb / 薛良斌 件工作室 − Newzilla jWiki as a sub-project of WebPM − 2002 / 5: 中蟒大杂院 Early Blogsphere − 2002 / 10 − Cnblog.org Chinese Wikipedia − Chinese Blogger Conference / − 2002 / 11 中文网志年会 贸大 Wiki Introduction – jargons Basics Community − Sandbox − EditWar − CamelCase − AGF − Wikify − NPOV − RecentChanges − Consensus / Vote − DocumentMode / − Deletionist / Inclusionism TheadMode − Namespace: Article / Talk / Copyright / Copyleft − PD User / Category − − GFDL / Free Signature − CC family − BackLinks − Fair use − InterWiki Introduction – a simple classification Tech related sites Wikimedia Family − c2.com / wikiwikiweb − wikiversity − meatball / usemode − wiktionary
    [Show full text]
  • Tutorial: Wikis in the Workplace" for Wiki Symposium, Montreal, Canada, 22 Oct 2007
    This is the presentation material for the 3 hour session on "Tutorial: Wikis in the Workplace" for Wiki Symposium, Montreal, Canada, 22 Oct 2007. Slide 1: Tutorial: Wikis in the Workplace "Wikis have changed the way we run meetings, plan releases, document our product and generally communicate with each other" - Eric Baldeschwieler, Director of Software Development of Yahoo! • Wiki, a writable web: Communities can share content and organize it in a way most meaningful and useful to them • If extended with the right set of functionality, a wiki can be applied to the workplace to schedule, manage, document, and support daily activities • A structured wiki combines the benefits of a wiki and a database • This tutorial explains publishing wikis and structured wiki, covers its deployment, and shows some sample applications using TWiki, an open source enterprise wiki platform Presentation for Wiki Symposium, Montreal, Canada, 22 Oct 2007 -- Peter Thoeny - [email protected] - TWIKI.NET Slide 2: About Peter • Peter Thoeny - [email protected] • Founder of TWiki, the leading wiki for corporate collaboration, managing the open-sourced project for the last 9 years • Co-founder of TWIKI.NET , a company offering services and support for TWiki • Co-author of Wikis for Dummies book • Invented the concept of Structured Wikis - where free form wiki content can be structured with tailored wiki applications • Recognized thought-leader in Wikis and social software, featured in numerous articles and technology conferences including
    [Show full text]