This is an automated email from the ASF dual-hosted git repository. toulmean pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-tuweni-website.git
The following commit(s) were added to refs/heads/master by this push: new b52dcb6 Fix bug info b52dcb6 is described below commit b52dcb6bb0e5b464b96ecb38ce15fde845b120e0 Author: Antoine Toulme <anto...@lunar-ocean.com> AuthorDate: Sun Oct 18 22:10:10 2020 -0700 Fix bug info --- _includes/themes/apache/default.html | 3 +- _includes/themes/apache/footer.html | 2 +- community.md | 55 +++++++++++++++++++++--------------- 3 files changed, 36 insertions(+), 24 deletions(-) diff --git a/_includes/themes/apache/default.html b/_includes/themes/apache/default.html index d923cfe..3e51f5e 100644 --- a/_includes/themes/apache/default.html +++ b/_includes/themes/apache/default.html @@ -30,6 +30,7 @@ <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> --> + <script src="{{ ASSET_PATH }}/jquery/jquery-2.1.1.min.js"></script> </head> @@ -47,7 +48,7 @@ </div> {% include JB/analytics %} - <script src="{{ ASSET_PATH }}/jquery/jquery-2.1.1.min.js"></script> + <script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script> diff --git a/_includes/themes/apache/footer.html b/_includes/themes/apache/footer.html index debd3f5..4a2d1f6 100644 --- a/_includes/themes/apache/footer.html +++ b/_includes/themes/apache/footer.html @@ -18,7 +18,7 @@ </div> {% endif %} <div> - Copyright © 2019 <a href="http://www.apache.org">The Apache Software Foundation</a>. + Copyright © 2019-2020 <a href="http://www.apache.org">The Apache Software Foundation</a>. Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>. <br> diff --git a/community.md b/community.md index 31ad962..7ea85c3 100644 --- a/community.md +++ b/community.md @@ -51,33 +51,44 @@ Get help using {{ site.data.project.short_name }} or contribute to the project o ### Issue tracker - - -#### Bug Reports - -Found bug? Enter an issue in the [Issue Tracker](https://github.com/apache/incubator-tuweni/issues). - -Before submitting an issue, please: - -* Verify that the bug does in fact exist. -* Search the issue tracker to verify there is no existing issue reporting the bug you've found. -* Consider tracking down the bug yourself in the Wink's source and submitting a patch along with your bug report. This is a great time saver for the Wink developers and helps ensure the bug will be fixed quickly. - - - -#### Feature Requests - -Enhancement requests for new features are also welcome. The more concrete and rationale the request is, the greater the chance it will incorporated into future releases. - - - [https://github.com/apache/incubator-tuweni/issues](https://github.com/apache/incubator-tuweni/issues) - +We use <a href="https://github.com/apache/incubator-tuweni/issues">Github for bug reports and feature requests</a>, with <span id="open">(loading)</span> issues. + +<div> + <table class="table table-bordered table-hover"> + <thead> + <tr> + <th style="min-width:50px"> + # + </th> + <th> + Title + </th> + </tr> + </thead> + <tbody id="github-issues"> + </tbody> + </table> +</div> + +<script> + var urlToGetAllOpenBugs = "https://api.github.com/repos/apache/incubator-tuweni/issues?state=open"; + + $(document).ready(function () { + $.getJSON(urlToGetAllOpenBugs, function (allIssues) { + $("span#open").text(allIssues.length); + $.each(allIssues, function (i, issue) { + + $("tbody#github-issues") + .append("<tr><td><a href=\"" + issue.html_url + "\"><strong>#" + issue.number + "</strong></a></td><td><a href=\"" + issue.html_url + "\">" + issue.title + "</a></td></tr>"); + }); + }); + }); +</script> ### Source Code The project sources are accessible via the [source code repository]({{ site.data.project.source_repository }}) which is also mirrored at [Apache]({{ site.data.project.source_repository_mirror }}) - ### Website Source Code The project website sources are accessible via the [website source code repository]({{ site.data.project.website_repository }}) which is also mirrored at [Apache]({{ site.data.project.website_repository_mirror }}) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@tuweni.apache.org For additional commands, e-mail: commits-h...@tuweni.apache.org