I have been playing with the new version of drupal from CVS. I really like the new menu system. It just makes somethings little more logical.
I also got sick of the phplayersmenu not working in IE for some reason. I know that I use Firefox all the time, but I do have some IE users who visit my site. I found that I was including something that I didn't need too. I have removed that and upgraded to 3.1.5 which has a couple of changes in it. such as where the images are stored.
However I still need to modify phplayersmenu to remove the icons from the tree menu that I dislike.
This module is a drop in replacement for the standard drupal navigation menu.
To make sure that this menu was completely cross-browser compatible and because I couldn't be bothered writting my own, I use phplayermenu to handle all the menu processing.
Also to speed things up I used drupals built in caching system to cache the building of the menu on a per role basis, so that you can quickly just from the create content menu right to the configuration with only a single page load.
This is a filter I quickly wrote for so that I can have any php source that I put into content highlighted.
[?php
echo "hello world\n";
?]
Not only can you hilight code that is typed in but instead you can get the filter to include directly from another php source node.
This works much the same as how the project module does it, but I wanted it work with all modules, thus a filter would work alot better than how they have added it to the project module.