You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2019/06/17 21:12:17 UTC

[maven-fluido-skin] branch MSKINS-106 updated (9ce694b -> 3784c4d)

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a change to branch MSKINS-106
in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git.


 discard 9ce694b  [MSKINS-106] Replace unregistered meta tags with standard ones
     add 553320a  Remove superfluous comments
     new 3784c4d  [MSKINS-106] Replace unregistered meta tags with standard ones

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (9ce694b)
            \
             N -- N -- N   refs/heads/MSKINS-106 (3784c4d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/main/resources/META-INF/maven/site-macros.vm | 46 +-----------------------
 src/main/resources/META-INF/maven/site.vm        |  1 +
 2 files changed, 2 insertions(+), 45 deletions(-)


[maven-fluido-skin] 01/01: [MSKINS-106] Replace unregistered meta tags with standard ones

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MSKINS-106
in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git

commit 3784c4d141a98afa85a40b19052405d7f3dac992
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Mon Jun 17 22:59:57 2019 +0200

    [MSKINS-106] Replace unregistered meta tags with standard ones
    
    Since no one came up with anything better, we drop the custom ones for a
    default value also set by the Default Skin.
---
 src/main/resources/META-INF/maven/site.vm | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/src/main/resources/META-INF/maven/site.vm b/src/main/resources/META-INF/maven/site.vm
index e246a66..4520fa4 100644
--- a/src/main/resources/META-INF/maven/site.vm
+++ b/src/main/resources/META-INF/maven/site.vm
@@ -38,11 +38,8 @@
 #foreach( $author in $authors )
     <meta name="author" content="$author" />
 #end
-#if ( $dateCreation )
-    <meta name="Date-Creation-yyyymmdd" content="$dateCreation" />
-#end
-#if ( $dateRevision && !$skipGenerationDate )
-    <meta name="Date-Revision-yyyymmdd" content="$dateRevision" />
+#if ( $documentDate )
+    <meta name="date" content="$documentDate" />
 #end
     <title>$title</title>
     <link rel="stylesheet" href="$relativePath/css/apache-maven-fluido-@project.version@.min.css" />