Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 62A93200D11 for ; Mon, 2 Oct 2017 14:26:54 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 615CC1609EF; Mon, 2 Oct 2017 12:26:54 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A4D361609DE for ; Mon, 2 Oct 2017 14:26:53 +0200 (CEST) Received: (qmail 44065 invoked by uid 500); 2 Oct 2017 12:26:52 -0000 Mailing-List: contact commits-help@sling.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@sling.apache.org Delivered-To: mailing list commits@sling.apache.org Received: (qmail 44056 invoked by uid 99); 2 Oct 2017 12:26:52 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Oct 2017 12:26:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B4AE1F3312; Mon, 2 Oct 2017 12:26:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: justin@apache.org To: commits@sling.apache.org Date: Mon, 02 Oct 2017 12:26:52 -0000 Message-Id: <7886473f2e1a488e91c4525eb0a95d6e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] sling-site git commit: use timezone in feed updated date archived-at: Mon, 02 Oct 2017 12:26:54 -0000 Repository: sling-site Updated Branches: refs/heads/asf-site 47a72f1d1 -> 078f462ce refs/heads/master bf0b58e35 -> dfb1cbc16 use timezone in feed updated date Project: http://git-wip-us.apache.org/repos/asf/sling-site/repo Commit: http://git-wip-us.apache.org/repos/asf/sling-site/commit/dfb1cbc1 Tree: http://git-wip-us.apache.org/repos/asf/sling-site/tree/dfb1cbc1 Diff: http://git-wip-us.apache.org/repos/asf/sling-site/diff/dfb1cbc1 Branch: refs/heads/master Commit: dfb1cbc16aeca5dba59e293feef7cfe2af05ed17 Parents: bf0b58e Author: Justin Edelson Authored: Mon Oct 2 08:25:51 2017 -0400 Committer: Justin Edelson Committed: Mon Oct 2 08:25:51 2017 -0400 ---------------------------------------------------------------------- src/main/jbake/templates/feed.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sling-site/blob/dfb1cbc1/src/main/jbake/templates/feed.tpl ---------------------------------------------------------------------- diff --git a/src/main/jbake/templates/feed.tpl b/src/main/jbake/templates/feed.tpl index 866cc73..ff0a4d3 100644 --- a/src/main/jbake/templates/feed.tpl +++ b/src/main/jbake/templates/feed.tpl @@ -9,7 +9,7 @@ feed(xmlns:"http://www.w3.org/2005/Atom"){ newLine() subtitle("${config.blog_subtitle}") newLine() - updated("${published_date.format('yyyy-MM-dd\'T\'HH:mm:ss\'Z\'')}") + updated("${published_date.format('yyyy-MM-dd\'T\'HH:mm:ss\'Z\'Z')}") newLine() id("tag:${config.feed_id},${published_date.format('yyyy:MM')}") newLine() @@ -23,7 +23,7 @@ feed(xmlns:"http://www.w3.org/2005/Atom"){ newLine() link(href:"${config.site_host}${config.site_contextPath}${post.uri}") newLine() - updated("${post.date.format('yyyy-MM-dd\'T\'HH:mm:ss\'Z\'')}") + updated("${post.date.format('yyyy-MM-dd\'T\'HH:mm:ss\'Z\'Z')}") newLine() id("${config.site_host}${config.site_contextPath}${post.uri}") newLine()