inputAction/actions – Talk
Jump to navigation
Jump to search
Fred Gandt (talk | contribs) (Looks good Strangepete :-) Go for it!) |
Killzone Kid (talk | contribs) (→The script for the list generation: new section) |
||
Line 8: | Line 8: | ||
:I like it :-) | :I like it :-) | ||
:There're so many layout tables and such, I didn't fancy trying to figure out what worked (I'm lazy). I tend to go for styled HTML5 when the options are daunting, and let other people do the wiki markup which is probably more robust than the slightly less than standard CSS. -- [[User:Fred Gandt|Fred Gandt]] <span style="font-size:80%;vertical-align:3px;line-height:0px;">([[User talk:Fred Gandt|talk]]/[[Special:Contributions/Fred Gandt|contribs]])</span> 20:33, 4 April 2014 (CEST) | :There're so many layout tables and such, I didn't fancy trying to figure out what worked (I'm lazy). I tend to go for styled HTML5 when the options are daunting, and let other people do the wiki markup which is probably more robust than the slightly less than standard CSS. -- [[User:Fred Gandt|Fred Gandt]] <span style="font-size:80%;vertical-align:3px;line-height:0px;">([[User talk:Fred Gandt|talk]]/[[Special:Contributions/Fred Gandt|contribs]])</span> 20:33, 4 April 2014 (CEST) | ||
== The script for the list generation == | |||
<code>"debug_console" callExtension "C"; | |||
{ | |||
"debug_console" callExtension format ["==%1==", getText (_x >> "name")]; | |||
{ | |||
"debug_console" callExtension format ["* <tt>%1</tt> %2%3", _x, ["", "- "] select (actionName _x != ""), actionName _x]; | |||
} | |||
forEach getArray (_x >> "group"); | |||
} | |||
forEach ("true" configClasses (configFile >> "UserActionGroups"));</code> |
Revision as of 23:33, 25 June 2017
Layout
as a thought, there is also this:
entries could just plainly listed out, or maybe each letter grouping be put into a pre-collapsed container, as to not clutter/muck up the page - like, but not exactly: http://en.wikipedia.org/wiki/Template:Navbox Template:Unsigned
- I like it :-)
- There're so many layout tables and such, I didn't fancy trying to figure out what worked (I'm lazy). I tend to go for styled HTML5 when the options are daunting, and let other people do the wiki markup which is probably more robust than the slightly less than standard CSS. -- Fred Gandt (talk/contribs) 20:33, 4 April 2014 (CEST)
The script for the list generation
"debug_console" callExtension "C";
{
"debug_console" callExtension format ["==%1==", getText (_x >> "name")];
{
"debug_console" callExtension format ["* %1 %2%3", _x, ["", "- "] select (actionName _x != ""), actionName _x];
}
forEach getArray (_x >> "group");
}
forEach ("true" configClasses (configFile >> "UserActionGroups"));