Foswiki is shockingly powerful. While you can use it "out of the box" without ever developing your own applications, there are many, many ways it can be used to simplify your business processes.
At some point you will want to explore the power at your fingertips.
In this web you will find Wiki Applications which have been developed by users (you can even add your own) to help out people like you, who need to get things done.
Wiki Applications are topics that have been written to address common requirements. You can use them as they come, or use them as inspiration or a template for your own custom applications.
The applications are all designed so they can be integrated into your local installation of Foswiki, and you can even test drive many of them on this site, by navigating to the pages below.
Integration is as simple as copying the topics that make up the application into your own wiki.
| Overview Topic | Showcase Page | App Description |
|---|---|---|
| ContactListOverview | Show this app in action | Simple Contact List Example using CommentPlugin |
| ContactListWithEmailSendOverview | Show this app in action | Contact List with Email Send Overview |
| FamilyTreeOverview | Show this app in action | Simple Wiki App Replacement for FamilyTreePlugin |
| MeetingMinutesOverview | Show this app in action | Meeting Minutes App |
| TeamPresentationsOverview | Show this app in action | Simple example of using SlideShowPlugin for Team Training |
| WikiDashboardOverview | Show this app in action | A test of moving the Wiki Camp inspired Dashboard contrib into WikiApps |
%STARTSECTION{"js"}%<literal><script type="text/javascript">
jQuery(document).ready(function($) {
$("#App_Name").change(function() {
var app_name = $(this).val();
var wiki_app_label = document.getElementById('wiki_app_label') ;
var overview_topic_name = document.getElementById('overview_topic_name') ;
document.getElementById('wiki_app_label').innerText = foswiki.String.makeWikiWord(app_name)+'';
overview_topic_name.value = foswiki.String.makeWikiWord(app_name)+'Overview';
});
});
</script></literal>%ENDSECTION{"js"}% 