upgraded to yui 0.12.0
upgraded to yui-ext 0.33 rc2
This commit is contained in:
parent
62b3d90db7
commit
cfd09a5cb6
1271 changed files with 539033 additions and 0 deletions
9
www/extras/yui-ext/examples/layout/feed-proxy.php
Normal file
9
www/extras/yui-ext/examples/layout/feed-proxy.php
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
// this is an example server-side proxy to load feeds
|
||||
$feed = $_REQUEST['feed'];
|
||||
if($feed != '' && strpos($feed, 'http') === 0){
|
||||
header('Content-Type: text/xml');
|
||||
readfile($feed);
|
||||
return;
|
||||
}
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue