How to compile objective c via gnustep on Linux
3-steps-to-make-ubuntu-910karmic-looks-like-mac-os-x
ATI Rage XL 8mb ubuntu support
fixing graphics probs on ubuntu and this one, too
3-steps-to-make-ubuntu-910karmic-looks-like-mac-os-x
ATI Rage XL 8mb ubuntu support
fixing graphics probs on ubuntu and this one, too
//This fixed everything for me in the StaticSiteMapProvider
public override bool IsAccessibleToUser(HttpContext context, SiteMapNode node)
{
foreach (string role in node.Roles)
if (context.User.IsInRole(role))
return true;
return false;
//return base.IsAccessibleToUser(context, node); //seems to always return true;
}