Formatting code for WikkaFeatures
=====Features=====
- gallery-action can be used in image folders for generating thumbnails and displaying them as a gallery (problem only one gallery per page)
- if more than one gallery is needed it can be done with gallery2,gallery3 etc.
- the Page BilderHochladen can be used to upload pictures (only!) and link to them using uploads/BilderHochladen/picture.file
- user-defined Styles are possible with the style action but will be overridden by page-bound styles
- using heavily modified versions of the header and footer action I make certain pages starting with special initals like FCWelcome use certain stylesheets, the round edges are also implemented there using a very dirty method that still needs improvement, all this will probably evolve into a real upgrade in the future including an action to control the different styles
- the font action allows inserting formatted text snippets (with a ttf font, color, size etc) as a picture on the fly (and using it as a button with link parameter)
- the toc action adds tables of content to the pages and enables linking to special sections inside a wiki page
- the include action allows you to show wiki pages inside a wiki page
- the combine action can be used to show a list of wiki pages on one page
- a special tweak changes the skin (css) for pages with a certain string e.g. LVAnfang --> LV loads a stylesheet
- ""WikkaMenus"" can be established
- Using the buttons under each page the pages can be translated from german into english and french by the ""GoogleTranslator""... this is however just for testing atm and doesn't work if there is non-german text on the page... (has been abandoned)
- anchor action to set anchors without using the headers...
- note, warn and tip action add instant boxes with special notes
- the tag action let's you add special Tooltips in-line to any content, it's marked with a {{tag comment="You can add any content, image or html code to this Tooltips! Only wiki tags are not possible. <img src=\'http://yodahome.de/home/bilder/yoda.jpg\'>"}}
- slideshow action integrated in gallery action (so planned)
- I made some changes to the ""WikiEdit"" script which I also offer on the main wikka site
- I encorporated the breadcrumb trail action that shows the last 7 pages visited by registered users and the parent action so that you may attach any site to a parent end therefore improve navigation
- many more actions...
==== possible improvements ====
It would be nice to have text snippets, that can easily added to Wikipages by just putting a certain text-brick into the source. E.g. add ||sign|| for adding a pre-defined signature or ||date|| for the actual date. This is no action because the text block should be hard-wired afterwards, it's just a one-time interpretation by the formatter who makes certain text from a variable. I think there is nothing like this yet.
==== anchor action manual ====
%%(code)
/**
"anchor action"
author: DotMG <m.randimbisoa@dotmg.net>
Parameters :
? name : name of anchor to set
? target : name of an anchor to go to
? text : Text to be displayed on link to anchor, optional
? title : optional, a code {{anchor target="Sometarget"}} without the parameter text will
display between tags <a> and </a> the value of parameter title, if set, when defining
{{anchor name="Sometarget"}}. (see usage).
? h3 : Dispaly a <h3></h3> tag after the anchor newly set, all link to that anchor without
the parameter text will have h3 as caption.
? special : if this parameter is set, its value should be one of "table_of_contents" or "usage"
> parameter name goes with title or h3, should not be used with parameter target.
> parameter target goes with text.
Special use :
. {{anchor special="table_of_contents"}} : Display a list of anchors having the parameter h3 set.
. {{anchor special="usage"}} : Show this help.
Usage :
{{anchor name="top" title="Top of page"}} => <a name="top"></a>
{{anchor target="top"}} => <a href="#top">Top of page</a>
{{anchor target="top" text="Back to top"}} => <a href="#top">Back to top</a>
{{anchor name="paragraph1" h3="Introduction"}} => <a name="paragraph1"></a><h3>Introduction</h3>
{{anchor target="paragraph1"}} => <a href="#paragraph1">Introduction</a>
**/
%%
- gallery-action can be used in image folders for generating thumbnails and displaying them as a gallery (problem only one gallery per page)
- if more than one gallery is needed it can be done with gallery2,gallery3 etc.
- the Page BilderHochladen can be used to upload pictures (only!) and link to them using uploads/BilderHochladen/picture.file
- user-defined Styles are possible with the style action but will be overridden by page-bound styles
- using heavily modified versions of the header and footer action I make certain pages starting with special initals like FCWelcome use certain stylesheets, the round edges are also implemented there using a very dirty method that still needs improvement, all this will probably evolve into a real upgrade in the future including an action to control the different styles
- the font action allows inserting formatted text snippets (with a ttf font, color, size etc) as a picture on the fly (and using it as a button with link parameter)
- the toc action adds tables of content to the pages and enables linking to special sections inside a wiki page
- the include action allows you to show wiki pages inside a wiki page
- the combine action can be used to show a list of wiki pages on one page
- a special tweak changes the skin (css) for pages with a certain string e.g. LVAnfang --> LV loads a stylesheet
- ""WikkaMenus"" can be established
- Using the buttons under each page the pages can be translated from german into english and french by the ""GoogleTranslator""... this is however just for testing atm and doesn't work if there is non-german text on the page... (has been abandoned)
- anchor action to set anchors without using the headers...
- note, warn and tip action add instant boxes with special notes
- the tag action let's you add special Tooltips in-line to any content, it's marked with a {{tag comment="You can add any content, image or html code to this Tooltips! Only wiki tags are not possible. <img src=\'http://yodahome.de/home/bilder/yoda.jpg\'>"}}
- slideshow action integrated in gallery action (so planned)
- I made some changes to the ""WikiEdit"" script which I also offer on the main wikka site
- I encorporated the breadcrumb trail action that shows the last 7 pages visited by registered users and the parent action so that you may attach any site to a parent end therefore improve navigation
- many more actions...
==== possible improvements ====
It would be nice to have text snippets, that can easily added to Wikipages by just putting a certain text-brick into the source. E.g. add ||sign|| for adding a pre-defined signature or ||date|| for the actual date. This is no action because the text block should be hard-wired afterwards, it's just a one-time interpretation by the formatter who makes certain text from a variable. I think there is nothing like this yet.
==== anchor action manual ====
%%(code)
/**
"anchor action"
author: DotMG <m.randimbisoa@dotmg.net>
Parameters :
? name : name of anchor to set
? target : name of an anchor to go to
? text : Text to be displayed on link to anchor, optional
? title : optional, a code {{anchor target="Sometarget"}} without the parameter text will
display between tags <a> and </a> the value of parameter title, if set, when defining
{{anchor name="Sometarget"}}. (see usage).
? h3 : Dispaly a <h3></h3> tag after the anchor newly set, all link to that anchor without
the parameter text will have h3 as caption.
? special : if this parameter is set, its value should be one of "table_of_contents" or "usage"
> parameter name goes with title or h3, should not be used with parameter target.
> parameter target goes with text.
Special use :
. {{anchor special="table_of_contents"}} : Display a list of anchors having the parameter h3 set.
. {{anchor special="usage"}} : Show this help.
Usage :
{{anchor name="top" title="Top of page"}} => <a name="top"></a>
{{anchor target="top"}} => <a href="#top">Top of page</a>
{{anchor target="top" text="Back to top"}} => <a href="#top">Back to top</a>
{{anchor name="paragraph1" h3="Introduction"}} => <a name="paragraph1"></a><h3>Introduction</h3>
{{anchor target="paragraph1"}} => <a href="#paragraph1">Introduction</a>
**/
%%