templates/rss/header.tmpl
author Matt Mackall <mpm@selenic.com>
Thu, 11 Oct 2007 00:46:54 -0500
changeset 5451 0a43875677b1
parent 3946 be5d099e7a62
permissions -rw-r--r--
revlog: break up compression of large deltas Python's zlib apparently makes an internal copy of strings passed to compress(). To avoid this, compress strings 1M at a time, then join them at the end if the result would be smaller than the original. For initial commits of large but compressible files, this cuts peak memory usage nearly in half.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3946
be5d099e7a62 Send encoding information in rss header
Edouard Gomez <ed.gomez@free.fr>
parents: 3413
diff changeset
     1
Content-type: text/xml; charset={encoding}
599
765182a4c843 [PATCH] Add RSS support to hgweb
mpm@selenic.com
parents:
diff changeset
     2
3946
be5d099e7a62 Send encoding information in rss header
Edouard Gomez <ed.gomez@free.fr>
parents: 3413
diff changeset
     3
<?xml version="1.0" encoding="{encoding}"?>
599
765182a4c843 [PATCH] Add RSS support to hgweb
mpm@selenic.com
parents:
diff changeset
     4
<rss version="2.0">
765182a4c843 [PATCH] Add RSS support to hgweb
mpm@selenic.com
parents:
diff changeset
     5
  <channel>
3413
a2179e78d18b Fix RSS URLs (closes issue396)
Brendan Cully <brendan@kublai.com>
parents: 3227
diff changeset
     6
    <link>{urlbase}{url}</link>
599
765182a4c843 [PATCH] Add RSS support to hgweb
mpm@selenic.com
parents:
diff changeset
     7
    <language>en-us</language>