This is an automated email from the ASF dual-hosted git repository. gstein pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/steve.git
commit 6a85428dfa4d66d477ee06dc8d1163e3127f3a8c Author: Greg Stein <[email protected]> AuthorDate: Tue Feb 24 18:36:28 2026 -0600 Link to ASF Privacy Policy. Remove private policy page. --- v3/server/pages.py | 9 --------- v3/server/templates/about.ezt | 3 ++- v3/server/templates/footer.ezt | 4 +++- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/v3/server/pages.py b/v3/server/pages.py index 305dd51..15b5a0d 100644 --- a/v3/server/pages.py +++ b/v3/server/pages.py @@ -618,15 +618,6 @@ async def settings_page(): return result [email protected]('/privacy') [email protected]_template(TEMPLATES / 'privacy.ezt') -async def privacy_page(): - result = await basic_info() - result.title = 'Privacy' - - return result - - @APP.get('/about') @APP.use_template(TEMPLATES / 'about.ezt') async def about_page(): diff --git a/v3/server/templates/about.ezt b/v3/server/templates/about.ezt index 453a191..56dc329 100644 --- a/v3/server/templates/about.ezt +++ b/v3/server/templates/about.ezt @@ -4,7 +4,8 @@ [include "flashes.ezt"] <p> - TBD + For more information, please see the + <a href="https://steve.apache.org/">Apache STeVe website</a> </p> </div> [include "footer.ezt"] diff --git a/v3/server/templates/footer.ezt b/v3/server/templates/footer.ezt index 4898f92..fa6cae2 100644 --- a/v3/server/templates/footer.ezt +++ b/v3/server/templates/footer.ezt @@ -7,7 +7,9 @@ <p class="text-muted mb-2"> © 2026 Apache Software Foundation. All rights reserved. <a href="https://www.apache.org/licenses/LICENSE-2.0" class="text-muted mx-2">License</a> | - <a href="/privacy" class="text-muted mx-2">Privacy Policy</a> | + <a href="https://privacy.apache.org/policies/privacy-policy-public.html" + target="_open_privacy_link" + class="text-muted mx-2">Privacy Policy</a> | <a href="/about" class="text-muted mx-2">Apache STeVe v3.0.0</a> </p> </div>
