bug 416953: Community News RSS Feeds needs love
Remove articles.rss and the entry in the (now useless) .htaccess file
that instructs Apache to treat .rss as .php.
diff --git a/.htaccess b/.htaccess
index 2d60ae6..c4508ff 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,6 +1,3 @@
-# Make sure that requests for RSS files are handled
-AddType application/x-httpd-php .rss
-
# Redirect old school links to index.html
Redirect permanent "/articles/index.html" http://www.eclipse.org/articles/index.php
Redirect permanent "/articles/index.htm" http://www.eclipse.org/articles/index.php
diff --git a/articles.rss b/articles.rss
deleted file mode 100644
index 6a54d76..0000000
--- a/articles.rss
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
- #*****************************************************************************
- #
- # articles.rss
- #
- # Author: Wayne Beaton
- # Date: 2007-05-03
- #
- # Description: This page generates an RSS feed containing articles.
- #****************************************************************************
-
- $_GET['type']= 'article';
- $_GET['title']= 'Eclipse Corner Articles';
- include("../resources/resources.rss");
-?>