Skip to content

Commit

Permalink
Merge pull request #17 from sailfishos-chum/config.source_code_url
Browse files Browse the repository at this point in the history
Merge branch `config.source_code_url`
  • Loading branch information
Olf0 authored Feb 28, 2024
2 parents 0a8c372 + 4cd727b commit 7657447
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions chumweb/www/views/pages/about-generator.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@
<h1>Chum Web Generator</h1>
</header>
<p>
This website is generated by a project called <a href="{{config.source_code_url}}">chumweb (view source code)</a>.
To gather information needed, it will make requests with the User-Agent <code>{{config.user_agent}}</code>. Some
URLs it visits are determined by the configuration file:
This website is built by the Chum Web Generator <a href="{{config.source_code_url}}">(view source repository)</a>.
To gather necessary information, it will make requests with the User-Agent <code>{{config.user_agent}}</code>. Some
URLs it visits are determined by its configuration file <code>config.py</code>:
</p>
<ul>
<li>{{config.obs_url}}</li>
<li>{{config.repo_url_prefix}}</li>
<li><a href="{{config.obs_url}}">{{config.obs_url}}</a></li>
<li><a href="{{config.repo_url_prefix}}">{{config.repo_url_prefix}}</a></li>
</ul>
<p>
Other URLs may be visited because a package's metadata contains that URL. Right now, you cannot block this bot
using <code>robots.txt</code>. You may kindly ask the package maintainer to remove the URL to your website from
their package metadata. A list of URLs requested for each package is below:
Other URLs will be visited because a package's metadata contains these URLs. Currently, a website cannot block this bot
by employing a <code>robots.txt</code> file. You may kindly ask a package maintainer to remove a URL to your website from
their package metadata. The URLs visited for each package are listed below:
</p>
<ul>
{% for pkg in pkgs %}
<li>
<a href="{{ pkg.web_url() }}">{{ pkg.name }}</a>
<b><a href="{{ pkg.web_url() }}">{{ pkg.name }}</a></b>
<ul>
{% for url in pkg.requested_urls() %}
<li><a href="{{ url }}">{{ url }}</a></li>
Expand Down

0 comments on commit 7657447

Please sign in to comment.