Here's a quick (and probably incomplete) how-to on making public your feed on feeds view script while still hiding your admin scripts in a protected dir:
- copy view.php to an unprotected dir
- in the copied view.php, change
include_once("init.php");
to point to the original dir:include_once("../protected_dir/init.php")
- in init.php, change
is_writable( "cache" )
tois_writable( dirname(__FILE__)."/cache" )
- (optional) strip all the admin links and options from the copied view.php
- read your feeds via the copied view.php script so people don't get login prompts when following their referrers :)