This is an automated email from the ASF dual-hosted git repository. tn pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tooling-atr-experiments.git
The following commit(s) were added to refs/heads/main by this push: new b3d2c88 remove obsolete files b3d2c88 is described below commit b3d2c88e9c953c329d581c0b92d563c2c93c8f11 Author: Thomas Neidhart <t...@apache.org> AuthorDate: Mon Feb 17 22:37:53 2025 +0100 remove obsolete files --- atr/static/images/feather_small.png | Bin 3738 -> 0 bytes atr/templates/includes/navigation.html | 56 --------------------------------- 2 files changed, 56 deletions(-) diff --git a/atr/static/images/feather_small.png b/atr/static/images/feather_small.png deleted file mode 100644 index 7d116ce..0000000 Binary files a/atr/static/images/feather_small.png and /dev/null differ diff --git a/atr/templates/includes/navigation.html b/atr/templates/includes/navigation.html deleted file mode 100644 index f5c2b83..0000000 --- a/atr/templates/includes/navigation.html +++ /dev/null @@ -1,56 +0,0 @@ -<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> - <div class="container-fluid"> - <a class="navbar-brand" href="#"> - <img src="{{ url_for('static', filename='images/feather_small.png') }}" - alt="Apache Feather Logo" - class="navbar-logo" /> - Apache Trusted Release Platform</a> - <div class="collapse navbar-collapse" id="navbarATR"> - <ul class="navbar-nav me-auto mb-2 mb-lg-0"> - <li class="nav-item"> - <a class="nav-link active" - aria-current="page" - href="{{ url_for('root') }}">Home</a> - </li> - <li class="nav-item"> - <a class="nav-link" href="{{ url_for('root_pages') }}">Pages</a> - </li> - <li class="nav-item dropdown"> - <a class="nav-link dropdown-toggle" - href="#" - data-bs-toggle="dropdown" - aria-expanded="false">PMCs</a> - <ul class="dropdown-menu"> - <li> - <a class="dropdown-item" href="{{ url_for('root_pmc_directory') }}">Directory</a> - </li> - </ul> - </li> - </ul> - - <ul class="navbar-nav ml-auto"> - <li class="nav-item dropdown"> - {% if current_user %} - <a class="nav-link dropdown-toggle" - href="#" - data-bs-toggle="dropdown" - aria-expanded="false">{{ current_user.uid }} - {{ current_user.fullname }}</a> - <ul class="dropdown-menu"> - <li> - <a class="dropdown-item" - href="#" - onclick="location.href='/auth?logout=' + window.location.pathname;">Logout</a> - </li> - </ul> - {% else %} - <button class="btn btn-outline-light me-2" - type="button" - onclick="location.href='/auth?login=' + window.location.pathname;"> - <i class="fas fa-user"></i> Login - </button> - {% endif %} - </li> - </ul> - </div> - </div> -</nav> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tooling.apache.org For additional commands, e-mail: dev-h...@tooling.apache.org