[pluginlist-update] Updated templates to final version with many updates, made project-data plugin more robust, tweaked some css and ran webpack again.
This commit is contained in:
parent
064d3764bb
commit
af90510192
File diff suppressed because one or more lines are too long
|
@ -52,9 +52,19 @@ class ProjectDataPlugin(Plugin):
|
|||
resp = requests.get(url)
|
||||
pkg = resp.json()
|
||||
self.data.update(pkg['info'])
|
||||
# rewrite description as rendered description
|
||||
# Erase bad keys that are sometimes returned from the api
|
||||
# to handle it in the template.
|
||||
# To us, unknown is the same as non-existent.
|
||||
for key in self.data:
|
||||
val = self.data.get(key)
|
||||
if type(val) is str and val.strip() == 'UNKNOWN':
|
||||
self.data[key] = ''
|
||||
self.data['short_name'] = name.split('lektor-')[1]
|
||||
# Rewrite description as rendered description.
|
||||
self.data['description'] = self.render(
|
||||
self.data['description'], self.data['description_content_type'])
|
||||
if not self.data.get('home_page'):
|
||||
self.data['home_page'] = 'https://pypi.org/project/{}/'.format(name)
|
||||
|
||||
def github_data(self, owner=None, repo=None):
|
||||
url = 'https://api.github.com/repos/{}/{}'.format(owner, repo)
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
{% macro render_plugin_list(category) %}
|
||||
<ul>
|
||||
{% for plugin in category.children.order_by('-official', 'title') %}
|
||||
{% for plugin in category.children.order_by('-official', 'name') %}
|
||||
{% set pd = project_data(plugin.name) %}
|
||||
{% if plugin.summary %}
|
||||
{% set summary = plugin.summary %}
|
||||
|
@ -18,14 +18,14 @@
|
|||
{% endif %}
|
||||
|
||||
{% if plugin.official %}
|
||||
<li><a href="{{ plugin|url }}">* {{ plugin.name }}</a>: {{ summary }}</li>
|
||||
<li><a href="{{ plugin|url }}">* {{ pd.short_name }}</a>: {{ summary }}</li>
|
||||
{% if loop.nextitem %}
|
||||
{% if not loop.nextitem.official %}
|
||||
---
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<li><a href="{{ plugin|url }}">{{ plugin.name }}</a>: {{ summary }}</li>
|
||||
<li><a href="{{ plugin|url }}">{{ pd.short_name }}</a>: {{ summary }}</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
{% endif %}
|
||||
|
||||
<!-- Place this tag in your head or just before your close body tag. -->
|
||||
{# <script async defer src="https://buttons.github.io/buttons.js"></script>#}
|
||||
{# <script async defer src="https://buttons.github.io/buttons.js"></script>#}
|
||||
<div class="plugin">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<h1>Plugin – {{ pd.name }} {{ pd.version }}</h1>
|
||||
|
@ -29,7 +30,7 @@
|
|||
<div class="col-sm-3 plugin-margin">
|
||||
<h4>Project links</h4>
|
||||
<ul class="tree-nav">
|
||||
<li><a href="{{ pd.home_page }}">Homepage</a></li>
|
||||
<li><a href="{{ pd.home_page }}" class="ext">Homepage</a></li>
|
||||
</ul>
|
||||
|
||||
{% if 'github' in pd.home_page %}
|
||||
|
@ -37,9 +38,9 @@
|
|||
<h4>GitHub Statistics</h4>
|
||||
</div>
|
||||
<ul class="button-nav">
|
||||
<li><p><a class="github-button" href="{{ pd.home_page }}" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star {{ this.name }} on GitHub">Star</a></p></li>
|
||||
<li><p><a class="github-button" href="{{ pd.home_page }}/fork" data-icon="octicon-repo-forked" data-show-count="true" data-size="large" data-show="true" aria-label="Open Issues">Fork</a></p></li>
|
||||
<li><p><a class="github-button" href="{{ pd.home_page }}/issues" data-icon="octicon-issue-opened" data-show-count="true" data-size="large" data-show="true" aria-label="Open Issues">Open Issues</a></p></li>
|
||||
<li><p><a class="github-button" href="{{ pd.home_page }}" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star {{ this.name }} on GitHub" target="_blank">Star</a></p></li>
|
||||
<li><p><a class="github-button" href="{{ pd.home_page }}/fork" data-icon="octicon-repo-forked" data-show-count="true" data-size="large" data-show="true" aria-label="Open Issues" target="_blank">Fork</a></p></li>
|
||||
<li><p><a class="github-button" href="{{ pd.home_page }}/issues" data-icon="octicon-issue-opened" data-show-count="true" data-size="large" data-show="true" aria-label="Open Issues" target="_blank">Open Issues</a></p></li>
|
||||
</ul>
|
||||
{% endif %}
|
||||
|
||||
|
@ -60,8 +61,8 @@
|
|||
<h4>Tags</h4>
|
||||
</div>
|
||||
{% if this.tags %}
|
||||
{% for t in this.tags %}
|
||||
{{ "and " if loop.last }}
|
||||
{% for t in this.tags|sort %}
|
||||
{{ "and " if (loop.last and this.tags|length > 1) }}
|
||||
<a href="{{ ('/plugins/tag/' ~ t.lower() ~ '/')|url }}">{{ t }}</a>{{ ", " if not loop.last }}
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
|
@ -85,4 +86,5 @@
|
|||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
|
@ -15,8 +15,10 @@
|
|||
<h1>{{ this.title }}</h1>
|
||||
{% call render_full_width_blocks(this.body.blocks, classes='col-md-12') %}
|
||||
{% endcall %}
|
||||
{% for category in site.query('/plugin-categories') %}
|
||||
{% for category in site.query('/plugin-categories').order_by('title') %}
|
||||
<h2><a href="{{ category|url }}">{{ category.title }}</a></h2>
|
||||
<div class="plugin">
|
||||
{{ render_plugin_list(category) }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -217,7 +217,7 @@ div.blog-snippet {
|
|||
}
|
||||
}
|
||||
|
||||
div.doc-styling, div.blog-post {
|
||||
div.doc-styling, div.blog-post, div.plugin {
|
||||
line-height: 1.75;
|
||||
|
||||
a.ref {
|
||||
|
@ -225,6 +225,7 @@ div.doc-styling, div.blog-post {
|
|||
}
|
||||
|
||||
a.ext {
|
||||
white-space: nowrap;
|
||||
&:before {
|
||||
@extend .glyphicon;
|
||||
@extend .glyphicon-link;
|
||||
|
@ -675,13 +676,14 @@ div.plugin-margin {
|
|||
h4 {
|
||||
margin: 25px 0;
|
||||
}
|
||||
}
|
||||
|
||||
div.separator {
|
||||
div.separator {
|
||||
border-top: 1px solid #ddd;
|
||||
margin: 25px 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
div.comment-box {
|
||||
border-top: 1px solid #ddd;
|
||||
margin-top: 35px;
|
||||
|
|
Loading…
Reference in New Issue