META TOPICPARENT
name="WebHome"
Create New Topic in TWiki Web > > > >
< < // > > /* /**
Checks if the entered topic name is a valid WikiWord . < < If so, enables the submit button, if not: enables the submit button > > If so, enables the submit button, if not: enables the submit button if the user allows non-WikiWords as topic name; otherwise disables the submit button and returns 'false'. < < if the user allows non-WikiWords as topic name; otherwise disables the
submit button and returns 'false'. Automatically removes spaces from entered name.
Automatically strips illegal characters.
If non-WikiWords are not allowed, capitalizes words (separated by space). > > If non-WikiWords are allowed, capitalizes sentence. The generated topic name is written to a 'feedback' field.
@param inForm : pointer to the form
@param inShouldConvertInput : true: a new name is created from the entered name
@return True: submit is enabled and topic creation is allowed; false: submit is disabled and topic creation should be inhibited.
*/
function canSubmit(inForm, inShouldConvertInput) {
var inputForTopicName = inForm.topic.value; > > if (inputForTopicName) return; < < // Topic names of zero length are not allowed > > /* Topic names of zero length are not allowed */ if (inputForTopicName.length == 0) {
disableSubmit(inForm.submit); < < // Update feedback field > > /* Update feedback field */ insertHtml("", "webTopicCreatorFeedback");
return false;
}
< < var userAllowsNonWikiWord = inForm.nonwikiword.checked;
// check if current input is a valid WikiWord > > var hasNonWikiWordCheck = (inForm.nonwikiword = undefined);
var userAllowsNonWikiWord = true;
if (hasNonWikiWordCheck) { > > userAllowsNonWikiWord = inForm.nonwikiword.checked;
}
/* check if current input is a valid WikiWord */ var noSpaceName = removeSpacesAndPunctiation(inputForTopicName); < < // if necessary, create a WikiWord from the input name
// (when a non-WikiWord is not allowed) > > /*
if necessary, create a WikiWord from the input name > > (when a non-WikiWord is not allowed)
*/ var wikiWordName = noSpaceName;
if (userAllowsNonWikiWord) {
wikiWordName = removeSpacesAndPunctiation(capitalize(inputForTopicName)); < < } > > } > > if (userAllowsNonWikiWord) {
wikiWordName = removeSpacesAndPunctiation(capitalizeSentence(inputForTopicName));
}
if (inShouldConvertInput) { < < if (userAllowsNonWikiWord) inForm.topic.value = noSpaceName;
if (userAllowsNonWikiWord) inForm.topic.value = wikiWordName; > > if (hasNonWikiWordCheck && userAllowsNonWikiWord) {
inForm.topic.value = noSpaceName; > > } else {
inForm.topic.value = wikiWordName;
} } < < // Update feedback field > > /* Update feedback field */ feedbackHeader = "Topic will be named: ";
feedbackText = feedbackHeader + wikiWordName;
insertHtml(feedbackText, "webTopicCreatorFeedback"); < < // Update hidden field value
// Use the negative value of the checkbox. This is the ugly way but must be used until edit script parameter allowsnonwikiword
is implemented.
inForm.onlywikiname.value = userAllowsNonWikiWord ? "off" : "on"; > > /*
Update hidden field value
Use the negative value of the checkbox. This is the ugly way but must be used until edit script parameter allowsnonwikiword
is implemented.
*/ > > if (hasNonWikiWordCheck && userAllowsNonWikiWord) {
inForm.onlywikiname.value = userAllowsNonWikiWord ? "off" : "on";
} if (isWikiWord(wikiWordName) || userAllowsNonWikiWord) {
enableSubmit(inForm.submit);
return true;
} else {
disableSubmit(inForm.submit);
return false;
}
} > > function capitalizeSentence (inText) {
return inText.substr(0,1).toUpperCase() + inText.substr(1);
} /**
@param inState: true or false
*/
function setCheckBoxState (inCheckBox, inState) { > > if (! inCheckBox) return; inCheckBox.checked = inState;
}
function enableSubmit(inButton) { > > if (inButton) return; removeClass(inButton, "twikiSubmitDisabled");
inButton.disabled = false;
}
function disableSubmit(inButton) { > > if (inButton) return; addClass(inButton, "twikiSubmitDisabled");
inButton.disabled = true;
} < < //]]> > > /* ]]> */ < < > > > > < < Topic name:
<--generated name will be put here-->
> > Topic name:
<--generated name will be put here-->
Allow non WikiWord for the new topic name
< < It's usually best to choose a WikiWord for the new topic name, otherwise automatic linking may not work. Characters not allowed in topic names, such as spaces will automatically be removed. > > It's usually best to choose a WikiWord for the new topic name, otherwise automatic linking may not work. Characters not allowed in topic names, such as spaces will automatically be removed. > > <--/twikiFormStep-->
< < Topic parent: > > Topic parent:
ATasteOfTWiki AccessKeys AdminDocumentationCategory AdminSkillsAssumptions AdminToolsCategory AdministrationVariables AllowWebCreateByUserMappingManager AnApplicationWithWikiForm AppendixEncodeURLsWithUTF8 ApplicationsAndComponentsVariables AttachmentsAndFilesVariables AutonomousWebs BackupRestoreConsole BackupRestorePlugin BehaviourContrib BookView BulkRegistration BulkResetPassword BumpyWord CategoryCategory CgiContrib ChangeEmailAddress ChangePassword ChartingAndDrawingVariables ClassMethod ColorPickerPlugin CommentPlugin CommentPluginExamples CommentPluginTemplate CopyingTopics CustomUserGroupNotations DatabaseAndFormsVariables DateAndTimeVariables DatePickerPlugin DeleteOrRenameATopic DeleteOrRenameAnAttachment DeveloperDocumentationCategory DevelopmentVariables DontNotify EditDoesNotIncreaseTheRevision EditTablePlugin EditUserAccount EditingAndContentUpdateVariables EmailAndNotificationVariables EmptyPlugin ExampleTopicTemplate ExportAndPublishingVariables FileAttachment FileAttribute ForceNewRevision FormatTokens FormattedSearch FormattingAndRenderingVariables GnuGeneralPublicLicense GoodStyle HeadlinesPlugin HiddenAttachment HierarchicalNavigation HierarchicalNavigationChildExample IfStatements ImportVariables IncludeTopicRaw IncludeTopicsAndWebPages InstalledPlugins InstantEnhancements InterWikis InterwikiPlugin JQueryPlugin JumpBox LanguageSelector LargeSite LinkingAndNavigationVariables LoginName MailerContrib MainFeatures ManagingTopics ManagingUsers ManagingWebs MetadataRepository MovedSkin NewUserTemplate ObjectMethod PageRenderingProcess ParameterizedVariables PatternSkin PatternSkinColorSettings PatternSkinCss PatternSkinCssCookbook PatternSkinCssCookbookCenterPage PatternSkinCssCookbookCenterPageBorder PatternSkinCssCookbookEditTableStyle PatternSkinCssCookbookFonts PatternSkinCssCookbookNoLeftBar PatternSkinCssCookbookNoTopBar PatternSkinCustomization PatternSkinElements PatternSkinGraphics PatternSkinWebCreateNewTopicTemplate PersonalPreferencesHelp PeterThoeny PlainSkin PreferencesPlugin PreviewBackground PrintSkin QuerySearch QueryUsers QuietSave ReadOnlyAndMirrorWebs RegistrationApprovals RegularExpression RenameWeb RenderListPlugin ResetPassword ScrollBoxAddOn SearchDoesNotWork SearchHelp SearchPatternCookbook SearchResultsPagination SearchingAndListingVariables SecurityAndAccessControlVariables SetGetPlugin SimultaneousEdits SiteChanges SiteMap SitePermissions SiteStatisticsFooter SiteStatisticsTemplate SkinsAndTemplatesVariables SlideShowPlugin SmiliesPlugin SourceCode SpreadSheetPlugin SpreadSheetPluginTestCases StandardColors StartingPoints StaticMethod SubwebAndTopicNames SystemInformationVariables TWikiAccessControl TWikiAccessControlExceptionDotPm TWikiAccessDotPm TWikiAddOns TWikiAggregateIteratorDotPm TWikiAttachDotPm TWikiAttrsDotPm TWikiCompatibilityDotPm TWikiConfigureCheckersCertificateDotPm TWikiConfigureCheckersCertificateKeyCheckerDotPm TWikiConfigureImgToolDotPm TWikiConfigureLoadDotPm TWikiConfigureUIsEXTENDDotPm TWikiContribs TWikiContributor TWikiCss TWikiDashboardAddOn TWikiDashboardImages TWikiDocGraphics TWikiDocGraphicsTemplate TWikiDocumentation TWikiDotPm TWikiDownload TWikiEditingShorthand TWikiEngineDotPm TWikiEngineExceptionDotPm TWikiEnhancementRequests TWikiExternalLinks TWikiFAQ TWikiFaqTemplate TWikiFormDotPm TWikiFormFieldDefinitionDotPm TWikiFormListFieldDefinitionDotPm TWikiFormSelectDotPm TWikiForms TWikiFuncDotPm TWikiGlossary TWikiHistory TWikiI18NDotPm TWikiI18NExtractDotPm TWikiIfNodeDotPm TWikiIfOP_iswebDotPm TWikiIfParserDotPm TWikiInfixErrorDotPm TWikiInfixNodeDotPm TWikiInfixParserDotPm TWikiInstallationGuide TWikiJavascripts TWikiLineIteratorDotPm TWikiListIteratorDotPm TWikiLoginManagerApacheLoginDotPm TWikiLoginManagerDotPm TWikiLoginManagerSessionDotPm TWikiLoginManagerTemplateLoginDotPm TWikiLogos TWikiMdrepoDotPm TWikiMergeDotPm TWikiMetaData TWikiMetaDotPm TWikiNetDotPm TWikiNetHTTPResponseDotPm TWikiOopsExceptionDotPm TWikiPluginDotPm TWikiPlugins TWikiPluginsDotPm TWikiPluralsDotPm TWikiPreferences TWikiPreferencesForm TWikiPrefsDotPm TWikiPrefsParserDotPm TWikiPrefsPrefsCacheDotPm TWikiQueryHoistREsDotPm TWikiQueryNodeDotPm TWikiQueryParserDotPm TWikiReferenceManual TWikiRegistration TWikiReleaseNotes04x00 TWikiReleaseNotes04x01 TWikiReleaseNotes04x02 TWikiReleaseNotes04x03 TWikiReleaseNotes05x00 TWikiReleaseNotes05x01 TWikiReleaseNotes06x00 TWikiReleaseNotes06x01 TWikiRenderDotPm TWikiRenderingShortcut TWikiRequestDotPm TWikiResponseDotPm TWikiSandboxDotPm TWikiScripts TWikiSearchDotPm TWikiSheetPlugin TWikiShorthand TWikiSite TWikiSiteTools TWikiSkinBrowser TWikiSkins TWikiStoreDotPm TWikiStoreQueryAlgorithmsBruteForceDotPm TWikiStoreRcsFileDotPm TWikiStoreRcsLiteDotPm TWikiStoreRcsWrapDotPm TWikiStoreSearchAlgorithmsForkingDotPm TWikiStoreSearchAlgorithmsPurePerlDotPm TWikiSystemRequirements TWikiTemplates TWikiTemplatesDotPm TWikiTimeDotPm TWikiTip001 TWikiTip002 TWikiTip003 TWikiTip004 TWikiTip005 TWikiTip006 TWikiTip007 TWikiTip008 TWikiTip009 TWikiTip010 TWikiTip011 TWikiTip012 TWikiTip013 TWikiTip014 TWikiTip015 TWikiTip016 TWikiTip017 TWikiTip018 TWikiTip019 TWikiTip020 TWikiTip021 TWikiTip022 TWikiTip023 TWikiTip024 TWikiTip025 TWikiTip026 TWikiTip027 TWikiTip028 TWikiTip029 TWikiTips TWikiTipsOfTheDay TWikiTipsOfTheDayAddNew TWikiTipsOfTheDayAdmin TWikiTipsOfTheDayInclude TWikiTipsOfTheDayTemplate TWikiTopics TWikiTutorial TWikiUIChangeFormDotPm TWikiUICopyDotPm TWikiUIDotPm TWikiUIEditDotPm TWikiUIManageDotPm TWikiUIMdrepoUIDotPm TWikiUIOopsDotPm TWikiUIRDiffDotPm TWikiUIRegisterDotPm TWikiUIRestDotPm TWikiUISaveDotPm TWikiUISearchDotPm TWikiUIStatisticsDotPm TWikiUIUploadDotPm TWikiUIViewDotPm TWikiUpgradeGuide TWikiUserAuthentication TWikiUserMappingContrib TWikiUserMappingDotPm TWikiUserSetting TWikiUsersApacheHtpasswdUserDotPm TWikiUsersBaseUserMappingDotPm TWikiUsersDotPm TWikiUsersGuide TWikiUsersHtPasswdUserDotPm TWikiUsersPasswordDotPm TWikiUsersTWikiUserMappingDotPm TWikiUsersTemplate TWikiVariables TWikiVariablesCategoryBody TWikiVariablesQuickStart TWikiVariablesSearch TWikiVariablesWizard TablePlugin TablesAndSpreadsheetsVariables TagMeChangeRequests TagMeCreateNewTag TagMeDebugSearch TagMeDebugViewTags TagMeDeleteTag TagMePlugin TagMeRenameTag TagMeSearch TagMeViewAllTags TagMeViewMyTags TemplateWeb TextEditor TextFormattingFAQ TextFormattingRules TimBernersLee TimeSincePlugin TimeSpecifications TinyMCEFrequentlyAskedQuestions TinyMCEPlugin TinyMCEQuickHelp TipsContrib TopMenuSkin TopMenuSkinDefaultWebTopMenu TopMenuSkinHomeMenu TopMenuSkinTopBar TopMenuSkinTopicMenu TwistyContrib TwistyPlugin UIAndVisualizationVariables UserBookmarks UserBookmarksTemplate UserDocumentationCategory UserForm UserMasquerading UserReports UserSubwebs UserToolsCategory UsersAndAuthenticationVariables UsingHTML UsingMultipleDisks VarACTIVATEDPLUGINS VarADDTOHEAD VarALLVARIABLES VarAQUA VarATTACHURL VarATTACHURLPATH VarAUTHREALM VarBASETOPIC VarBASEWEB VarBB VarBB2 VarBB3 VarBB4 VarBLACK VarBLUE VarBR VarBROWN VarBUBBLESIG VarBULLET VarCALC VarCALCULATE VarCARET VarCHILDREN VarCOLORPICKER VarCOMMENT VarCONTENTMODE VarCOPY VarDASHBOARD VarDATE VarDATEPICKER VarDISPLAYTIME VarDISPLAYTIME2 VarEDITACTION VarEDITFORM VarEDITFORMFIELD VarEDITTABLE VarENCODE VarENDBG VarENDCOLOR VarENDCOLUMNS VarENDSECTION VarENTITY VarENV VarEXAMPLEVAR VarFAILEDPLUGINS VarFORM VarFORMFIELD VarFOURCOLUMNS VarGET VarGMTIME VarGMTIME2 VarGRAY VarGREEN VarGROUPS VarH VarHEADLINES VarHIDE VarHIDEINPRINT VarHOMETOPIC VarHTTP VarHTTPHOST VarHTTPS VarI VarICON VarICONURL VarICONURLPATH VarIF VarINCLUDE VarINCLUDINGTOPIC VarINCLUDINGWEB VarJQENDTAB VarJQENDTABPANE VarJQTAB VarJQTABPANE VarLANGUAGE VarLANGUAGES VarLAQUO VarLIME VarLOCALSITEPREFS VarLOGIN VarLOGINURL VarLOGOUT VarLOGOUTURL VarM VarMAINWEB VarMAKETEXT VarMAROON VarMDREPO VarMETA VarMETASEARCH VarN VarNAVY VarNBSP VarNOP VarNOTIFYTOPIC VarOLIVE VarORANGE VarP VarPARENTBC VarPARENTTOPIC VarPINK VarPLUGINDESCRIPTIONS VarPLUGINVERSION VarPUBURL VarPUBURLPATH VarPURPLE VarQ VarQUERYPARAMS VarQUERYSTRING VarRAQUO VarRED VarREDBG VarREG VarREMOTEADDR VarREMOTEPORT VarREMOTEUSER VarRENDERLIST VarREVINFO VarREVINFO2 VarS VarSCRIPTNAME VarSCRIPTSUFFIX VarSCRIPTURL VarSCRIPTURL2 VarSCRIPTURLPATH VarSCRIPTURLPATH2 VarSEARCH VarSERVERTIME VarSERVERTIME2 VarSESSIONID VarSESSIONVAR VarSESSIONVARIABLE VarSET VarSETGETDUMP VarSILVER VarSITENAME VarSITESTATISTICSTOPIC VarSLIDESHOWEND VarSLIDESHOWSTART VarSPACEDTOPIC VarSPACEOUT VarSTARTINCLUDE VarSTARTSECTION VarSTATISTICSTOPIC VarSTOPINCLUDE VarSYSTEMWEB VarT VarTABLE VarTEAL VarTHREECOLUMNS VarTM VarTOC VarTOC2 VarTOPIC VarTOPICLIST VarTOPICTITLE VarTOPICURL VarTWIKISHEET VarTWIKIWEB VarTWISTY VarTWOCOLUMNS VarU VarURLPARAM VarUSERINFO VarUSERNAME VarUSERREPORT VarUSERSIG VarUSERSWEB VarVAR VarVBAR VarWEB VarWEBLIST VarWEBPREFSTOPIC VarWHITE VarWIKIHOMEURL VarWIKILOGOALT VarWIKILOGOIMG VarWIKILOGOURL VarWIKINAME VarWIKIPREFSTOPIC VarWIKITOOLNAME VarWIKIUSERNAME VarWIKIUSERSTOPIC VarWIKIVERSION VarWIKIWEBMASTER VarWIKIWEBMASTERNAME VarWIP VarX VarY VarYELLOW ViewTildeJsmith WabiSabi WatchlistPlugin WatchlistTemplate WebAtom WebAtomBase WebBottomBar WebChanges WebChangesAlert WebChangesRightBox WebCreateNewTopic WebCreateNewTopicTemplate WebHome WebIndex WebLeftBar WebLeftBarCookbook WebLeftBarExample WebLeftBarLogin WebLeftBarPersonalTemplate WebLeftBarSearch WebLeftBarWebsList WebNotify WebPreferences WebPreferencesHelp WebRss WebRssBase WebSearch WebSearchAdvanced WebSearchAttachments WebSiteTools WebStatistics WebStatisticsFooter WebTemplateTopics WebTopBar WebTopMenu WebTopicCreator WebTopicEditTemplate WebTopicList WebTopicNonWikiTemplate WebTopicViewTemplate WelcomeGuest WhatDoesTWikiStandFor WhatIsWikiWiki WikiCulture WikiName WikiNotation WikiReferences WikiSyntax WikiSyntaxSummary WikiWord WorkflowAndAutomationVariables WysiwygPlugin WysiwygPluginSettings WysiwygPluginTopicLister YouAreHere
(no parent, orphaned topic)
<--/twikiFormStep--> > > <--/twikiFormStep--> <--/twikiFormStep-->
<--/twikiFormSteps--> < < > > < <
> >
Once you have created the topic, consider adding links in related topics to the new topic so that there are more ways people can discover it.
META TOPICPARENT
name="WebHome"
> > Create New Topic in TWiki Web
< < > > < < Create New Topic in TWiki Web < <
<-- TODO: move JS to a separate file and make it callable on click of the button too -->
<-- TODO: blank out all the irrelevant links: Edit, Compose, Attach, Printable, ... Raw text, versions, History, More topic actions: could this be a CSS? --> > > <--generated name will be put here-->
Allow non WikiWord for the new topic name
It's usually best to choose a WikiWord for the new topic name, otherwise automatic linking may not work. Characters not allowed in topic names, such as spaces will automatically be removed.
< <
Allow non WikiWord for the new topic name
It's usually best to choose a WikiWord for the new topic name, otherwise automatic linking may not work. Characters not allowed in topic names, such as spaces will automatically be removed.
<--/twikiFormStep-->
< < > >
ATasteOfTWiki AccessKeys AdminDocumentationCategory AdminSkillsAssumptions AdminToolsCategory AdministrationVariables AllowWebCreateByUserMappingManager AnApplicationWithWikiForm AppendixEncodeURLsWithUTF8 ApplicationsAndComponentsVariables AttachmentsAndFilesVariables AutonomousWebs BackupRestoreConsole BackupRestorePlugin BehaviourContrib BookView BulkRegistration BulkResetPassword BumpyWord CategoryCategory CgiContrib ChangeEmailAddress ChangePassword ChartingAndDrawingVariables ClassMethod ColorPickerPlugin CommentPlugin CommentPluginExamples CommentPluginTemplate CopyingTopics CustomUserGroupNotations DatabaseAndFormsVariables DateAndTimeVariables DatePickerPlugin DeleteOrRenameATopic DeleteOrRenameAnAttachment DeveloperDocumentationCategory DevelopmentVariables DontNotify EditDoesNotIncreaseTheRevision EditTablePlugin EditUserAccount EditingAndContentUpdateVariables EmailAndNotificationVariables EmptyPlugin ExampleTopicTemplate ExportAndPublishingVariables FileAttachment FileAttribute ForceNewRevision FormatTokens FormattedSearch FormattingAndRenderingVariables GnuGeneralPublicLicense GoodStyle HeadlinesPlugin HiddenAttachment HierarchicalNavigation HierarchicalNavigationChildExample IfStatements ImportVariables IncludeTopicRaw IncludeTopicsAndWebPages InstalledPlugins InstantEnhancements InterWikis InterwikiPlugin JQueryPlugin JumpBox LanguageSelector LargeSite LinkingAndNavigationVariables LoginName MailerContrib MainFeatures ManagingTopics ManagingUsers ManagingWebs MetadataRepository MovedSkin NewUserTemplate ObjectMethod PageRenderingProcess ParameterizedVariables PatternSkin PatternSkinColorSettings PatternSkinCss PatternSkinCssCookbook PatternSkinCssCookbookCenterPage PatternSkinCssCookbookCenterPageBorder PatternSkinCssCookbookEditTableStyle PatternSkinCssCookbookFonts PatternSkinCssCookbookNoLeftBar PatternSkinCssCookbookNoTopBar PatternSkinCustomization PatternSkinElements PatternSkinGraphics PatternSkinWebCreateNewTopicTemplate PersonalPreferencesHelp PeterThoeny PlainSkin PreferencesPlugin PreviewBackground PrintSkin QuerySearch QueryUsers QuietSave ReadOnlyAndMirrorWebs RegistrationApprovals RegularExpression RenameWeb RenderListPlugin ResetPassword ScrollBoxAddOn SearchDoesNotWork SearchHelp SearchPatternCookbook SearchResultsPagination SearchingAndListingVariables SecurityAndAccessControlVariables SetGetPlugin SimultaneousEdits SiteChanges SiteMap SitePermissions SiteStatisticsFooter SiteStatisticsTemplate SkinsAndTemplatesVariables SlideShowPlugin SmiliesPlugin SourceCode SpreadSheetPlugin SpreadSheetPluginTestCases StandardColors StartingPoints StaticMethod SubwebAndTopicNames SystemInformationVariables TWikiAccessControl TWikiAccessControlExceptionDotPm TWikiAccessDotPm TWikiAddOns TWikiAggregateIteratorDotPm TWikiAttachDotPm TWikiAttrsDotPm TWikiCompatibilityDotPm TWikiConfigureCheckersCertificateDotPm TWikiConfigureCheckersCertificateKeyCheckerDotPm TWikiConfigureImgToolDotPm TWikiConfigureLoadDotPm TWikiConfigureUIsEXTENDDotPm TWikiContribs TWikiContributor TWikiCss TWikiDashboardAddOn TWikiDashboardImages TWikiDocGraphics TWikiDocGraphicsTemplate TWikiDocumentation TWikiDotPm TWikiDownload TWikiEditingShorthand TWikiEngineDotPm TWikiEngineExceptionDotPm TWikiEnhancementRequests TWikiExternalLinks TWikiFAQ TWikiFaqTemplate TWikiFormDotPm TWikiFormFieldDefinitionDotPm TWikiFormListFieldDefinitionDotPm TWikiFormSelectDotPm TWikiForms TWikiFuncDotPm TWikiGlossary TWikiHistory TWikiI18NDotPm TWikiI18NExtractDotPm TWikiIfNodeDotPm TWikiIfOP_iswebDotPm TWikiIfParserDotPm TWikiInfixErrorDotPm TWikiInfixNodeDotPm TWikiInfixParserDotPm TWikiInstallationGuide TWikiJavascripts TWikiLineIteratorDotPm TWikiListIteratorDotPm TWikiLoginManagerApacheLoginDotPm TWikiLoginManagerDotPm TWikiLoginManagerSessionDotPm TWikiLoginManagerTemplateLoginDotPm TWikiLogos TWikiMdrepoDotPm TWikiMergeDotPm TWikiMetaData TWikiMetaDotPm TWikiNetDotPm TWikiNetHTTPResponseDotPm TWikiOopsExceptionDotPm TWikiPluginDotPm TWikiPlugins TWikiPluginsDotPm TWikiPluralsDotPm TWikiPreferences TWikiPreferencesForm TWikiPrefsDotPm TWikiPrefsParserDotPm TWikiPrefsPrefsCacheDotPm TWikiQueryHoistREsDotPm TWikiQueryNodeDotPm TWikiQueryParserDotPm TWikiReferenceManual TWikiRegistration TWikiReleaseNotes04x00 TWikiReleaseNotes04x01 TWikiReleaseNotes04x02 TWikiReleaseNotes04x03 TWikiReleaseNotes05x00 TWikiReleaseNotes05x01 TWikiReleaseNotes06x00 TWikiReleaseNotes06x01 TWikiRenderDotPm TWikiRenderingShortcut TWikiRequestDotPm TWikiResponseDotPm TWikiSandboxDotPm TWikiScripts TWikiSearchDotPm TWikiSheetPlugin TWikiShorthand TWikiSite TWikiSiteTools TWikiSkinBrowser TWikiSkins TWikiStoreDotPm TWikiStoreQueryAlgorithmsBruteForceDotPm TWikiStoreRcsFileDotPm TWikiStoreRcsLiteDotPm TWikiStoreRcsWrapDotPm TWikiStoreSearchAlgorithmsForkingDotPm TWikiStoreSearchAlgorithmsPurePerlDotPm TWikiSystemRequirements TWikiTemplates TWikiTemplatesDotPm TWikiTimeDotPm TWikiTip001 TWikiTip002 TWikiTip003 TWikiTip004 TWikiTip005 TWikiTip006 TWikiTip007 TWikiTip008 TWikiTip009 TWikiTip010 TWikiTip011 TWikiTip012 TWikiTip013 TWikiTip014 TWikiTip015 TWikiTip016 TWikiTip017 TWikiTip018 TWikiTip019 TWikiTip020 TWikiTip021 TWikiTip022 TWikiTip023 TWikiTip024 TWikiTip025 TWikiTip026 TWikiTip027 TWikiTip028 TWikiTip029 TWikiTips TWikiTipsOfTheDay TWikiTipsOfTheDayAddNew TWikiTipsOfTheDayAdmin TWikiTipsOfTheDayInclude TWikiTipsOfTheDayTemplate TWikiTopics TWikiTutorial TWikiUIChangeFormDotPm TWikiUICopyDotPm TWikiUIDotPm TWikiUIEditDotPm TWikiUIManageDotPm TWikiUIMdrepoUIDotPm TWikiUIOopsDotPm TWikiUIRDiffDotPm TWikiUIRegisterDotPm TWikiUIRestDotPm TWikiUISaveDotPm TWikiUISearchDotPm TWikiUIStatisticsDotPm TWikiUIUploadDotPm TWikiUIViewDotPm TWikiUpgradeGuide TWikiUserAuthentication TWikiUserMappingContrib TWikiUserMappingDotPm TWikiUserSetting TWikiUsersApacheHtpasswdUserDotPm TWikiUsersBaseUserMappingDotPm TWikiUsersDotPm TWikiUsersGuide TWikiUsersHtPasswdUserDotPm TWikiUsersPasswordDotPm TWikiUsersTWikiUserMappingDotPm TWikiUsersTemplate TWikiVariables TWikiVariablesCategoryBody TWikiVariablesQuickStart TWikiVariablesSearch TWikiVariablesWizard TablePlugin TablesAndSpreadsheetsVariables TagMeChangeRequests TagMeCreateNewTag TagMeDebugSearch TagMeDebugViewTags TagMeDeleteTag TagMePlugin TagMeRenameTag TagMeSearch TagMeViewAllTags TagMeViewMyTags TemplateWeb TextEditor TextFormattingFAQ TextFormattingRules TimBernersLee TimeSincePlugin TimeSpecifications TinyMCEFrequentlyAskedQuestions TinyMCEPlugin TinyMCEQuickHelp TipsContrib TopMenuSkin TopMenuSkinDefaultWebTopMenu TopMenuSkinHomeMenu TopMenuSkinTopBar TopMenuSkinTopicMenu TwistyContrib TwistyPlugin UIAndVisualizationVariables UserBookmarks UserBookmarksTemplate UserDocumentationCategory UserForm UserMasquerading UserReports UserSubwebs UserToolsCategory UsersAndAuthenticationVariables UsingHTML UsingMultipleDisks VarACTIVATEDPLUGINS VarADDTOHEAD VarALLVARIABLES VarAQUA VarATTACHURL VarATTACHURLPATH VarAUTHREALM VarBASETOPIC VarBASEWEB VarBB VarBB2 VarBB3 VarBB4 VarBLACK VarBLUE VarBR VarBROWN VarBUBBLESIG VarBULLET VarCALC VarCALCULATE VarCARET VarCHILDREN VarCOLORPICKER VarCOMMENT VarCONTENTMODE VarCOPY VarDASHBOARD VarDATE VarDATEPICKER VarDISPLAYTIME VarDISPLAYTIME2 VarEDITACTION VarEDITFORM VarEDITFORMFIELD VarEDITTABLE VarENCODE VarENDBG VarENDCOLOR VarENDCOLUMNS VarENDSECTION VarENTITY VarENV VarEXAMPLEVAR VarFAILEDPLUGINS VarFORM VarFORMFIELD VarFOURCOLUMNS VarGET VarGMTIME VarGMTIME2 VarGRAY VarGREEN VarGROUPS VarH VarHEADLINES VarHIDE VarHIDEINPRINT VarHOMETOPIC VarHTTP VarHTTPHOST VarHTTPS VarI VarICON VarICONURL VarICONURLPATH VarIF VarINCLUDE VarINCLUDINGTOPIC VarINCLUDINGWEB VarJQENDTAB VarJQENDTABPANE VarJQTAB VarJQTABPANE VarLANGUAGE VarLANGUAGES VarLAQUO VarLIME VarLOCALSITEPREFS VarLOGIN VarLOGINURL VarLOGOUT VarLOGOUTURL VarM VarMAINWEB VarMAKETEXT VarMAROON VarMDREPO VarMETA VarMETASEARCH VarN VarNAVY VarNBSP VarNOP VarNOTIFYTOPIC VarOLIVE VarORANGE VarP VarPARENTBC VarPARENTTOPIC VarPINK VarPLUGINDESCRIPTIONS VarPLUGINVERSION VarPUBURL VarPUBURLPATH VarPURPLE VarQ VarQUERYPARAMS VarQUERYSTRING VarRAQUO VarRED VarREDBG VarREG VarREMOTEADDR VarREMOTEPORT VarREMOTEUSER VarRENDERLIST VarREVINFO VarREVINFO2 VarS VarSCRIPTNAME VarSCRIPTSUFFIX VarSCRIPTURL VarSCRIPTURL2 VarSCRIPTURLPATH VarSCRIPTURLPATH2 VarSEARCH VarSERVERTIME VarSERVERTIME2 VarSESSIONID VarSESSIONVAR VarSESSIONVARIABLE VarSET VarSETGETDUMP VarSILVER VarSITENAME VarSITESTATISTICSTOPIC VarSLIDESHOWEND VarSLIDESHOWSTART VarSPACEDTOPIC VarSPACEOUT VarSTARTINCLUDE VarSTARTSECTION VarSTATISTICSTOPIC VarSTOPINCLUDE VarSYSTEMWEB VarT VarTABLE VarTEAL VarTHREECOLUMNS VarTM VarTOC VarTOC2 VarTOPIC VarTOPICLIST VarTOPICTITLE VarTOPICURL VarTWIKISHEET VarTWIKIWEB VarTWISTY VarTWOCOLUMNS VarU VarURLPARAM VarUSERINFO VarUSERNAME VarUSERREPORT VarUSERSIG VarUSERSWEB VarVAR VarVBAR VarWEB VarWEBLIST VarWEBPREFSTOPIC VarWHITE VarWIKIHOMEURL VarWIKILOGOALT VarWIKILOGOIMG VarWIKILOGOURL VarWIKINAME VarWIKIPREFSTOPIC VarWIKITOOLNAME VarWIKIUSERNAME VarWIKIUSERSTOPIC VarWIKIVERSION VarWIKIWEBMASTER VarWIKIWEBMASTERNAME VarWIP VarX VarY VarYELLOW ViewTildeJsmith WabiSabi WatchlistPlugin WatchlistTemplate WebAtom WebAtomBase WebBottomBar WebChanges WebChangesAlert WebChangesRightBox WebCreateNewTopic WebCreateNewTopicTemplate WebHome WebIndex WebLeftBar WebLeftBarCookbook WebLeftBarExample WebLeftBarLogin WebLeftBarPersonalTemplate WebLeftBarSearch WebLeftBarWebsList WebNotify WebPreferences WebPreferencesHelp WebRss WebRssBase WebSearch WebSearchAdvanced WebSearchAttachments WebSiteTools WebStatistics WebStatisticsFooter WebTemplateTopics WebTopBar WebTopMenu WebTopicCreator WebTopicEditTemplate WebTopicList WebTopicNonWikiTemplate WebTopicViewTemplate WelcomeGuest WhatDoesTWikiStandFor WhatIsWikiWiki WikiCulture WikiName WikiNotation WikiReferences WikiSyntax WikiSyntaxSummary WikiWord WorkflowAndAutomationVariables WysiwygPlugin WysiwygPluginSettings WysiwygPluginTopicLister YouAreHere
(no parent, orphaned topic) < < > > <--/twikiFormStep-->
< < > >
<--/twikiFormStep-->
<--/twikiFormSteps--> < < > >
> >
Once you have created the topic, consider adding links in related topics to the new topic so that there are more ways people can discover it.
META TOPICPARENT
name="WebHome"
< < > > > > //WikiWord
if (inForm.nonwikiword.checked == true) {
return removeSpaces(inValue);
}
var sIn = inValue;
var sOut = '';
var chgUpper = true;
for ( var i = 0; i < sIn.length; i++ ) {
var ch = sIn.charAt( i );
if( ch!=' ' ) {
if( chgUpper ) {
ch = ch.toUpperCase();
chgUpper = false;
}
}
if( ch==' ' ) {
chgUpper = true;
} else {
chgUpper = false;
}
sOut += ch;
}
return removeSpaces(sOut);
}
function removeSpaces(inValue) {
var sIn = inValue;
var sOut = '';
for ( var i = 0; i < sIn.length; i++ ) {
var ch = sIn.charAt( i );
if( ch==' ' ) {
chgUpper = true;
continue;
}
sOut += ch;
}
return sOut;
}
function canSubmit(inForm) {
inForm.topic.value = capitalize(inForm, inForm.topic.value);
// Use the negative value of the checkbox. This is the ugly way but must be used until edit script parameter allowsnonwikiword
is implemented.
inForm.onlywikiname.value = (inForm.nonwikiword.checked == true) ? "off" : "on";
return true;
}
//]]>
Create New Topic in TWiki Web < <
Topic name:
> > <-- TODO: move JS to a separate file and make it callable on click of the button too -->
<-- TODO: blank out all the irrelevant links: Edit, Compose, Attach, Printable, ... Raw text, versions, History, More topic actions: could this be a CSS? --> < < > >
Allow non WikiWord for the new topic name
It's usually best to choose a WikiWord for the new topic name, otherwise automatic linking may not work. Characters not allowed in topic names, such as spaces will automatically be removed.
<--/twikiFormStep--> > > < < (no parent, orphaned topic) > > ATasteOfTWiki AccessKeys AdminDocumentationCategory AdminSkillsAssumptions AdminToolsCategory AdministrationVariables AllowWebCreateByUserMappingManager AnApplicationWithWikiForm AppendixEncodeURLsWithUTF8 ApplicationsAndComponentsVariables AttachmentsAndFilesVariables AutonomousWebs BackupRestoreConsole BackupRestorePlugin BehaviourContrib BookView BulkRegistration BulkResetPassword BumpyWord CategoryCategory CgiContrib ChangeEmailAddress ChangePassword ChartingAndDrawingVariables ClassMethod ColorPickerPlugin CommentPlugin CommentPluginExamples CommentPluginTemplate CopyingTopics CustomUserGroupNotations DatabaseAndFormsVariables DateAndTimeVariables DatePickerPlugin DeleteOrRenameATopic DeleteOrRenameAnAttachment DeveloperDocumentationCategory DevelopmentVariables DontNotify EditDoesNotIncreaseTheRevision EditTablePlugin EditUserAccount EditingAndContentUpdateVariables EmailAndNotificationVariables EmptyPlugin ExampleTopicTemplate ExportAndPublishingVariables FileAttachment FileAttribute ForceNewRevision FormatTokens FormattedSearch FormattingAndRenderingVariables GnuGeneralPublicLicense GoodStyle HeadlinesPlugin HiddenAttachment HierarchicalNavigation HierarchicalNavigationChildExample IfStatements ImportVariables IncludeTopicRaw IncludeTopicsAndWebPages InstalledPlugins InstantEnhancements InterWikis InterwikiPlugin JQueryPlugin JumpBox LanguageSelector LargeSite LinkingAndNavigationVariables LoginName MailerContrib MainFeatures ManagingTopics ManagingUsers ManagingWebs MetadataRepository MovedSkin NewUserTemplate ObjectMethod PageRenderingProcess ParameterizedVariables PatternSkin PatternSkinColorSettings PatternSkinCss PatternSkinCssCookbook PatternSkinCssCookbookCenterPage PatternSkinCssCookbookCenterPageBorder PatternSkinCssCookbookEditTableStyle PatternSkinCssCookbookFonts PatternSkinCssCookbookNoLeftBar PatternSkinCssCookbookNoTopBar PatternSkinCustomization PatternSkinElements PatternSkinGraphics PatternSkinWebCreateNewTopicTemplate PersonalPreferencesHelp PeterThoeny PlainSkin PreferencesPlugin PreviewBackground PrintSkin QuerySearch QueryUsers QuietSave ReadOnlyAndMirrorWebs RegistrationApprovals RegularExpression RenameWeb RenderListPlugin ResetPassword ScrollBoxAddOn SearchDoesNotWork SearchHelp SearchPatternCookbook SearchResultsPagination SearchingAndListingVariables SecurityAndAccessControlVariables SetGetPlugin SimultaneousEdits SiteChanges SiteMap SitePermissions SiteStatisticsFooter SiteStatisticsTemplate SkinsAndTemplatesVariables SlideShowPlugin SmiliesPlugin SourceCode SpreadSheetPlugin SpreadSheetPluginTestCases StandardColors StartingPoints StaticMethod SubwebAndTopicNames SystemInformationVariables TWikiAccessControl TWikiAccessControlExceptionDotPm TWikiAccessDotPm TWikiAddOns TWikiAggregateIteratorDotPm TWikiAttachDotPm TWikiAttrsDotPm TWikiCompatibilityDotPm TWikiConfigureCheckersCertificateDotPm TWikiConfigureCheckersCertificateKeyCheckerDotPm TWikiConfigureImgToolDotPm TWikiConfigureLoadDotPm TWikiConfigureUIsEXTENDDotPm TWikiContribs TWikiContributor TWikiCss TWikiDashboardAddOn TWikiDashboardImages TWikiDocGraphics TWikiDocGraphicsTemplate TWikiDocumentation TWikiDotPm TWikiDownload TWikiEditingShorthand TWikiEngineDotPm TWikiEngineExceptionDotPm TWikiEnhancementRequests TWikiExternalLinks TWikiFAQ TWikiFaqTemplate TWikiFormDotPm TWikiFormFieldDefinitionDotPm TWikiFormListFieldDefinitionDotPm TWikiFormSelectDotPm TWikiForms TWikiFuncDotPm TWikiGlossary TWikiHistory TWikiI18NDotPm TWikiI18NExtractDotPm TWikiIfNodeDotPm TWikiIfOP_iswebDotPm TWikiIfParserDotPm TWikiInfixErrorDotPm TWikiInfixNodeDotPm TWikiInfixParserDotPm TWikiInstallationGuide TWikiJavascripts TWikiLineIteratorDotPm TWikiListIteratorDotPm TWikiLoginManagerApacheLoginDotPm TWikiLoginManagerDotPm TWikiLoginManagerSessionDotPm TWikiLoginManagerTemplateLoginDotPm TWikiLogos TWikiMdrepoDotPm TWikiMergeDotPm TWikiMetaData TWikiMetaDotPm TWikiNetDotPm TWikiNetHTTPResponseDotPm TWikiOopsExceptionDotPm TWikiPluginDotPm TWikiPlugins TWikiPluginsDotPm TWikiPluralsDotPm TWikiPreferences TWikiPreferencesForm TWikiPrefsDotPm TWikiPrefsParserDotPm TWikiPrefsPrefsCacheDotPm TWikiQueryHoistREsDotPm TWikiQueryNodeDotPm TWikiQueryParserDotPm TWikiReferenceManual TWikiRegistration TWikiReleaseNotes04x00 TWikiReleaseNotes04x01 TWikiReleaseNotes04x02 TWikiReleaseNotes04x03 TWikiReleaseNotes05x00 TWikiReleaseNotes05x01 TWikiReleaseNotes06x00 TWikiReleaseNotes06x01 TWikiRenderDotPm TWikiRenderingShortcut TWikiRequestDotPm TWikiResponseDotPm TWikiSandboxDotPm TWikiScripts TWikiSearchDotPm TWikiSheetPlugin TWikiShorthand TWikiSite TWikiSiteTools TWikiSkinBrowser TWikiSkins TWikiStoreDotPm TWikiStoreQueryAlgorithmsBruteForceDotPm TWikiStoreRcsFileDotPm TWikiStoreRcsLiteDotPm TWikiStoreRcsWrapDotPm TWikiStoreSearchAlgorithmsForkingDotPm TWikiStoreSearchAlgorithmsPurePerlDotPm TWikiSystemRequirements TWikiTemplates TWikiTemplatesDotPm TWikiTimeDotPm TWikiTip001 TWikiTip002 TWikiTip003 TWikiTip004 TWikiTip005 TWikiTip006 TWikiTip007 TWikiTip008 TWikiTip009 TWikiTip010 TWikiTip011 TWikiTip012 TWikiTip013 TWikiTip014 TWikiTip015 TWikiTip016 TWikiTip017 TWikiTip018 TWikiTip019 TWikiTip020 TWikiTip021 TWikiTip022 TWikiTip023 TWikiTip024 TWikiTip025 TWikiTip026 TWikiTip027 TWikiTip028 TWikiTip029 TWikiTips TWikiTipsOfTheDay TWikiTipsOfTheDayAddNew TWikiTipsOfTheDayAdmin TWikiTipsOfTheDayInclude TWikiTipsOfTheDayTemplate TWikiTopics TWikiTutorial TWikiUIChangeFormDotPm TWikiUICopyDotPm TWikiUIDotPm TWikiUIEditDotPm TWikiUIManageDotPm TWikiUIMdrepoUIDotPm TWikiUIOopsDotPm TWikiUIRDiffDotPm TWikiUIRegisterDotPm TWikiUIRestDotPm TWikiUISaveDotPm TWikiUISearchDotPm TWikiUIStatisticsDotPm TWikiUIUploadDotPm TWikiUIViewDotPm TWikiUpgradeGuide TWikiUserAuthentication TWikiUserMappingContrib TWikiUserMappingDotPm TWikiUserSetting TWikiUsersApacheHtpasswdUserDotPm TWikiUsersBaseUserMappingDotPm TWikiUsersDotPm TWikiUsersGuide TWikiUsersHtPasswdUserDotPm TWikiUsersPasswordDotPm TWikiUsersTWikiUserMappingDotPm TWikiUsersTemplate TWikiVariables TWikiVariablesCategoryBody TWikiVariablesQuickStart TWikiVariablesSearch TWikiVariablesWizard TablePlugin TablesAndSpreadsheetsVariables TagMeChangeRequests TagMeCreateNewTag TagMeDebugSearch TagMeDebugViewTags TagMeDeleteTag TagMePlugin TagMeRenameTag TagMeSearch TagMeViewAllTags TagMeViewMyTags TemplateWeb TextEditor TextFormattingFAQ TextFormattingRules TimBernersLee TimeSincePlugin TimeSpecifications TinyMCEFrequentlyAskedQuestions TinyMCEPlugin TinyMCEQuickHelp TipsContrib TopMenuSkin TopMenuSkinDefaultWebTopMenu TopMenuSkinHomeMenu TopMenuSkinTopBar TopMenuSkinTopicMenu TwistyContrib TwistyPlugin UIAndVisualizationVariables UserBookmarks UserBookmarksTemplate UserDocumentationCategory UserForm UserMasquerading UserReports UserSubwebs UserToolsCategory UsersAndAuthenticationVariables UsingHTML UsingMultipleDisks VarACTIVATEDPLUGINS VarADDTOHEAD VarALLVARIABLES VarAQUA VarATTACHURL VarATTACHURLPATH VarAUTHREALM VarBASETOPIC VarBASEWEB VarBB VarBB2 VarBB3 VarBB4 VarBLACK VarBLUE VarBR VarBROWN VarBUBBLESIG VarBULLET VarCALC VarCALCULATE VarCARET VarCHILDREN VarCOLORPICKER VarCOMMENT VarCONTENTMODE VarCOPY VarDASHBOARD VarDATE VarDATEPICKER VarDISPLAYTIME VarDISPLAYTIME2 VarEDITACTION VarEDITFORM VarEDITFORMFIELD VarEDITTABLE VarENCODE VarENDBG VarENDCOLOR VarENDCOLUMNS VarENDSECTION VarENTITY VarENV VarEXAMPLEVAR VarFAILEDPLUGINS VarFORM VarFORMFIELD VarFOURCOLUMNS VarGET VarGMTIME VarGMTIME2 VarGRAY VarGREEN VarGROUPS VarH VarHEADLINES VarHIDE VarHIDEINPRINT VarHOMETOPIC VarHTTP VarHTTPHOST VarHTTPS VarI VarICON VarICONURL VarICONURLPATH VarIF VarINCLUDE VarINCLUDINGTOPIC VarINCLUDINGWEB VarJQENDTAB VarJQENDTABPANE VarJQTAB VarJQTABPANE VarLANGUAGE VarLANGUAGES VarLAQUO VarLIME VarLOCALSITEPREFS VarLOGIN VarLOGINURL VarLOGOUT VarLOGOUTURL VarM VarMAINWEB VarMAKETEXT VarMAROON VarMDREPO VarMETA VarMETASEARCH VarN VarNAVY VarNBSP VarNOP VarNOTIFYTOPIC VarOLIVE VarORANGE VarP VarPARENTBC VarPARENTTOPIC VarPINK VarPLUGINDESCRIPTIONS VarPLUGINVERSION VarPUBURL VarPUBURLPATH VarPURPLE VarQ VarQUERYPARAMS VarQUERYSTRING VarRAQUO VarRED VarREDBG VarREG VarREMOTEADDR VarREMOTEPORT VarREMOTEUSER VarRENDERLIST VarREVINFO VarREVINFO2 VarS VarSCRIPTNAME VarSCRIPTSUFFIX VarSCRIPTURL VarSCRIPTURL2 VarSCRIPTURLPATH VarSCRIPTURLPATH2 VarSEARCH VarSERVERTIME VarSERVERTIME2 VarSESSIONID VarSESSIONVAR VarSESSIONVARIABLE VarSET VarSETGETDUMP VarSILVER VarSITENAME VarSITESTATISTICSTOPIC VarSLIDESHOWEND VarSLIDESHOWSTART VarSPACEDTOPIC VarSPACEOUT VarSTARTINCLUDE VarSTARTSECTION VarSTATISTICSTOPIC VarSTOPINCLUDE VarSYSTEMWEB VarT VarTABLE VarTEAL VarTHREECOLUMNS VarTM VarTOC VarTOC2 VarTOPIC VarTOPICLIST VarTOPICTITLE VarTOPICURL VarTWIKISHEET VarTWIKIWEB VarTWISTY VarTWOCOLUMNS VarU VarURLPARAM VarUSERINFO VarUSERNAME VarUSERREPORT VarUSERSIG VarUSERSWEB VarVAR VarVBAR VarWEB VarWEBLIST VarWEBPREFSTOPIC VarWHITE VarWIKIHOMEURL VarWIKILOGOALT VarWIKILOGOIMG VarWIKILOGOURL VarWIKINAME VarWIKIPREFSTOPIC VarWIKITOOLNAME VarWIKIUSERNAME VarWIKIUSERSTOPIC VarWIKIVERSION VarWIKIWEBMASTER VarWIKIWEBMASTERNAME VarWIP VarX VarY VarYELLOW ViewTildeJsmith WabiSabi WatchlistPlugin WatchlistTemplate WebAtom WebAtomBase WebBottomBar WebChanges WebChangesAlert WebChangesRightBox WebCreateNewTopic WebCreateNewTopicTemplate WebHome WebIndex WebLeftBar WebLeftBarCookbook WebLeftBarExample WebLeftBarLogin WebLeftBarPersonalTemplate WebLeftBarSearch WebLeftBarWebsList WebNotify WebPreferences WebPreferencesHelp WebRss WebRssBase WebSearch WebSearchAdvanced WebSearchAttachments WebSiteTools WebStatistics WebStatisticsFooter WebTemplateTopics WebTopBar WebTopMenu WebTopicCreator WebTopicEditTemplate WebTopicList WebTopicNonWikiTemplate WebTopicViewTemplate WelcomeGuest WhatDoesTWikiStandFor WhatIsWikiWiki WikiCulture WikiName WikiNotation WikiReferences WikiSyntax WikiSyntaxSummary WikiWord WorkflowAndAutomationVariables WysiwygPlugin WysiwygPluginSettings WysiwygPluginTopicLister YouAreHere < < ATasteOfTWiki
AccessKeys
AdminDocumentationCategory
AdminSkillsAssumptions
AdminToolsCategory
AdministrationVariables
AllowWebCreateByUserMappingManager
AnApplicationWithWikiForm
AppendixEncodeURLsWithUTF8
ApplicationsAndComponentsVariables
AttachmentsAndFilesVariables
AutonomousWebs
BackupRestoreConsole
BackupRestorePlugin
BehaviourContrib
BookView
BulkRegistration
BumpyWord
CategoryCategory
CgiContrib
ChangeEmailAddress
ChartingAndDrawingVariables
ClassMethod
ColorPickerPlugin
CommentPlugin
CommentPluginExamples
CommentPluginTemplate
CopyingTopics
CustomUserGroupNotations
DatabaseAndFormsVariables
DateAndTimeVariables
DatePickerPlugin
DeleteOrRenameATopic
DeleteOrRenameAnAttachment
DeveloperDocumentationCategory
DevelopmentVariables
DontNotify
EditDoesNotIncreaseTheRevision
EditTablePlugin
EditUserAccount
EditingAndContentUpdateVariables
EmailAndNotificationVariables
EmptyPlugin
ExampleTopicTemplate
ExportAndPublishingVariables
FileAttachment
FileAttribute
ForceNewRevision
FormatTokens
FormattedSearch
FormattingAndRenderingVariables
GnuGeneralPublicLicense
GoodStyle
HeadlinesPlugin
HiddenAttachment
HierarchicalNavigation
HierarchicalNavigationChildExample
IfStatements
ImportVariables
IncludeTopicRaw
IncludeTopicsAndWebPages
InstalledPlugins
InstantEnhancements
InterWikis
InterwikiPlugin
JQueryPlugin
JumpBox
LanguageSelector
LargeSite
LinkingAndNavigationVariables
LoginName
MailerContrib
MainFeatures
ManagingTopics
ManagingUsers
ManagingWebs
MetadataRepository
MovedSkin
NewUserTemplate
ObjectMethod
PageRenderingProcess
ParameterizedVariables
PatternSkin
PatternSkinColorSettings
PatternSkinCss
PatternSkinCssCookbook
PatternSkinCssCookbookCenterPage
PatternSkinCssCookbookCenterPageBorder
PatternSkinCssCookbookEditTableStyle
PatternSkinCssCookbookFonts
PatternSkinCssCookbookNoLeftBar
PatternSkinCssCookbookNoTopBar
PatternSkinCustomization
PatternSkinElements
PatternSkinGraphics
PatternSkinWebCreateNewTopicTemplate
PersonalPreferencesHelp
PeterThoeny
PlainSkin
PreferencesPlugin
PreviewBackground
PrintSkin
QuerySearch
QueryUsers
QuietSave
ReadOnlyAndMirrorWebs
RegularExpression
RenameWeb
RenderListPlugin
ResetPassword
ScrollBoxAddOn
SearchDoesNotWork
SearchHelp
SearchPatternCookbook
SearchResultsPagination
SearchingAndListingVariables
SecurityAndAccessControlVariables
SetGetPlugin
SimultaneousEdits
SiteChanges
SiteMap
SitePermissions
SiteStatisticsFooter
SiteStatisticsTemplate
SkinsAndTemplatesVariables
SlideShowPlugin
SmiliesPlugin
SourceCode
SpreadSheetPlugin
SpreadSheetPluginTestCases
StandardColors
StartingPoints
StaticMethod
SubwebAndTopicNames
SystemInformationVariables
TWikiAccessControl
TWikiAccessControlExceptionDotPm
TWikiAccessDotPm
TWikiAddOns
TWikiAggregateIteratorDotPm
TWikiAttachDotPm
TWikiAttrsDotPm
TWikiCompatibilityDotPm
TWikiConfigureCheckersCertificateDotPm
TWikiConfigureCheckersCertificateKeyCheckerDotPm
TWikiConfigureImgToolDotPm
TWikiConfigureLoadDotPm
TWikiConfigureUIsEXTENDDotPm
TWikiContribs
TWikiContributor
TWikiCss
TWikiDashboardAddOn
TWikiDashboardImages
TWikiDocGraphics
TWikiDocGraphicsTemplate
TWikiDocumentation
TWikiDotPm
TWikiDownload
TWikiEditingShorthand
TWikiEngineDotPm
TWikiEngineExceptionDotPm
TWikiEnhancementRequests
TWikiExternalLinks
TWikiFAQ
TWikiFaqTemplate
TWikiFormDotPm
TWikiFormFieldDefinitionDotPm
TWikiFormListFieldDefinitionDotPm
TWikiFormSelectDotPm
TWikiForms
TWikiFuncDotPm
TWikiGlossary
TWikiHistory
TWikiI18NDotPm
TWikiI18NExtractDotPm
TWikiIfNodeDotPm
TWikiIfOP_iswebDotPm
TWikiIfParserDotPm
TWikiInfixErrorDotPm
TWikiInfixNodeDotPm
TWikiInfixParserDotPm
TWikiInstallationGuide
TWikiJavascripts
TWikiLineIteratorDotPm
TWikiListIteratorDotPm
TWikiLoginManagerApacheLoginDotPm
TWikiLoginManagerDotPm
TWikiLoginManagerSessionDotPm
TWikiLoginManagerTemplateLoginDotPm
TWikiLogos
TWikiMdrepoDotPm
TWikiMergeDotPm
TWikiMetaData
TWikiMetaDotPm
TWikiNetDotPm
TWikiNetHTTPResponseDotPm
TWikiOopsExceptionDotPm
TWikiPluginDotPm
TWikiPlugins
TWikiPluginsDotPm
TWikiPluralsDotPm
TWikiPreferences
TWikiPreferencesForm
TWikiPrefsDotPm
TWikiPrefsParserDotPm
TWikiPrefsPrefsCacheDotPm
TWikiQueryHoistREsDotPm
TWikiQueryNodeDotPm
TWikiQueryParserDotPm
TWikiReferenceManual
TWikiRegistration
TWikiReleaseNotes04x00
TWikiReleaseNotes04x01
TWikiReleaseNotes04x02
TWikiReleaseNotes04x03
TWikiReleaseNotes05x00
TWikiReleaseNotes05x01
TWikiReleaseNotes06x00
TWikiReleaseNotes06x01
TWikiRenderDotPm
TWikiRenderingShortcut
TWikiRequestDotPm
TWikiResponseDotPm
TWikiSandboxDotPm
TWikiScripts
TWikiSearchDotPm
TWikiSheetPlugin
TWikiShorthand
TWikiSite
TWikiSiteTools
TWikiSkinBrowser
TWikiSkins
TWikiStoreDotPm
TWikiStoreQueryAlgorithmsBruteForceDotPm
TWikiStoreRcsFileDotPm
TWikiStoreRcsLiteDotPm
TWikiStoreRcsWrapDotPm
TWikiStoreSearchAlgorithmsForkingDotPm
TWikiStoreSearchAlgorithmsPurePerlDotPm
TWikiSystemRequirements
TWikiTemplates
TWikiTemplatesDotPm
TWikiTimeDotPm
TWikiTip001
TWikiTip002
TWikiTip003
TWikiTip004
TWikiTip005
TWikiTip006
TWikiTip007
TWikiTip008
TWikiTip009
TWikiTip010
TWikiTip011
TWikiTip012
TWikiTip013
TWikiTip014
TWikiTip015
TWikiTip016
TWikiTip017
TWikiTip018
TWikiTip019
TWikiTip020
TWikiTip021
TWikiTip022
TWikiTip023
TWikiTip024
TWikiTip025
TWikiTip026
TWikiTip027
TWikiTip028
TWikiTip029
TWikiTips
TWikiTipsOfTheDay
TWikiTipsOfTheDayAddNew
TWikiTipsOfTheDayAdmin
TWikiTipsOfTheDayInclude
TWikiTipsOfTheDayTemplate
TWikiTopics
TWikiTutorial
TWikiUIChangeFormDotPm
TWikiUICopyDotPm
TWikiUIDotPm
TWikiUIEditDotPm
TWikiUIManageDotPm
TWikiUIMdrepoUIDotPm
TWikiUIOopsDotPm
TWikiUIRDiffDotPm
TWikiUIRegisterDotPm
TWikiUIRestDotPm
TWikiUISaveDotPm
TWikiUISearchDotPm
TWikiUIStatisticsDotPm
TWikiUIUploadDotPm
TWikiUIViewDotPm
TWikiUpgradeGuide
TWikiUserAuthentication
TWikiUserMappingContrib
TWikiUserMappingDotPm
TWikiUserSetting
TWikiUsersApacheHtpasswdUserDotPm
TWikiUsersBaseUserMappingDotPm
TWikiUsersDotPm
TWikiUsersGuide
TWikiUsersHtPasswdUserDotPm
TWikiUsersPasswordDotPm
TWikiUsersTWikiUserMappingDotPm
TWikiUsersTemplate
TWikiVariables
TWikiVariablesCategoryBody
TWikiVariablesQuickStart
TWikiVariablesSearch
TWikiVariablesWizard
TablePlugin
TablesAndSpreadsheetsVariables
TagMeChangeRequests
TagMeCreateNewTag
TagMeDebugSearch
TagMeDebugViewTags
TagMeDeleteTag
TagMePlugin
TagMeRenameTag
TagMeSearch
TagMeViewAllTags
TagMeViewMyTags
TemplateWeb
TextEditor
TextFormattingFAQ
TextFormattingRules
TimBernersLee
TimeSincePlugin
TimeSpecifications
TinyMCEFrequentlyAskedQuestions
TinyMCEPlugin
TinyMCEQuickHelp
TipsContrib
TopMenuSkin
TopMenuSkinDefaultWebTopMenu
TopMenuSkinHomeMenu
TopMenuSkinTopBar
TopMenuSkinTopicMenu
TwistyContrib
TwistyPlugin
UIAndVisualizationVariables
UserBookmarks
UserBookmarksTemplate
UserDocumentationCategory
UserForm
UserMasquerading
UserReports
UserSubwebs
UserToolsCategory
UsersAndAuthenticationVariables
UsingHTML
UsingMultipleDisks
VarACTIVATEDPLUGINS
VarADDTOHEAD
VarALLVARIABLES
VarAQUA
VarATTACHURL
VarATTACHURLPATH
VarAUTHREALM
VarBASETOPIC
VarBASEWEB
VarBB
VarBB2
VarBB3
VarBB4
VarBLACK
VarBLUE
VarBR
VarBROWN
VarBUBBLESIG
VarBULLET
VarCALC
VarCALCULATE
VarCARET
VarCHILDREN
VarCOLORPICKER
VarCOMMENT
VarCONTENTMODE
VarCOPY
VarDASHBOARD
VarDATE
VarDATEPICKER
VarDISPLAYTIME
VarDISPLAYTIME2
VarEDITACTION
VarEDITFORM
VarEDITFORMFIELD
VarEDITTABLE
VarENCODE
VarENDBG
VarENDCOLOR
VarENDCOLUMNS
VarENDSECTION
VarENTITY
VarENV
VarEXAMPLEVAR
VarFAILEDPLUGINS
VarFORM
VarFORMFIELD
VarFOURCOLUMNS
VarGET
VarGMTIME
VarGMTIME2
VarGRAY
VarGREEN
VarGROUPS
VarH
VarHEADLINES
VarHIDE
VarHIDEINPRINT
VarHOMETOPIC
VarHTTP
VarHTTPHOST
VarHTTPS
VarI
VarICON
VarICONURL
VarICONURLPATH
VarIF
VarINCLUDE
VarINCLUDINGTOPIC
VarINCLUDINGWEB
VarJQENDTAB
VarJQENDTABPANE
VarJQTAB
VarJQTABPANE
VarLANGUAGE
VarLANGUAGES
VarLAQUO
VarLIME
VarLOCALSITEPREFS
VarLOGIN
VarLOGINURL
VarLOGOUT
VarLOGOUTURL
VarM
VarMAINWEB
VarMAKETEXT
VarMAROON
VarMDREPO
VarMETA
VarMETASEARCH
VarN
VarNAVY
VarNBSP
VarNOP
VarNOTIFYTOPIC
VarOLIVE
VarORANGE
VarP
VarPARENTBC
VarPARENTTOPIC
VarPINK
VarPLUGINDESCRIPTIONS
VarPLUGINVERSION
VarPUBURL
VarPUBURLPATH
VarPURPLE
VarQ
VarQUERYPARAMS
VarQUERYSTRING
VarRAQUO
VarRED
VarREDBG
VarREG
VarREMOTEADDR
VarREMOTEPORT
VarREMOTEUSER
VarRENDERLIST
VarREVINFO
VarREVINFO2
VarS
VarSCRIPTNAME
VarSCRIPTSUFFIX
VarSCRIPTURL
VarSCRIPTURL2
VarSCRIPTURLPATH
VarSCRIPTURLPATH2
VarSEARCH
VarSERVERTIME
VarSERVERTIME2
VarSESSIONID
VarSESSIONVAR
VarSESSIONVARIABLE
VarSET
VarSETGETDUMP
VarSILVER
VarSITENAME
VarSITESTATISTICSTOPIC
VarSLIDESHOWEND
VarSLIDESHOWSTART
VarSPACEDTOPIC
VarSPACEOUT
VarSTARTINCLUDE
VarSTARTSECTION
VarSTATISTICSTOPIC
VarSTOPINCLUDE
VarSYSTEMWEB
VarT
VarTABLE
VarTEAL
VarTHREECOLUMNS
VarTM
VarTOC
VarTOC2
VarTOPIC
VarTOPICLIST
VarTOPICTITLE
VarTOPICURL
VarTWIKISHEET
VarTWIKIWEB
VarTWISTY
VarTWOCOLUMNS
VarU
VarURLPARAM
VarUSERINFO
VarUSERNAME
VarUSERREPORT
VarUSERSIG
VarUSERSWEB
VarVAR
VarVBAR
VarWEB
VarWEBLIST
VarWEBPREFSTOPIC
VarWHITE
VarWIKIHOMEURL
VarWIKILOGOALT
VarWIKILOGOIMG
VarWIKILOGOURL
VarWIKINAME
VarWIKIPREFSTOPIC
VarWIKITOOLNAME
VarWIKIUSERNAME
VarWIKIUSERSTOPIC
VarWIKIVERSION
VarWIKIWEBMASTER
VarWIKIWEBMASTERNAME
VarWIP
VarX
VarY
VarYELLOW
ViewTildeJsmith
WabiSabi
WatchlistPlugin
WatchlistTemplate
WebAtom
WebAtomBase
WebBottomBar
WebChanges
WebChangesAlert
WebChangesRightBox
WebCreateNewTopic
WebCreateNewTopicTemplate
WebHome
WebIndex
WebLeftBar
WebLeftBarCookbook
WebLeftBarExample
WebLeftBarLogin
WebLeftBarPersonalTemplate
WebLeftBarSearch
WebLeftBarWebsList
WebNotify
WebPreferences
WebPreferencesHelp
WebRss
WebRssBase
WebSearch
WebSearchAdvanced
WebSearchAttachments
WebSiteTools
WebStatistics
WebStatisticsFooter
WebTemplateTopics
WebTopBar
WebTopMenu
WebTopicCreator
WebTopicEditTemplate
WebTopicList
WebTopicNonWikiTemplate
WebTopicViewTemplate
WelcomeGuest
WhatDoesTWikiStandFor
WhatIsWikiWiki
WikiCulture
WikiName
WikiNotation
WikiReferences
WikiSyntax
WikiSyntaxSummary
WikiWord
WorkflowAndAutomationVariables
WysiwygPlugin
WysiwygPluginSettings
WysiwygPluginTopicLister
YouAreHere (no parent, orphaned topic)
< <
> > <--/twikiFormStep-->
> > <--/twikiFormStep-->
<--/twikiFormSteps-->
< <
To create a new topic, enter a WikiWord for the topic name, select a topic parent and click 'Create.'
Once you have created the topic, consider adding links in related topics to the new topic so that there are more ways people can discover it. > >
Once you have created the topic, consider adding links in related topics to the new topic so that there are more ways people can discover it.
META TOPICPARENT
name="WebHome"
To create a new topic, enter a WikiWord for the topic name, select a topic parent and click 'Create.'
Once you have created the topic, consider adding links in related topics to the new topic so that there are more ways people can discover it.
Copyright © 1999-2025 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback Note: Please contribute updates to this topic on TWiki.org at
TWiki:TWiki.WebTopicCreator .
(%REVTITLE2% vs. %REVTITLE1%) WebTopicCreator < TWiki < TWiki