--- bin/koalaskin-generate.orig Sun Mar 23 23:24:58 2003 +++ bin/koalaskin-generate Sun Mar 23 23:25:24 2003 @@ -870,6 +870,10 @@ For the Plugins.KoalaSkin +__Note__ If you change this page, dont forget to run +=INSTALL/bin/koalaskin-generate= afterwards for your settings to take effect + + Format: space-separated items 1 _3 spaces_ * webgroupname hue [options][comments]
hue can bit 2 hex digits, or the 6 hex digits for the RGB value @@ -885,32 +889,48 @@ 1 other colors are set in the TWiki syntax:
_6 spaces_ * Set *VARIABLE* = _value_
variables being: - * KSCOLORBG the color of the page background - * KSCOLORUNSEL color of tabs of unselected web groups - * KSCOLORSEL color of the text of the selected tab - * KSICON upper-left wiki icon IMG tag, with dims - * KSHELP url of the help page (for the help icon) - * KSNOICONS set to true to disable icons for buttons on the upper - right: Home/Edit/Attach/Sitemap/Help - * KSLMARGIN left margin (default 150) - * KSTABWIDTH minimum width of web tabs (default 80) - * KSNOEXPAND if not equal to "false", do not expand template - includes to save space but consume CPU. - * KSNONAVBAR if not empty, forces not providing support for the - Navbar Plugin even if it seems installed - * KSFILEPERMS if set to ALL will change permissions of generated - templates so that other people can re-generate the templates. - * KSFORM_POS is the default position value of TWiki.TWikiForms. Must be - one of: FORM_LM, FORM_TL, FORM_TR, FORM_BL, FORM_BR. - * KSCSS is the URL of an additionnal site-level CSS stylesheet - * KSNOMARGIN if non empty, put search menu at top not in margin + * KSCOLORBG the color of the page background + * KSCOLORUNSEL color of tabs of unselected web groups + * KSCOLORSEL color of the text of the selected tab + * KSICON upper-left wiki icon IMG tag, with dims + * KSHELP url of the help page (for the help icon) + * KSNOICONS set to true to disable icons for buttons on the upper + right: Home/Edit/Attach/Sitemap/Help + * KSLMARGIN left margin (default 150) + * KSTABWIDTH minimum width of web tabs (default 80) + * KSNOEXPAND if not equal to "false", do not expand template + includes to save space but consume CPU. + * KSNONAVBAR if not empty, forces not providing support for the + Navbar Plugin even if it seems installed + * KSFILEPERMS if set to ALL will change permissions of generated + templates so that other people can re-generate the templates. + * KSFORM_POS is the default position value of TWiki.TWikiForms. Must be + one of: FORM_LM, FORM_TL, FORM_TR, FORM_BL, FORM_BR. + * KSCSS is the URL of an additionnal site-level CSS stylesheet + * KSNOMARGIN if non empty, put search menu at top not in margin --- * Set KSCOLORBG = #FFFEE4 * Set KSCOLORUNSEL = #e0e0c0 * Set KSCOLORSEL = #ffff80 * Set KSICON = click on the %WIKITOOLNAME% logo to go to homepage --- +Here is a brain-dead suggestion for your site structure. +Edit to suit your needs... EOF + +declare -a webList + +webList=(`cd $data ; find -type d -name '[A-Z]*' | sed 's/\.\///'`) +echo " * ${webList[0]} 00" +echo " A description for ${webList[0]} here" +i=1 +while [ "${webList[$i]}" != "" ] +do + echo " * ${webList[$i]}" + echo " A description for ${webList[$i]} here" + i=$(($i+1)) +done + } generate_distrib () {