-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SLING-11204 enable web analytics with ASF Matomo
- Loading branch information
Showing
2 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
import java.text.SimpleDateFormat | ||
|
||
p() { | ||
yield "Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project " | ||
yield "logo are trademarks of The Apache Software Foundation. All other marks mentioned " | ||
yield "may be trademarks or registered trademarks of their respective owners." | ||
yield '''Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project | ||
logo are trademarks of The Apache Software Foundation. All other marks mentioned | ||
may be trademarks or registered trademarks of their respective owners.''' | ||
} | ||
p() { | ||
String currentYear = new SimpleDateFormat("YYYY").format(new Date()) | ||
yield "Copyright \u00a9 2007-${currentYear} The Apache Software Foundation." | ||
yield "Copyright \u00a9 2007-${currentYear}" | ||
a(href:'https://www.apache.org/') { | ||
yield 'The Apache Software Foundation' | ||
} | ||
yield '|' | ||
a(href:'https://privacy.apache.org/policies/privacy-policy-public.html') { | ||
yield 'Privacy Policy' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters