More license declaration changes which omit the bit about getting in touch with confi...
[citadel.git] / webcit / feed_generator.c
index 34b721bdd248ec35fd8902a6558e69902d2eb6f5..2be5e1f7492dd326e24ac4d454fd060ecdb55a9b 100644 (file)
@@ -1,21 +1,21 @@
 /*
  * RSS feed generator (could be adapted in the future to feed both RSS and Atom)
  *
- * Copyright (c) 2010-2011 by the citadel.org team
+ * Copyright (c) 2010-2012 by the citadel.org team
  *
  * This program is open source 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 3 of the
- * License, or (at your option) any later version.
+ * modify it under the terms of the GNU General Public License, version 3.
+ * 
+ * 
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * 
+ * 
+ * 
  */
 
 #include "webcit.h"
@@ -249,15 +249,12 @@ void tmplput_rssmeta(StrBuf *Target, WCTemplputParams *TP)
 {
        wcsession *WCC = WC;
        char feed_link[1024];
-       char encoded_link[1024];
 
        strcpy(feed_link, "/feed_rss?go=");
        urlesc(&feed_link[20], sizeof(feed_link) - 20, (char *)ChrPtr(WCC->CurRoom.name) );
-       CtdlEncodeBase64(encoded_link, feed_link, strlen(feed_link), 0);
-
        StrBufAppendPrintf(Target,
-               "<link rel=\"alternate\" title=\"RSS\" href=\"/B64%s\" type=\"application/rss+xml\">",
-               encoded_link
+               "<link rel=\"alternate\" title=\"RSS\" href=\"%s\" type=\"application/rss+xml\">",
+               feed_link
        );
 }