Files
reddit/r2/r2/templates/base.xml
Keith Mitchell ea00e4996b Don't try and translate c.site.title
We won't have translations for user-entered data
2011-12-01 11:40:28 -08:00

54 lines
2.1 KiB
XML

## The contents of this file are subject to the Common Public Attribution
## License Version 1.0. (the "License"); you may not use this file except in
## compliance with the License. You may obtain a copy of the License at
## http://code.reddit.com/LICENSE. The License is based on the Mozilla Public
## License Version 1.1, but Sections 14 and 15 have been added to cover use of
## software over a computer network and provide for limited attribution for the
## Original Developer. In addition, Exhibit A has been modified to be consistent
## with Exhibit B.
##
## Software distributed under the License is distributed on an "AS IS" basis,
## WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
## the specific language governing rights and limitations under the License.
##
## The Original Code is Reddit.
##
## The Original Developer is the Initial Developer. The Initial Developer of
## the Original Code is CondeNet, Inc.
##
## All portions of the code written by CondeNet are Copyright (c) 2006-2010
## CondeNet, Inc. All Rights Reserved.
################################################################################
<?xml version="1.0" encoding="UTF-8"?>
<%!
from r2.models.subreddit import DefaultSR
from r2.lib.template_helpers import get_domain, add_sr
%>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>${self.Title()}</title>
<link>${add_sr("/", force_hostname = True)}</link>
<description>${c.site.description or ''}</description>
<image>
<%
if g.css_killswitch or not c.site.header:
header_img = DefaultSR().header
else:
header_img = c.site.header
if not header_img.startswith("http:"):
header_img = add_sr(header_img, sr_path=False, force_hostname=True)
%>
<url>${header_img}</url>
<title>${self.Title()}</title>
<link>${add_sr("/", force_hostname = True)}</link>
</image>
${next.body()}
</channel>
</rss>
<%def name="Title()">
${c.site.title}
</%def>