Hi,
I get warnings for .svn files in layouts and modules. Wouldn’ it be better to exclude everything which starts with a dot?
I’m suggesting to modify contentbox.model.modules.ModuleService
`
// left was added
line 256 if( qModules.type[x] eq “dir” and left(qModules.name[x],1) neq ‘.’){
`
as well for contentbox.model.modules.ui.LayoutService
`
// add this two lines
line 259 if(left(layoutName,1) eq ‘.’)
continue;
`
I can submit a patch if you agree
Gunnar