Site Config
greenmetal.css & jello.css were missing from Theme-o-rama module
and Gary added BRTiki.css lately
I just removed vidiki.css because it's being pulled out of Tiki. (broken & unmaintained)
Hi!
I spent several hours making sure we could access/test all menu types with all the themes on this site.
We have 4 menu types:
On this site, we have
- 7 new themes
- 20 legacy themes
- 34 bundled themes
For a total of 61 themes.
4 x 61 = 244 combinations!
And each of these combinations needs to be tested with several browsers 😬
PhpLayersMenu horizontal -> phplayersmenu horizontal
PhpLayersMenu vertical -> phplayersmenu vertical
Why?
Most places in Tiki, page names are case insensitive, which is good. But I was having trouble with some Smart code in modules. It wasn't always doing what I wanted.
The plus (+) vs space ( ) also can cause confusion.
DogFood:
tiki-view_chart.php?chartId=1
Doc:
http://doc.tikiwiki.org/Charts
Bugs/RFEs
http://dev.tikiwiki.org/Charts
So when you are logged in, you will have a link to see what the template (.tpl) looks like. You can't change it however.
Note to Tiki devs: we need to check that this works as expected everywhere.
There are over 100 of these changes which must be done:
{if $feature_view_tpl eq 'y'}
->
{if $feature_view_tpl eq 'y' and $tiki_p_view_templates eq 'y'}
{if $feature_edit_templates eq 'y'}
->
{if $feature_edit_templates eq 'y' and $tiki_p_edit_templates eq 'y'}
Similarly, for editing the CSS, the feature needs to be on and the permission given
{if $feature_editcss eq 'y' and $tiki_p_create_css eq 'y'}
Hi!
Anonymous users had tiki_p_download_files for the file gallery.
So I added tiki_p_wiki_view_attachments to get attachments from wiki pages.
Gary: please let me know if it's intentional and I will reverse...
Thanks!
M 😉