# HG changeset patch # User Yuya Nishihara # Date 1301838799 -32400 # Node ID 1046cb663776dae47104ef5907e3eee0dc0e4459 # Parent f911b1de5fa0145b2413b39a96635b6167b7161c hgweb: add missing bookmarks templates to atom/rss styles It's already referenced from paper style. diff -r f911b1de5fa0 -r 1046cb663776 mercurial/templates/atom/bookmarkentry.tmpl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mercurial/templates/atom/bookmarkentry.tmpl Sun Apr 03 22:53:19 2011 +0900 @@ -0,0 +1,8 @@ + + {bookmark|escape} + + {urlbase}{url}#bookmark-{node} + {date|rfc3339date} + {date|rfc3339date} + {bookmark|strip|escape} + diff -r f911b1de5fa0 -r 1046cb663776 mercurial/templates/atom/bookmarks.tmpl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mercurial/templates/atom/bookmarks.tmpl Sun Apr 03 22:53:19 2011 +0900 @@ -0,0 +1,11 @@ +{header} + {urlbase}{url} + + + {repo|escape}: bookmarks + {repo|escape} bookmark history + Mercurial SCM + {latestentry%feedupdated} + +{entries%bookmarkentry} + diff -r f911b1de5fa0 -r 1046cb663776 mercurial/templates/atom/map --- a/mercurial/templates/atom/map Fri Apr 01 13:25:26 2011 -0500 +++ b/mercurial/templates/atom/map Sun Apr 03 22:53:19 2011 +0900 @@ -8,4 +8,6 @@ filelogentry = filelogentry.tmpl tags = tags.tmpl tagentry = tagentry.tmpl +bookmarks = bookmarks.tmpl +bookmarkentry = bookmarkentry.tmpl error = error.tmpl diff -r f911b1de5fa0 -r 1046cb663776 mercurial/templates/rss/bookmarkentry.tmpl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mercurial/templates/rss/bookmarkentry.tmpl Sun Apr 03 22:53:19 2011 +0900 @@ -0,0 +1,6 @@ + + {bookmark|escape} + {urlbase}{url}rev/{node|short} + + {date|rfc822date} + diff -r f911b1de5fa0 -r 1046cb663776 mercurial/templates/rss/bookmarks.tmpl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mercurial/templates/rss/bookmarks.tmpl Sun Apr 03 22:53:19 2011 +0900 @@ -0,0 +1,6 @@ +{header} + {repo|escape}: bookmarks + {repo|escape} bookmark history + {entries%bookmarkentry} + + diff -r f911b1de5fa0 -r 1046cb663776 mercurial/templates/rss/map --- a/mercurial/templates/rss/map Fri Apr 01 13:25:26 2011 -0500 +++ b/mercurial/templates/rss/map Sun Apr 03 22:53:19 2011 +0900 @@ -7,4 +7,6 @@ filelogentry = filelogentry.tmpl tags = tags.tmpl tagentry = tagentry.tmpl +bookmarks = bookmarks.tmpl +bookmarkentry = bookmarkentry.tmpl error = error.tmpl