OSDN Git Service

MERGE: リビジョン1992。テンプレート「SHOWLIST_LISTPLUG_TABLE_NAVILIST」の追加
[nucleus-jp/nucleus-next.git] / xml-rss2.php
old mode 100644 (file)
new mode 100755 (executable)
index 76b154f..ab66174
@@ -1,65 +1,65 @@
-<?php\r
-\r
-/*\r
- * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)\r
- * Copyright (C) 2002-2012 The Nucleus Group\r
- *\r
- * This program is free software; you can redistribute it and/or\r
- * modify it under the terms of the GNU General Public License\r
- * as published by the Free Software Foundation; either version 2\r
- * of the License, or (at your option) any later version.\r
- * (see nucleus/documentation/index.html#license for more info)\r
- */\r
-\r
-/**\r
- * Nucleus RSS syndication channel skin\r
- * @license http://nucleuscms.org/license.txt GNU General Public License\r
- * @copyright Copyright (C) 2002-2012 The Nucleus Group\r
- * @version $Id: xml-rss2.php 1624 2012-01-09 11:36:20Z sakamocchi $\r
- */\r
-\r
-header('Pragma: no-cache');\r
-\r
-$CONF = array();\r
-include('./config.php');\r
-\r
-if ( !$CONF['DisableSite'] )\r
-{\r
-       // get feed into $feed\r
-       ob_start();\r
-       selectSkin('feeds/rss20');\r
-       selector();\r
-       $feed = ob_get_contents();\r
-       ob_end_clean();\r
-       \r
-       /*\r
-        * create ETAG (hash of feed)\r
-        * (HTTP_IF_NONE_MATCH has quotes around it)\r
-        */\r
-       $eTag = '"' . md5($feed) . '"';\r
-       header('Etag: ' . $eTag);\r
-       \r
-       // compare Etag to what we got\r
-       if ( $eTag == serverVar('HTTP_IF_NONE_MATCH') )\r
-       {\r
-               header('HTTP/1.0 304 Not Modified');\r
-               header('Content-Length: 0');\r
-       }\r
-       else\r
-       {\r
-               echo $feed;\r
-       }\r
-}\r
-// site is disabled, output empty RSS file\r
-else\r
-{\r
-       echo '<?xml version="1.0" encoding="' . i18n::get_current_charset() . '"?>' . "\n";\r
-       echo "<rss version=\"2.0\">\n";\r
-       echo "<channel>\n";\r
-       echo '<title>' . Entity::hsc($CONF['SiteName']) . "</title>\n";\r
-       echo "<link>" . Entity::hsc($CONF['IndexURL']) . "</link>\n";\r
-       echo "<description></description>\n";\r
-       echo "<docs>http://backend.userland.com/rss</docs>\n";\r
-       echo "</channel>\n";\r
-       echo "</rss>\n";\r
-}\r
+<?php
+
+/*
+ * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
+ * Copyright (C) 2002-2009 The Nucleus Group
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * (see nucleus/documentation/index.html#license for more info)
+ */
+
+/**
+ * Nucleus RSS syndication channel skin
+ * @license http://nucleuscms.org/license.txt GNU General Public License
+ * @copyright Copyright (C) 2002-2009 The Nucleus Group
+ * @version $Id: xml-rss2.php 1721 2012-03-31 10:18:25Z sakamocchi $
+ */
+
+header('Pragma: no-cache');
+
+$CONF = array();
+include('./config.php');
+
+if ( !$CONF['DisableSite'] )
+{
+       // get feed into $feed
+       ob_start();
+       selectSkin('feeds/rss20');
+       selector();
+       $feed = ob_get_contents();
+       ob_end_clean();
+       
+       /*
+        * create ETAG (hash of feed)
+        * (HTTP_IF_NONE_MATCH has quotes around it)
+        */
+       $eTag = '"' . md5($feed) . '"';
+       header('Etag: ' . $eTag);
+       
+       // compare Etag to what we got
+       if ( $eTag == serverVar('HTTP_IF_NONE_MATCH') )
+       {
+               header('HTTP/1.0 304 Not Modified');
+               header('Content-Length: 0');
+       }
+       else
+       {
+               echo $feed;
+       }
+}
+// site is disabled, output empty RSS file
+else
+{
+       echo '<?xml version="1.0" encoding="' . i18n::get_current_charset() . '"?>' . "\n";
+       echo "<rss version=\"2.0\">\n";
+       echo "<channel>\n";
+       echo '<title>' . Entity::hsc($CONF['SiteName']) . "</title>\n";
+       echo "<link>" . Entity::hsc($CONF['IndexURL']) . "</link>\n";
+       echo "<description></description>\n";
+       echo "<docs>http://backend.userland.com/rss</docs>\n";
+       echo "</channel>\n";
+       echo "</rss>\n";
+}