mercurial/templates/atom/bookmarkentry.tmpl
author Pulkit Goyal <7895pulkit@gmail.com>
Fri, 24 Jul 2020 19:48:38 +0530
changeset 45292 69691c5b8ce4
parent 18526 9409aeaafdc1
permissions -rw-r--r--
mergeresult: introduce action -> (filename, data, msg) mapping and related API Good number of places in code, we iterate over the actions dict which has filename as keys and filter based on the action. This patch introduced another mapping which has action as key. This will help in refactoring the code much more in upcoming patch. Differential Revision: https://phab.mercurial-scm.org/D8830
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13858
1046cb663776 hgweb: add missing bookmarks templates to atom/rss styles
Yuya Nishihara <yuya@tcha.org>
parents:
diff changeset
     1
 <entry>
1046cb663776 hgweb: add missing bookmarks templates to atom/rss styles
Yuya Nishihara <yuya@tcha.org>
parents:
diff changeset
     2
  <title>{bookmark|escape}</title>
18526
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 13858
diff changeset
     3
  <link rel="alternate" href="{urlbase}{url|urlescape}rev/{node|short}"/>
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 13858
diff changeset
     4
  <id>{urlbase}{url|urlescape}#bookmark-{node}</id>
13858
1046cb663776 hgweb: add missing bookmarks templates to atom/rss styles
Yuya Nishihara <yuya@tcha.org>
parents:
diff changeset
     5
  <updated>{date|rfc3339date}</updated>
1046cb663776 hgweb: add missing bookmarks templates to atom/rss styles
Yuya Nishihara <yuya@tcha.org>
parents:
diff changeset
     6
  <published>{date|rfc3339date}</published>
1046cb663776 hgweb: add missing bookmarks templates to atom/rss styles
Yuya Nishihara <yuya@tcha.org>
parents:
diff changeset
     7
  <content type="text">{bookmark|strip|escape}</content>
1046cb663776 hgweb: add missing bookmarks templates to atom/rss styles
Yuya Nishihara <yuya@tcha.org>
parents:
diff changeset
     8
 </entry>