wiki
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 256
RADWiki 0.2
RADWiki or Rapid Application Development Wiki allows you to rapidly create Web applications. more>>
RADWiki or "Rapid Application Development Wiki" allows you to rapidly create Web applications by using a set of functionality plugins and "gluing" them together in a wiki.
RADWikis goal is to make design and layout and localization as easy as writing a wiki page.
Enhancements:
- This version features a page revision system that keeps a configurable number of versions of a page, a plugin (and framework) localization system, updated guides for installation, applications, and plugins, improved CSS, a showcase application for all plugins, an auto record plugin, and a plugin administration system.
- Numerous bugs were fixed.
<<lessRADWikis goal is to make design and layout and localization as easy as writing a wiki page.
Enhancements:
- This version features a page revision system that keeps a configurable number of versions of a page, a plugin (and framework) localization system, updated guides for installation, applications, and plugins, improved CSS, a showcase application for all plugins, an auto record plugin, and a plugin administration system.
- Numerous bugs were fixed.
Download (1.4MB)
Added: 2007-06-11 License: LGPL (GNU Lesser General Public License) Price:
866 downloads
yawiki N2RC
yawiki is a wiki system is a perfect place for working together and sharing information. more>>
yawiki is a wiki system is a perfect place for working together and sharing information. The text syntax of a wiki system is really simple to learn. Getting started with a wiki system is easy.
This is yet another Java implementation of such a wiki system. Besides the basic wiki features, it covers quite a lot more.
Main features:
Basic Features:
- versioning of every page
- view the history and restore old versions
- page can be restricted to be edited by users only
- supports different themes
- search engine (jakarta lucene) integrated
- compare different versions of a page
- list last recent updates
Advanced features:
- included menu administration for every domain
- export to static HTML files
- SOAP interface and synchronisation
- manage tasks with the TaskManager
- send emails to yawiki and they will be processed and created as new pages or added to existing pages
- every user can bookmark pages to find them later
- rss feeds for every domain
Enhancements:
- After one year of constant development this is the new generation of yawiki. Everything has changed so it is impossible to keep a changelog.
<<lessThis is yet another Java implementation of such a wiki system. Besides the basic wiki features, it covers quite a lot more.
Main features:
Basic Features:
- versioning of every page
- view the history and restore old versions
- page can be restricted to be edited by users only
- supports different themes
- search engine (jakarta lucene) integrated
- compare different versions of a page
- list last recent updates
Advanced features:
- included menu administration for every domain
- export to static HTML files
- SOAP interface and synchronisation
- manage tasks with the TaskManager
- send emails to yawiki and they will be processed and created as new pages or added to existing pages
- every user can bookmark pages to find them later
- rss feeds for every domain
Enhancements:
- After one year of constant development this is the new generation of yawiki. Everything has changed so it is impossible to keep a changelog.
Download (8.7MB)
Added: 2007-03-15 License: BSD License Price:
954 downloads
QuikWiki 1.6
QuikWiki is a Perl CGI Wiki that supports normal Wiki functions like browsing, creating, and editing Web pages. more>>
QuikWiki project is a Perl CGI Wiki that supports normal Wiki functions like browsing, creating, and editing Web pages. Additionally, QuikWiki supports inline image display, text markup, RCS revisions, and page templates.
Enhancements:
- This release features better handling of pages that contain mixed Perl template dynamic content and wiki text.
- It also allows Web administrators to install QuikWiki in a site script directory like cgi-bin and the wiki pages in a different directory.
<<lessEnhancements:
- This release features better handling of pages that contain mixed Perl template dynamic content and wiki text.
- It also allows Web administrators to install QuikWiki in a site script directory like cgi-bin and the wiki pages in a different directory.
Download (0.016MB)
Added: 2007-06-29 License: Artistic License Price:
848 downloads
TipiWiki 3.0
TipiWiki is a small and clean PHP wiki. more>>
TipiWiki project is a small and clean PHP wiki.
TipiWiki is a small and simple Wiki which favors valid XHTML and provides only basic functions.
It does not have extended functions like document versions or user registration.
It features valid XHTML 1.0, image links, basic Wiki functions (backlinks, WikiWords, bold, italic, etc.), and is highly customizable.
<<lessTipiWiki is a small and simple Wiki which favors valid XHTML and provides only basic functions.
It does not have extended functions like document versions or user registration.
It features valid XHTML 1.0, image links, basic Wiki functions (backlinks, WikiWords, bold, italic, etc.), and is highly customizable.
Download (0.018MB)
Added: 2007-01-19 License: GPL (GNU General Public License) Price:
1010 downloads
Bitswiki 0.1
Bitswiki is a wiki that runs on Ruby on Rails. more>>
Bitswiki is a wiki that runs on Ruby on Rails.
Bitswiki project features:
- tags
- searching
- textile markdown
- revision comparison
- pluggable external authentication
- listing of recent changes
- RSS feeds for individual page changes or the entire wiki
- scriptaculous drawer effects
Bitswiki Installation Instructions:
Edit config/database.yml to your taste. For example, to use MySQL, search and replace postgresql to mysql, and postgres to root.
Execute these commands inside the bitswiki root directory:
createdb bitswiki
rake db:schema:load
script/server
Point your browser at http://localhost:3000/
<<lessBitswiki project features:
- tags
- searching
- textile markdown
- revision comparison
- pluggable external authentication
- listing of recent changes
- RSS feeds for individual page changes or the entire wiki
- scriptaculous drawer effects
Bitswiki Installation Instructions:
Edit config/database.yml to your taste. For example, to use MySQL, search and replace postgresql to mysql, and postgres to root.
Execute these commands inside the bitswiki root directory:
createdb bitswiki
rake db:schema:load
script/server
Point your browser at http://localhost:3000/
Download (0.081MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1022 downloads
CGI::Wiki 0.62
CGI::Wiki is a toolkit for building Wikis. more>>
CGI::Wiki is a toolkit for building Wikis.
Helps you develop Wikis quickly by taking care of the boring bits for you. You will still need to write some code - this isnt an instant Wiki.
SYNOPSIS
# Set up a wiki object with an SQLite storage backend, and an
# inverted index/DB_File search backend. This store/search
# combination can be used on systems with no access to an actual
# database server.
my $store = CGI::Wiki::Store::SQLite->new(
dbname => "/home/wiki/store.db" );
my $indexdb = Search::InvertedIndex::DB::DB_File_SplitHash->new(
-map_name => "/home/wiki/indexes.db",
-lock_mode => "EX" );
my $search = CGI::Wiki::Search::SII->new(
indexdb => $indexdb );
my $wiki = CGI::Wiki->new( store => $store,
search => $search );
# Do all the CGI stuff.
my $q = CGI->new;
my $action = $q->param("action");
my $node = $q->param("node");
if ($action eq display) {
my $raw = $wiki->retrieve_node($node);
my $cooked = $wiki->format($raw);
print_page(node => $node,
content => $cooked);
} elsif ($action eq preview) {
my $submitted_content = $q->param("content");
my $preview_html = $wiki->format($submitted_content);
print_editform(node => $node,
content => $submitted_content,
preview => $preview_html);
} elsif ($action eq commit) {
my $submitted_content = $q->param("content");
my $cksum = $q->param("checksum");
my $written = $wiki->write_node($node, $submitted_content, $cksum);
if ($written) {
print_success($node);
} else {
handle_conflict($node, $submitted_content);
}
}
<<lessHelps you develop Wikis quickly by taking care of the boring bits for you. You will still need to write some code - this isnt an instant Wiki.
SYNOPSIS
# Set up a wiki object with an SQLite storage backend, and an
# inverted index/DB_File search backend. This store/search
# combination can be used on systems with no access to an actual
# database server.
my $store = CGI::Wiki::Store::SQLite->new(
dbname => "/home/wiki/store.db" );
my $indexdb = Search::InvertedIndex::DB::DB_File_SplitHash->new(
-map_name => "/home/wiki/indexes.db",
-lock_mode => "EX" );
my $search = CGI::Wiki::Search::SII->new(
indexdb => $indexdb );
my $wiki = CGI::Wiki->new( store => $store,
search => $search );
# Do all the CGI stuff.
my $q = CGI->new;
my $action = $q->param("action");
my $node = $q->param("node");
if ($action eq display) {
my $raw = $wiki->retrieve_node($node);
my $cooked = $wiki->format($raw);
print_page(node => $node,
content => $cooked);
} elsif ($action eq preview) {
my $submitted_content = $q->param("content");
my $preview_html = $wiki->format($submitted_content);
print_editform(node => $node,
content => $submitted_content,
preview => $preview_html);
} elsif ($action eq commit) {
my $submitted_content = $q->param("content");
my $cksum = $q->param("checksum");
my $written = $wiki->write_node($node, $submitted_content, $cksum);
if ($written) {
print_success($node);
} else {
handle_conflict($node, $submitted_content);
}
}
Download (0.061MB)
Added: 2006-09-05 License: Perl Artistic License Price:
1144 downloads
pHEAR WiKI .02
pHEAR WiKI provides a small wiki for a personal Website. more>>
pHEAR WiKI provides a small wiki for a personal Website.
Features include easy editing and creating of pages, the ability to assign keywords that are highlighted in other wiki pages, URL archiving, and a full range of administration abilities.
Main features:
- Administration abilities:
- easy backup and restore of Wiki data files
- database compacting
- page deletion
- page version control (restore old versions of pages),
- Easy to edit and create new pages (thats what its all about afterall)
- Keyword highlighting: assign keywords to a page that are highlighted in other pages
- Simple keyword searching
- URL Archiving
- Embedable commands for enhanced Wikiing
- Easy template system to fit wiki into your site
Enhancements:
- Added a check for conflicting page saves. A conflict occurs when two user are updating the same page at the same time. A merge is automatically performed in this case.
- Did a security audit of the code. Probably a necessary thing if I plan to give this out and expect people to use it. Should be okay now. If you haver version 01 I can think of another reason to call it phear wiki.
- Added check for wether or not a title was entered. If no title was entered then a default title is used.
- Changed the way saved entries are sent to the server
- this allows pages of virtually unlimited size to be edited and mantained.
<<lessFeatures include easy editing and creating of pages, the ability to assign keywords that are highlighted in other wiki pages, URL archiving, and a full range of administration abilities.
Main features:
- Administration abilities:
- easy backup and restore of Wiki data files
- database compacting
- page deletion
- page version control (restore old versions of pages),
- Easy to edit and create new pages (thats what its all about afterall)
- Keyword highlighting: assign keywords to a page that are highlighted in other pages
- Simple keyword searching
- URL Archiving
- Embedable commands for enhanced Wikiing
- Easy template system to fit wiki into your site
Enhancements:
- Added a check for conflicting page saves. A conflict occurs when two user are updating the same page at the same time. A merge is automatically performed in this case.
- Did a security audit of the code. Probably a necessary thing if I plan to give this out and expect people to use it. Should be okay now. If you haver version 01 I can think of another reason to call it phear wiki.
- Added check for wether or not a title was entered. If no title was entered then a default title is used.
- Changed the way saved entries are sent to the server
- this allows pages of virtually unlimited size to be edited and mantained.
Download (0.014MB)
Added: 2007-01-25 License: Artistic License Price:
1004 downloads
Cloud Wiki 2.1
Cloud Wiki is a wiki engine written in Python and backed by Sqlite. more>>
Cloud Wiki is a wiki engine written in Python and backed by Sqlite. Cloud Wiki provides user authentication, powerful command line administration facilities, and a concise, efficient Web interface.
Main features:
- Flexible user authentication system. See An Argument Against Anonymous Wikis for an explanation why Cloud Wiki supports user authentication.
- Implementation of C2 Wikis fundamental Wiki Principles
- Extremely fast SQLite database used for node storage, caching generated content html, content changes and dependency information.
- Long running web server process, instead of a slow loading CGI. Designed to run well behind a reverse proxy.
- Minimalist markup language designed with an emphasis on having just enough features to be useful, but not so many that new users are intimidated. All linking is done with brace-enclosed free links, for example.
- Modular user authentication system.
- Powerful command line node and server manipulation tools for easy administration.
- An interface to view change/replacements to a node in the past three days.
- Added Nodes gateway to list all nodes added to the wiki in the past three days.
- Changed Nodes gateway to list all nodes changed on the wiki in the past three days.
- Generated content is automatically valid, strict XHTML 1.0.
- Wikis may be exported to static HTML files; our Sourceforge website is produced this way from our test wiki.
<<lessMain features:
- Flexible user authentication system. See An Argument Against Anonymous Wikis for an explanation why Cloud Wiki supports user authentication.
- Implementation of C2 Wikis fundamental Wiki Principles
- Extremely fast SQLite database used for node storage, caching generated content html, content changes and dependency information.
- Long running web server process, instead of a slow loading CGI. Designed to run well behind a reverse proxy.
- Minimalist markup language designed with an emphasis on having just enough features to be useful, but not so many that new users are intimidated. All linking is done with brace-enclosed free links, for example.
- Modular user authentication system.
- Powerful command line node and server manipulation tools for easy administration.
- An interface to view change/replacements to a node in the past three days.
- Added Nodes gateway to list all nodes added to the wiki in the past three days.
- Changed Nodes gateway to list all nodes changed on the wiki in the past three days.
- Generated content is automatically valid, strict XHTML 1.0.
- Wikis may be exported to static HTML files; our Sourceforge website is produced this way from our test wiki.
Download (0.031MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1213 downloads
Download (0.22MB)
Added: 2006-01-30 License: GPL (GNU General Public License) Price:
1363 downloads
ScrumWiki 0.2
ScrumWiki is a Wiki implementation for the Scrum project management tool. more>>
ScrumWiki is a Wiki implementation for the Scrum project management tool.
ScrumWiki is a Wiki for Scrum.
It features all the regular features of a UseMod Wiki, plus functionality to help with managing a software development project in Scrum.
It features Sprint and Product backlogs, task assignment, and burndown charts to track progress.
<<lessScrumWiki is a Wiki for Scrum.
It features all the regular features of a UseMod Wiki, plus functionality to help with managing a software development project in Scrum.
It features Sprint and Product backlogs, task assignment, and burndown charts to track progress.
Download (0.070MB)
Added: 2006-10-04 License: GPL (GNU General Public License) Price:
1118 downloads
RetroWiki 2.2
RetroWiki is a flat-file wiki engine written in RetroForth and PHP. more>>
RetroWiki is a flat-file wiki engine written in RetroForth and PHP. The markup language can easily be extended with new markups.
Enhancements:
- This release adds caching of generated pages, a few security fixes, and a significant clean-up of the PHP code.
<<lessEnhancements:
- This release adds caching of generated pages, a few security fixes, and a significant clean-up of the PHP code.
Download (0.10MB)
Added: 2005-11-03 License: Public Domain Price:
1451 downloads
JAMWiki 0.5.4
JAMWiki is a Java-based Wiki engine. more>>
JAMWiki is a Java-based Wiki engine.
JAMWiki features Java servlet 2.3 and JDK 1.4 compatibility, feature parity with MediaWiki, quick and easy setup, and support for running either with or without an external database.
Enhancements:
- This is a minor release that includes some new features as well as bugfixes.
- Notable changes made during this release include updates to the wiki syntax parser, an upgrade to the Spring Framework version 2.0.4, an upgrade to Lucene Search Engine version 2.1, and a new Special:Listusers page to provide a list of all registered wiki users.
<<lessJAMWiki features Java servlet 2.3 and JDK 1.4 compatibility, feature parity with MediaWiki, quick and easy setup, and support for running either with or without an external database.
Enhancements:
- This is a minor release that includes some new features as well as bugfixes.
- Notable changes made during this release include updates to the wiki syntax parser, an upgrade to the Spring Framework version 2.0.4, an upgrade to Lucene Search Engine version 2.1, and a new Special:Listusers page to provide a list of all registered wiki users.
Download (5.0MB)
Added: 2007-05-07 License: LGPL (GNU Lesser General Public License) Price:
902 downloads
WikiChump 0.1
WikiChump listens in an IRC channel like a traditional bot and adds the information to a wiki in realtime. more>>
WikiChump listens in an IRC channel like a traditional bot and adds the information to a wiki in realtime. A chump bot sits in an IRC (Chat) channel and remembers any URL (web addresses) that people say. It displays them on a web page for later reference. I spend time in #infoanarchy on the freenode network (freenode.org) where someone runs a chump bot whose output is visible here: http://peerfear.org/chump/
A wiki is a website that anyone can edit. Every page has an edit button on the bottom which anyone can press to edit the page. They grow organically and are great for group collaboration. Some friends and I set one up and track plan most of our group activities using it. The most famous wiki is http://c2.com/cgi-bin/wiki?WikiWikiWeb
I wanted to combine these two resources so that anything said in the IRC channel my friends and I chat in was recorded on the wiki we share. I sat down and Perl script to do just that and it took surprisingly little time. Yay for the HTML::Form module. The output can be seen here: http://www.arioch.org/phpwiki/index.php/WikiChump
<<lessA wiki is a website that anyone can edit. Every page has an edit button on the bottom which anyone can press to edit the page. They grow organically and are great for group collaboration. Some friends and I set one up and track plan most of our group activities using it. The most famous wiki is http://c2.com/cgi-bin/wiki?WikiWikiWeb
I wanted to combine these two resources so that anything said in the IRC channel my friends and I chat in was recorded on the wiki we share. I sat down and Perl script to do just that and it took surprisingly little time. Yay for the HTML::Form module. The output can be seen here: http://www.arioch.org/phpwiki/index.php/WikiChump
Download (0.003MB)
Added: 2006-06-24 License: GPL (GNU General Public License) Price:
1217 downloads
ERFAN WIKI 1.0.0
ERFAN WIKI is powerful wiki engine without database supporting smart search, smart backup, wikipedia syntax, template. more>>
ERFAN WIKI is powerful wiki engine without database supporting smart search, smart backup, wikipedia syntax, template, nice printable version, language and multiuser. Plus an easy and secure installer.
Main features:
- Multi Language
- Template Support ( full CSS )
- WikiPedia Syntax Support
- Auto Thumbnail Generator
- Smart Search
- Smart Backup
- Printable Output
- User Management
- Database Free
- Easy Installer
<<lessMain features:
- Multi Language
- Template Support ( full CSS )
- WikiPedia Syntax Support
- Auto Thumbnail Generator
- Smart Search
- Smart Backup
- Printable Output
- User Management
- Database Free
- Easy Installer
Download (0.16MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1181 downloads
TigerWiki 2.21
TigerWiki is a wiki that provides password security, automatic backup pages when editing, easy custom templates, and more. more>>
TigerWiki is a wiki that provides password security, automatic backup pages when editing, easy custom templates, and more.
TigerWiki is less than 20 kilobytes large.
Enhancements:
- A security fix that prevented new pages from being created was removed.
<<lessTigerWiki is less than 20 kilobytes large.
Enhancements:
- A security fix that prevented new pages from being created was removed.
Download (0.014MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
818 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above wiki search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed