MoasdaWiki vs. Oddmuse

General Features MoasdaWiki Oddmuse
Version
3.9.1
2.3.13
Last Release Date
2024-10-04 (1 year ago)
2018-09-04 (7 years ago)
Last Update here
2024-11-03 (1 year ago)
2018-10-27 (7 years ago)
Author
Herbert Reiter
Alex Schroeder
URL
Free and Open Source
Yes
Yes
License
AGPL-3.0-only
GPL
Programming Language
Java
Perl
Data Storage
Files
Files
License Cost/ Fee
Free
free
Development status
Mature
Mature
Intended Audience
personal usage, small teams
family people, hackers
System Requirements MoasdaWiki Oddmuse
Operating System
Any platform with Java VM 17+
Anything supported by Perl
Root Access
No
No
Webserver
Built-in
Anything supporting CGI scripts
Other Requirements
Java VM 17+
Writable data directory
Datastorage MoasdaWiki Oddmuse
Text Files
Yes
Yes
MySQL
No
No
PostgreSQL
No
No
Oracle
No
No
SQLite
No
No
BerkeleyDB
No
No
RCS
No
No
Other
No
No
Security/Anti-Spam MoasdaWiki Oddmuse
Page Permissions
No
Yes
ACL
No
No
Authentication Backends
N/A
None (use your web server instead)
Host Blocking
No
Yes
Mail Encryption
No
No
nofollow
No
No
Blacklist
No
Optional
CAPTCHA
No
Plugin
Delayed Indexing
No
No
Development/Support MoasdaWiki Oddmuse
# of Consultants
Preconfigured Hosting
No
Yes
Code Repository
Issue Tracker
Mailing List
Support Forum
Chat Channel
Stars on GitHub
N/A
89 ⭐
Common Features MoasdaWiki Oddmuse
Preview
No
Yes
Minor Changes
No
Yes
Change Summary
No
Yes
Page History
No
Yes
Page Revisions
None
Restricted by Age
Revision Diffs
No
Between all
Sitemap
Yes
Yes
Plugin System
Yes
Yes
Special Features MoasdaWiki Oddmuse
Unicode Support
Yes
Yes
Right-to-Left Support
No
Optional
Interface Languages
2
German, English
18
Bulgarian, German, Spanish, Finnish, French, Hebrew, Italian, Korean, Dutch, Polish, Portuguese, Romanian, Russian, Serbian, Swedish, Ukrainian, Chinese, Chinese Traditional
Email notification
No
Plugin
Comments
No
Discussion Pages
Categories
Yes
Plugin
Namespaces
Yes
Plugin
Conflict Handling
None
Conflict Resolution
Concurrent Editing
No
No
Search
Full Text
Full Text
Wiki Farming
No
Plugin
Structured Data
Yes
Plugin
Links MoasdaWiki Oddmuse
CamelCase
No
Optional
Freelinks
Yes
Optional
Backlinks
No
Plugin
InterWiki
No
Yes
SisterWiki
No
Plugin
Image Links
Yes
Plugin
Windows Shares
No
Plugin
Page Redirects
No
Yes
Syntax Features MoasdaWiki Oddmuse
HTML Tags
All
Plugin
Math formulas
No
Plugin
Tables
complex
simple + complex
CREOLE support
No
Plugin
Markdown Support
No
Plugin
Textile Support
No
No
BBCode Support
No
Plugin
Emoticon Images
No
Optional
Syntax Highlighting
Yes
Plugin
Footnotes
No
Plugin
Quoting
No
Optional
Internal Comments
Yes
No
Custom styles
Yes
Yes
FAQ Tags
No
Plugin
Scripting
JavaScript
Perl
Content Includes
Yes
Yes
Feed Aggregation
No
Yes
Usability MoasdaWiki Oddmuse
Section Editing
Yes
No
Page Templates
Yes
No
Double-Click Edit
No
Plugin
Toolbar
No
Plugin
WYSIWYG Editing
No
Plugin
Access Keys
No
Yes
Auto Signature
No
Plugin
Statistics MoasdaWiki Oddmuse
Recent Changes
Yes
Yes
Wanted Pages
Yes
Plugin
Orphaned Pages
Yes
Plugin
Most/Least Popular
No
No
Recent Visitors
No
Plugin
Analysis
No
No
Output MoasdaWiki Oddmuse
Printer Friendly
Print CSS
Print CSS
Mobile Friendly
Yes
Yes
Themes & Skins
No
Optional
RSS Feeds
No
Yes
ATOM Feeds
No
Plugin
Abbreviations
No
Yes
Auto-TOC
Yes
Plugin
Raw Export
Yes
Yes
HTML Export
No
Yes
XML export
No
No
PDF Export
No
Plugin
Office Export
No
No
Media and Files MoasdaWiki Oddmuse
File Attachments
Yes
Optional
Media Revisions
No
Yes
Embedded Flash
Yes
No
Embedded Video
Yes
No
Image Editing
No
No
SVG Editing
No
Plugin
MindMap Editing
No
No
Media Search
No
Filenames only
Extras MoasdaWiki Oddmuse
Calendar
Yes
Plugin
Image Galleries
No
No
Presentations
No
No
Forums
No
No
Blogs
No
Optional
Ticket System
No
No
Chat
No
No
Syntax Examples MoasdaWiki Oddmuse
Internal Link
[[a link]]
[[a link | with title]]
optional, default on:
[[page name]]

optional, default off:
PageName
[PageName] → [1]
[[[page name]]] → [1]
[PageName text] → text
[[page name|text]] → text

Depending on plugins:
[text](page) → text
External Link
[[http://example.org]]
[[http://example.org | with title]]
http://example.com/
[http://example.com/] → [1]

optional, default on:
[http://example.com/ text] → text

Depending on plugins:
[text](http://example.com/) → text
Headlines
= Section
== Subsection
=== Sub-subsection
Depending on plugins:
## two
### three
== two ==
=== three ==

section
=======

subsection
----------
Bold Format
''bold''
Depending on plugins:
*bold*
**bold*
'''bold'''
Italics Format
##italic##
Depending on plugins:
*italic*
/italic/
//italic//
''italic''
Underline Format
__underlined__
Depending on plugins:
_underline_
__underline__
Monospace Format
@@monospace font@@
Depending on plugins:
`mono`
##mono##
[code]mono[/code]
<tt>mono</tt>
<code>mono</code>
Strikethrough Format
~~striked through~~
via bbCode plugin:
[s]strike through[/s]
Superscript Format
{{html}}<sup>superscript</sup>{{/html}}
via bbCode plugin:
[sup]superscript[/sup]
Subscript Format
{{html}}<sub>subscript</sub>{{/html}}
via bbCode plugin:
[sub]subscript[/sub]
Images
{{image:wiki.png}}
http://example.com/pic.jpg

Depending on plugins:
[[image:Name|Text|URL]] and variants
![text](URL)
Aligning Text
{{center}}centered text
no example known
Text Indentation
Non-indented text

Single indented text

Double indented text
Depending on plugins:
> text

[quote]
text
[/quote]

: one
:: two
Bulleted Lists
* Item 1
** Item 1.1
* Item 2
* one
** two
Numbered Lists
# Item 1
## Item 1.1
# Item 2
Depending on plugins:
1. one
2. two

# one
## two
Definition Lists
{{html}}
<dl>
<dt>term</dt>
<dd>definition</dd>
</dl>
{{/html}}
Depending on plugins:
; term: definition
Horizontal Rule
----
Depending on plugins:
----
remove MoasdaWiki remove Oddmuse