Description

The WikiWorkbench is a standardized way to write and deploy WikiApplications. It is WikiApplication to write WikiApplications. At its core it establishes a certain terminology (such as TopicTypes and TopicFunctions) that are common in non-web applications. A WikiWorkbench implements a standard set of means to ease the administration of even large-scale WikiApplication. WikiApplications, i.e. its TopicFunctions ease the extraction of application documentation. Merging a set of applications obeying this framework into the same web grants a higher level of compatibility and re-usability.

Documentation

Type Hierarchy

TopicType

ApplicationLicense

a license for wiki applications
Every WikiApplication comes with an ApplicationLicense. A topic of this type must have a notice section that will be displayed on components that make use of this license. The notice section contains a short summary of the ApplicationLicense.

... read more

ApplicationTopic

a part of an application
An ApplicationTopic is a topic that belongs to a WikiApplication. TopicTypes, TopicFunctions, TopicViews etc are all ApplicationTopics as they belong to some WikiApplication. Based on this information all parts of an application are gathered to create documentation and use it for packaging purposes.

See also :

... read more

DataForm

form definition for structured wiki content
DataForms add structured information to wiki topics.

See also: DataFormTemplate, DataForms

... read more

DataFormAttribute

value definition for formfields in a DataForm
A DataFormAttribute, also called form field or form attribute, is a part of a DataForm. It may be used as an entity that defining all values a form field can take by using listing them in a FoswikiTable

See also: DataFormAttributeTemplate

... read more

DocuTopic

application documentation
This type is attached to topics that contain documentation. DocuTopics have a "documentation" section marked using

STARTSECTION{"documentation"}
...
ENDSECTION{"documentation"}

See also: DocuTopicTemplate

These sections can be extracted dynamically using RenderApplicationDocumentation. In general documentation should be as "near" to the application component as possible, that is it should be embedded into the topic the component represents.

For example all TopicFunctions should be DocuTopics too. The documentation of TopicFunctions are then aggregated on a master DocuTopic that contains calls to RenderApplicationDocumentation for a set of components that are a kind of group, e.g. all types, forms, views and templates implementing a certain model.

WikiApplications can contain documentation too. But if the documentation reaches a certain complexity it should be moved to separate DocuTopics that the WikiApplication topic links to.

DocuTopics, as all TopicTypes belong to a certain WikiApplication and can thus be grouped and distinguished.

... read more

TopicStub

a placeholder topic pointing to another one
This is a type of topics that has no own net data but includes all data from another topic. Thereby content from another web can be integrated into this web without reduplication. Every TopicStub has a rather rigid structure and varies only in its target topic (see TopicStub).

This TopicType is similar to TopicFunctions but does not compute a specific function. Moreover it is useful to reduce redundancy of pure content, whereas TopicFunctions are part of a WikiWorkbench library and thus reduce redundancy in WikiApplications.

See also: TopicStubTemplate, TopicStubViewTemplate, TopicStubEditTemplate

... read more

TopicTemplate

templates for wiki topics
A TopicTemplate is used to create new topics and serves as a kind of blueprint of its content. For example, the simple topic creator takes a TopicTemplate and a DataForm definition to initialize the new topic with the given properties by using the TopicTemplate for the content, and attaching the given DataForm.

... read more

TopicType

TopicType of all TopicTypes
The TopicType is the root of the type system of the WikiWorbench. Every WikiTopic has got one or more TopicTypes. TopicTypes always define a DataForm, where a type indicates the properties and use of the form being attached to a topic.

TopicTypes overcome Foswiki's limitation to only allow one form to be attached to a topic. If you'd like to attach a second form to a topic, create a new DataForm that mixes two others and indicate this by merging the resulting TopicType properties. This procedure is the recommended way to derive new TopicTypes from existing ones building on top of them, e.g. by augmenting a CategorizedTopic with additional formfields.

TopicTypes have a special property that you might use to indicate a special way of derivation by means of inheritance. There is no real inheritance in Foswiki but the way of thinking when dealing with objects and types can be clarified this way.

When you start writing a WikiApplication, first think of the data objects you will need and create TopicTypes for each.

... read more

TopicView

a topic view or edit template
A TopicView defines a view for a topic. By default WikiTopics are displayed using the installed skin and the templates (don't confuse with TopicTemplate being a content blueprint for newly created topics). The view (compare with the 'view' term from the Model-View-Control school) computes the appearance of a WikiTopic and its form data. A new view is assigned to a topic by setting the VIEW_TEMPLATE variable.

For example the following will set th view to use the HiddenFormViewTemplate to hide the form table that is normally displayed below the wiki content.

   * Set VIEW_TEMPLATE = HiddenFormView

Note, that the ...Template string is appended automatically by the Foswiki engine.

Note also, that we use the TopicView type to mark even those views that are used during editting a wiki topic and is assigned using something like

   * Set EDIT_TEMPLATE = FormEdit

As such the FormEditTemplate is not used during Foswiki's view operation but during edit. The template is then used to render the view on the editor to be used. Edit templates either augment the normal Foswiki editor, or even implement a full substitute for its form data.

... read more

WebTool

a special page used to manage a web
Note, that there is no creator to build a topic of this kind as it is a pure "marker type", that is topics are created with another creator tool and then in addition marked to be an WebTool. Topics of this type are ApplicationTopics too and take associated DataForm.

... read more

WikiApplication

a documentation topic for a wiki application
Normally there's only one WikiApplication topic in a wiki application as created using the WikiWorkbench. This will be used to capture the CompleteDocumentation, including version and license information.

See also: WikiApplicationTemplate

... read more

WikiTopic

a base topic for wiki content
The WikiTopic form can be used for a wide range of TopicTypes that only need to be marked as being of a given TopicType. If you need more structure then you have to define a specific form that extends the attributes of the WikiTopic form. That is, the attributes defined here are a minimal set of attributes that all DataForms should share.

Every TopicType is used in combination with one DataForm, that is associated with it, either this generic WikiTopic form or a more specific one. Multiple TopicTypes can share the same form. In this case such a form must allow to select from a set of TopicTypes to mark it properly. A common case is where one TopicType uses one specific DataForm. Note, that a topic can be of several TopicTypes which indicates that it fullfills several duties at once. So by marking a topic of being of types Ta and type Tb you indicate that the attached form contains all form attributes that are in form Fa and from Fb, given that type Ta comes with form Fa and Tb with Fb.

See also: WikiTopicViewTemplate, WikiTopicEditTemplate

... read more

DataForm

ApplicationLicense

a license for wiki applications
Every WikiApplication comes with an ApplicationLicense. A topic of this type must have a notice section that will be displayed on components that make use of this license. The notice section contains a short summary of the ApplicationLicense.

... read more

ApplicationTopic

a part of an application
An ApplicationTopic is a topic that belongs to a WikiApplication. TopicTypes, TopicFunctions, TopicViews etc are all ApplicationTopics as they belong to some WikiApplication. Based on this information all parts of an application are gathered to create documentation and use it for packaging purposes.

See also :

... read more

DataForm

form definition for structured wiki content
DataForms add structured information to wiki topics.

See also: DataFormTemplate, DataForms

... read more

DataFormAttribute

value definition for formfields in a DataForm
A DataFormAttribute, also called form field or form attribute, is a part of a DataForm. It may be used as an entity that defining all values a form field can take by using listing them in a FoswikiTable

See also: DataFormAttributeTemplate

... read more

DocuTopic

application documentation
This type is attached to topics that contain documentation. DocuTopics have a "documentation" section marked using

STARTSECTION{"documentation"}
...
ENDSECTION{"documentation"}

See also: DocuTopicTemplate

These sections can be extracted dynamically using RenderApplicationDocumentation. In general documentation should be as "near" to the application component as possible, that is it should be embedded into the topic the component represents.

For example all TopicFunctions should be DocuTopics too. The documentation of TopicFunctions are then aggregated on a master DocuTopic that contains calls to RenderApplicationDocumentation for a set of components that are a kind of group, e.g. all types, forms, views and templates implementing a certain model.

WikiApplications can contain documentation too. But if the documentation reaches a certain complexity it should be moved to separate DocuTopics that the WikiApplication topic links to.

DocuTopics, as all TopicTypes belong to a certain WikiApplication and can thus be grouped and distinguished.

... read more

LexiconForm

DataForm for WebLexicon entries

TopicStub

a placeholder topic pointing to another one
This is a type of topics that has no own net data but includes all data from another topic. Thereby content from another web can be integrated into this web without reduplication. Every TopicStub has a rather rigid structure and varies only in its target topic (see TopicStub).

This TopicType is similar to TopicFunctions but does not compute a specific function. Moreover it is useful to reduce redundancy of pure content, whereas TopicFunctions are part of a WikiWorkbench library and thus reduce redundancy in WikiApplications.

See also: TopicStubTemplate, TopicStubViewTemplate, TopicStubEditTemplate

... read more

TopicTemplate

templates for wiki topics
A TopicTemplate is used to create new topics and serves as a kind of blueprint of its content. For example, the simple topic creator takes a TopicTemplate and a DataForm definition to initialize the new topic with the given properties by using the TopicTemplate for the content, and attaching the given DataForm.

... read more

TopicType

TopicType of all TopicTypes
The TopicType is the root of the type system of the WikiWorbench. Every WikiTopic has got one or more TopicTypes. TopicTypes always define a DataForm, where a type indicates the properties and use of the form being attached to a topic.

TopicTypes overcome Foswiki's limitation to only allow one form to be attached to a topic. If you'd like to attach a second form to a topic, create a new DataForm that mixes two others and indicate this by merging the resulting TopicType properties. This procedure is the recommended way to derive new TopicTypes from existing ones building on top of them, e.g. by augmenting a CategorizedTopic with additional formfields.

TopicTypes have a special property that you might use to indicate a special way of derivation by means of inheritance. There is no real inheritance in Foswiki but the way of thinking when dealing with objects and types can be clarified this way.

When you start writing a WikiApplication, first think of the data objects you will need and create TopicTypes for each.

... read more

TopicView

a topic view or edit template
A TopicView defines a view for a topic. By default WikiTopics are displayed using the installed skin and the templates (don't confuse with TopicTemplate being a content blueprint for newly created topics). The view (compare with the 'view' term from the Model-View-Control school) computes the appearance of a WikiTopic and its form data. A new view is assigned to a topic by setting the VIEW_TEMPLATE variable.

For example the following will set th view to use the HiddenFormViewTemplate to hide the form table that is normally displayed below the wiki content.

   * Set VIEW_TEMPLATE = HiddenFormView

Note, that the ...Template string is appended automatically by the Foswiki engine.

Note also, that we use the TopicView type to mark even those views that are used during editting a wiki topic and is assigned using something like

   * Set EDIT_TEMPLATE = FormEdit

As such the FormEditTemplate is not used during Foswiki's view operation but during edit. The template is then used to render the view on the editor to be used. Edit templates either augment the normal Foswiki editor, or even implement a full substitute for its form data.

... read more

WebTool

a special page used to manage a web
Note, that there is no creator to build a topic of this kind as it is a pure "marker type", that is topics are created with another creator tool and then in addition marked to be an WebTool. Topics of this type are ApplicationTopics too and take associated DataForm.

... read more

WikiApplication

a documentation topic for a wiki application
Normally there's only one WikiApplication topic in a wiki application as created using the WikiWorkbench. This will be used to capture the CompleteDocumentation, including version and license information.

See also: WikiApplicationTemplate

... read more

WikiTopic

a base topic for wiki content
The WikiTopic form can be used for a wide range of TopicTypes that only need to be marked as being of a given TopicType. If you need more structure then you have to define a specific form that extends the attributes of the WikiTopic form. That is, the attributes defined here are a minimal set of attributes that all DataForms should share.

Every TopicType is used in combination with one DataForm, that is associated with it, either this generic WikiTopic form or a more specific one. Multiple TopicTypes can share the same form. In this case such a form must allow to select from a set of TopicTypes to mark it properly. A common case is where one TopicType uses one specific DataForm. Note, that a topic can be of several TopicTypes which indicates that it fullfills several duties at once. So by marking a topic of being of types Ta and type Tb you indicate that the attached form contains all form attributes that are in form Fa and from Fb, given that type Ta comes with form Fa and Tb with Fb.

See also: WikiTopicViewTemplate, WikiTopicEditTemplate

... read more

TopicView

AtomViewTemplate

View for the atom feeds

FormEditTemplate

TopicView to edit the DataForm only

RssViewTemplate

View for the rss feeds

TextEditTemplate

TopicView to edit the topic text only

TextViewTemplate

Minimal TopicView usefull to generate xml output

WikiTopicEditTemplate

TopicView to edit a WikiTopic

WikiTopicViewTemplate

Generic topic view

TopicFunction

GetTopicTypes

returns a list of TopicTypes known in the base web
This is a "getter" TopicFunction that returns a list of known TopicTypes in a given web. Use it to create a selection in DataForms for the TopicType formfield. It adds the "none" type so that you can have (temporarily) un-typed topics. The type "TopicType" is added hardcoded so that you don't have to rely on that type being present in your web and to allow bootstrapping a type system in a web from scratch on as you will be able to create an initial TopicType TopicType this way.

Parameters
  • WEBS: list of webs to search for TopicTypes, defaults to BASEWEB
  • EXCLUDE: expression to exclude types (optional)
  • ADDITION: types that are listed additionally (optional)

... read more

RenderApplicationDocumentation

Extracts the documentation section from all parts of a WikiApplication
Parameters
  • NAME: application name, defaults to BASEWEB
  • THEWEB: web to search for docu, defaults to BASEWEB
  • TYPE: extract documentation of topics of the given type
  • NOTTYPE: don't list topics of that type

Css
  • twbDocuHolder
  • twbDocuSectionHolder
  • twbDocuSectionSummary
  • twbDocuSectionText

... read more

RenderApplicationManifest

Render a list of all files making up a given application

RenderDataFormList

Renders a list of DataForms that make use of the given DataFormAttribute
Parameters
  • ATTR: DataFormAttribute to search for, defaults to BASETOPIC
  • THEWEB: web to examin, defaults to BASEWEB

... read more

RenderFunctionCallers

Render a list of topics that use a given TopicFunction

RenderImageSelector

Renders a widget to select an image attached to a topic
Select an image attached to a OBJECT topic

Parameters
  • OBJECT, default BASEWEB.BASETOPIC
  • SELECTED
  • FIELDNAME
  • EXTENSIONS, defaults to jpe?g|JPE?G|gif|GIF|png|PNG|svg|SVG|webp|WEBP

... read more

RenderIndexItem

Fallback to render a summary for WikiTopic that does not have a type specific version of to render an index item
This method is called by RenderCategory to display a summary for an object. This method serves as a final fallback when no other TopicType-specific method was found.

Parameters
  • OBJECT

... read more

RenderInheritanceGraph

a directed graph of TopicType inheritance
This function requires GraphvizPlugin

... read more

RenderRecentChanges

renders a list of recent changes in a web
This uses solr and infintescroll to create a frontpage widget.

Parameters
  • HEIGHT: height of scroll container, defaults to 40em
  • LIMIT: number of rows to render, defaults to 20
  • PAGE: from which page to start rendering
  • THEWEB: the web to render recent changes for
  • FILTER: filter to be added to the search query

... read more

RenderRss

default implementation of an rss view of a single topic
This method is called by RssViewTemplate for each topic found. Note that this is a base-implementation for all TopicTypes processed. Individual TopicTypes may implement their own version called MyTopicTypeRenderRss. These are then called automatically using the %DBCALL{"web.topic->RenderRss"}% method call of the RssViewTemplate.

Parameters
  • OBJECT: the current topic

... read more

RenderSideBar

Render the sidebar navigation for the WikiWorkbench

RenderSimpleTopicCreator

TopicFunction to display a simple form to create a new topic
This function renders a topic creator form that holds a set of initial input elements to create a topic.

Parameters
  • TEXT: headline text; defaults to "Create a new INCLUDINGTOPIC"
  • LABEL: label of the TopicTitle field, defaults to "Title"
  • BUTTONTEXT: text on the twisty buttinm; default New
  • VALUE: initial value of the title input field (optional)
  • VALUES: map of initial values to formfields; format is <fieldName1>=<value1>;<fieldName2>=<value2>;...
  • FORM: DataForm to be used when creating a topic, defaults to INCLUDINGWEB.INCLUDINGTOPIC
  • TEMPLATE: TopicTemplate to be used (optional)
  • TYPE: initial TopicType value, defaults to values predefined in the form definition
  • PARENT: parent topic for the new topic, defaults to the BASETOPIC
  • WHITEBOARD: switch on/off the whiteboard textarea
  • EXTRA: additional formfields
  • SCRIPT: script to be used to create the topic, eg save or edit, defaults to edit
  • EDITOR: TopicView to be used as an edit_template

... read more

RenderTopicInstaller

Render a simple factory to deploy a topic in another web
This is a tool to add a topic based application, or part of it to another web. This is done by creating a TopicStub that points back to the implementation. For example, to add a new TopicType to web, you create a TopicStub that points back to the implementation of that TopicType.

The function will display a small input form to specify the web where the TopicStub is to be created.

Parameters
  • TEXT: headline for the install form, defaults to "Install BASETOPIC"
  • NAME: name of the topic to be created, defaults to BASETOPIC
  • SOURCE: used to specify the TopicStub's target to be created, defaults to BASEWEB.BASETOPIC
  • PARENT: topicparent of the new topic, defaults to HOMETOPIC
  • TEMPLATE: TopicTemplate used to create this topic, defaults to TopicStubTemplate
  • FORM: DataForm used for this topic, defaults to TopicStub
  • TYPE: type of the new topic, defaults to TopicStub
  • WIKIAPP: the name of the WikiApllication this topic belongs to, defaults to BASEWEB
  • EXTRA: extra stuff to be send during save

... read more

RenderTopicThumbnail

Display thumbnail image for a topic
This function gets the first image attachment from a topic and creates a 48x48 thumbnail using ImagePlugin. The attachment taken must end with jpeg, jpg, gif, bmp, svg or png. If there are multiple image attachments then the first one ordered by comment and name is taken. The empty string is returned if no image attachment is found.

Parameters
  • OBJECT: topic to generate a thumbnail for
  • ALIGN: optional alignment of image, defaults to right
  • SIZE: optional size of thumbnail
  • TYPE: image rendering type, see documentation of ImagePlugin, defaults to simple
  • CROP
  • TOOLTIP: switch on/off tooltips for thumbnails, defaults to on
  • SORT: specifies which image to chose from the attachments, defaults to comment:name which will take the one that sorts first wrt the comment, falling back to the name

... read more

RenderTopicsOfType

Display a table of topcis of a given type
Parameters
  • TYPE: the TopicType to be searched for, defaults to BASETOPIC
  • FIELDS: columns of formfields to display, defaults to TopicTitle, Summary, WikiApplication, Changed
  • SORT: sorting of rows, defaults to "Changed"
  • REVERSE: sorting direction, defaults to "off", defaults to "on" if SORT="Changed"
  • ROWS: number of rows to display initially, defauts to 10
  • FILTER: additional filter expression (optional)
  • THEWEB: web to examin, defaults to BASEWEB
  • ROWNUMBERS: boolean toggle to switch on/off row numbers
  • SELECTING: boolean toggle to switch on/off row selection, defaults to off
  • SEARCHMODE: either have one single search box using global or one per column using multi, default global
  • <field_name>_title: column title for the given field
  • <field_name>_width: column width for the given field

... read more

RenderWikiApplicationFactory

Renders a form to create a new WikiApplication
This is used to create a new WikiApplication

... read more

RenderWikiApplicationWebHome

Renders a dashboard for an application web
Renders the Applications of a WikiApplication subweb

Parameters
None

... read more

RenderWikiTopicView

This function renders a view for a wiki topic, showing its title and the summary line.

Parameters

  • OBJECT: the topic to render the view for, defaults to %BASEWEB%.%BASETOPIC%
  • TITLE_PREFIX: optional string put before the topic title
  • TITLE_EXTRA: optional addition put behind the topic title
  • DISPLAYREVISIONINFO: boolean flag to switch on/off revinfo rendered underneath the h1 element

... read more

Installation

...

Manifest

# Name Type
1 ApplicationLicense TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  a license for wiki applications
2 ApplicationTopic TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  a part of an application
3 ApplicationTopicEditTemplate TopicView, ApplicationTopic, WikiTopic
  Editor for ApplicationTopics
4 ApplicationTopicViewTemplate TopicView, ApplicationTopic, WikiTopic
  TopicView for ApplicationTopics
5 AtomViewTemplate TopicView, ApplicationTopic, WikiTopic
  View for the atom feeds
6 DataForm TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  form definition for structured wiki content
7 DataFormAttribute TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  value definition for formfields in a DataForm
8 DocuTopic TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  application documentation
9 FirstSteps DocuTopic, ApplicationTopic, WikiTopic
  What's next: first steps after creating a new workbench web
10 FormEditTemplate TopicView, ApplicationTopic, WikiTopic
  TopicView to edit the DataForm only
11 GetTopicTypes TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  returns a list of TopicTypes known in the base web
12 GnuGeneralPublicLicense ApplicationLicense, ApplicationTopic, WikiTopic
  Standard Open Source License
13 HiddenFormViewTemplate TopicView, ApplicationTopic, WikiTopic
  View to hide System.DataForms
14 LexiconForm DataForm, ApplicationTopic, WikiTopic
  DataForm for WebLexicon entries
15 RenderApplicationDocumentation TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Extracts the documentation section from all parts of a WikiApplication
16 RenderApplicationManifest TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Render a list of all files making up a given application
17 RenderDataFormList TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Renders a list of DataForms that make use of the given DataFormAttribute
18 RenderFunctionCallers TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Render a list of topics that use a given TopicFunction
19 RenderImageSelector TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Renders a widget to select an image attached to a topic
20 RenderIndexItem TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Fallback to render a summary for WikiTopic that does not have a type specific version of to render an index item
21 RenderInheritanceGraph TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  a directed graph of TopicType inheritance
22 RenderRecentChanges TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  renders a list of recent changes in a web
23 RenderRss TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  default implementation of an rss view of a single topic
24 RenderSideBar TopicFunction, ApplicationTopic, WikiTopic
  Render the sidebar navigation for the WikiWorkbench
25 RenderSimpleTopicCreator TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  TopicFunction to display a simple form to create a new topic
26 RenderTopicInstaller TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Render a simple factory to deploy a topic in another web
27 RenderTopicThumbnail TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Display thumbnail image for a topic
28 RenderTopicsOfType TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Display a table of topcis of a given type
29 RenderWikiApplicationFactory TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Renders a form to create a new WikiApplication
30 RenderWikiApplicationWebHome TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
  Renders a dashboard for an application web
31 RenderWikiTopicView TopicFunction, DocuTopic, ApplicationTopic, WikiTopic
   
32 RssViewTemplate TopicView, ApplicationTopic, WikiTopic
  View for the rss feeds
33 TextEditTemplate TopicView, ApplicationTopic, WikiTopic
  TopicView to edit the topic text only
34 TextViewTemplate TopicView, ApplicationTopic, WikiTopic
  Minimal TopicView usefull to generate xml output
35 TopicFunction TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  Function library
36 TopicFunctionViewTemplate TopicView, ApplicationTopic, WikiTopic
  TopicView for TopicFunctions
37 TopicStub TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  a placeholder topic pointing to another one
38 TopicStubEditTemplate TopicView, ApplicationTopic, WikiTopic
   
39 TopicStubViewTemplate TopicView, ApplicationTopic, WikiTopic
   
40 TopicTemplate TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  templates for wiki topics
41 TopicType TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  TopicType of all TopicTypes
42 TopicTypeEditTemplate TopicView, ApplicationTopic, WikiTopic
  Editor for TopicTypes
43 TopicView TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  a topic view or edit template
44 WebHome ApplicationTopic, WikiTopic
  Library of all WikiApplications installed on Foswiki
45 WebLexicon WebTool, ApplicationTopic, WikiTopic
   
46 WebTool TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  a special page used to manage a web
47 WikiApplication TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  a documentation topic for a wiki application
48 WikiTopic TopicType, DataForm, DocuTopic, ApplicationTopic, WikiTopic
  a base topic for wiki content
49 WikiTopicEditTemplate TopicView, ApplicationTopic, WikiTopic
  TopicView to edit a WikiTopic
50 WikiTopicViewTemplate TopicView, ApplicationTopic, WikiTopic
  Generic topic view

WikiApplication edit

TopicType WikiApplication, ApplicationTopic, WikiTopic
TopicTitle
Summary WikiApplication to develop WikiApplications
Version 4.00
Author Michael Daum
Copyright © 2006-2019 Michael Daum http://michaeldaumconsulting.com
License GNU General Public License, version 2
Dependencies
Topic revision: r1 - 02 May 2019, ProjectContributor
This site is powered by FoswikiCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding Foswiki? Send feedback