Difference between revisions of "Category:FAQ"
Jump to navigation
Jump to search
(modified by JSMW_PageSchema at 2015-01-09T18:47:01Z) |
(modified by JSMW_PageSchema at 2015-01-24T03:56:49Z) |
||
Line 45: | Line 45: | ||
</Template> | </Template> | ||
</PageSchema> | </PageSchema> | ||
− | + | === UML === | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | === UML | ||
<uml> | <uml> | ||
skinparam classBackgroundColor white | skinparam classBackgroundColor white | ||
Line 91: | Line 63: | ||
I represent a Frequently asked question | I represent a Frequently asked question | ||
end note | end note | ||
− | FAQNote ..FAQ | + | FAQNote .. FAQ |
Class FAQ <<Category>> { | Class FAQ <<Category>> { | ||
Text Question | Text Question | ||
Line 101: | Line 73: | ||
hide <<Category>> circle | hide <<Category>> circle | ||
</uml> | </uml> | ||
+ | === Documentation === | ||
+ | The Frequently asked Questions on this site are based on the PageSchema shown below<br> | ||
+ | <br> | ||
+ | ===Concept=== | ||
+ | {{Concept | ||
+ | |name=FAQ | ||
+ | }} | ||
+ | === Links === | ||
+ | * [[:Category:FAQ]]<br> | ||
+ | * [[:Template:FAQ]]<br> | ||
+ | * [[:Form:FAQ]]<br> | ||
+ | * [[List of FAQs]]<br> | ||
+ | |||
+ | ====Properties ==== | ||
+ | * [[Property:FAQ_question]]<br> | ||
+ | * [[Property:FAQ_askedOn]]<br> | ||
+ | * [[Property:FAQ_askedBy]]<br> | ||
+ | * [[Property:FAQ_answer]]<br> | ||
+ | === Java Source code to generate FAQ Category === | ||
+ | <br><source lang='java'> PageSchemaManager psm = new PageSchemaManager(); | ||
+ | PageSchema faqPageSchema = new PageSchema(psm, "FAQ"); | ||
+ | |||
+ | Template faqTemplate = faqPageSchema.getDefaultTemplate(); | ||
+ | faqTemplate.addField("question", "Question", "Text", "size=5000"); | ||
+ | faqTemplate.addField("askedOn", "asked on", "Date", "size=12"); | ||
+ | faqTemplate.addField("askedBy", "asked by", "Page", "ComboBox", "size=80"); | ||
+ | faqTemplate.addField("answer", "Answer", "Text", "size=5000"); | ||
+ | |||
+ | // FIXME add comment option | ||
+ | String wikiDocumentation = "The Frequently asked Questions on this site are based on the PageSchema shown below<br>\n"; | ||
+ | String exampleSource = ""; // paste source code here | ||
+ | faqPageSchema | ||
+ | .setWikiDocumentation(wikiDocumentation, exampleSource, "java","=== Java Source code to generate FAQ Category ==="); | ||
+ | faqPageSchema | ||
+ | .setUmlDocumentation("I represent a Frequently asked question"); | ||
+ | |||
+ | psm.update(this.getWiki());</source> | ||
+ | This example source code works with [https://github.com/WolfgangFahl/JSMW_PageSchema JSMW_PageSchema Version 0.0.2]<br> | ||
+ | |||
+ | [[Category:PageSchema]] | ||
+ | This Category has been generated with [https://github.com/WolfgangFahl/JSMW_PageSchema JSMW_PageSchema Version 0.0.2] at 2015-01-24T03:56:49Z<br> |
Revision as of 04:56, 24 January 2015
<PageSchema category="FAQ" name="FAQ" pluralName="FAQs">
<semanticforms_Form name="FAQ" pluralName="FAQs"/> <Template name="FAQ" pluralName="FAQs" format="standard"> <Field name="question" pluralName="questions"> <semanticforms_FormInput> <InputType></InputType> <Parameter name="size" pluralName="sizes">5000</Parameter> <Parameter name="mandatory" pluralName="mandatorys"></Parameter> </semanticforms_FormInput> <Label>Question</Label> <semanticmediawiki_Property name="FAQ_question" pluralName="FAQ_questions"> <Type>Text</Type> </semanticmediawiki_Property> </Field> <Field name="askedOn" pluralName="askedOns"> <semanticforms_FormInput> <InputType></InputType> <Parameter name="size" pluralName="sizes">12</Parameter> </semanticforms_FormInput> <Label>asked on</Label> <semanticmediawiki_Property name="FAQ_askedOn" pluralName="FAQ_askedOns"> <Type>Date</Type> </semanticmediawiki_Property> </Field> <Field name="askedBy" pluralName="askedBys"> <semanticforms_FormInput> <InputType>ComboBox</InputType> <Parameter name="size" pluralName="sizes">80</Parameter> </semanticforms_FormInput> <Label>asked by</Label> <semanticmediawiki_Property name="FAQ_askedBy" pluralName="FAQ_askedBys"> <Type>Page</Type> </semanticmediawiki_Property> </Field> <Field name="answer" pluralName="answers"> <semanticforms_FormInput> <InputType></InputType> <Parameter name="size" pluralName="sizes">5000</Parameter> </semanticforms_FormInput> <Label>Answer</Label> <semanticmediawiki_Property name="FAQ_answer" pluralName="FAQ_answers"> <Type>Text</Type> </semanticmediawiki_Property> </Field> </Template>
</PageSchema>
UML
Documentation
The Frequently asked Questions on this site are based on the PageSchema shown below
Concept
Links
Properties
Java Source code to generate FAQ Category
PageSchemaManager psm = new PageSchemaManager();
PageSchema faqPageSchema = new PageSchema(psm, "FAQ");
Template faqTemplate = faqPageSchema.getDefaultTemplate();
faqTemplate.addField("question", "Question", "Text", "size=5000");
faqTemplate.addField("askedOn", "asked on", "Date", "size=12");
faqTemplate.addField("askedBy", "asked by", "Page", "ComboBox", "size=80");
faqTemplate.addField("answer", "Answer", "Text", "size=5000");
// FIXME add comment option
String wikiDocumentation = "The Frequently asked Questions on this site are based on the PageSchema shown below<br>\n";
String exampleSource = ""; // paste source code here
faqPageSchema
.setWikiDocumentation(wikiDocumentation, exampleSource, "java","=== Java Source code to generate FAQ Category ===");
faqPageSchema
.setUmlDocumentation("I represent a Frequently asked question");
psm.update(this.getWiki());
This example source code works with JSMW_PageSchema Version 0.0.2
This Category has been generated with JSMW_PageSchema Version 0.0.2 at 2015-01-24T03:56:49Z
Pages in category "FAQ"
This category contains only the following page.