Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
deanishe committed May 22, 2020
1 parent 5fb4e1b commit f526f48
Show file tree
Hide file tree
Showing 14 changed files with 355 additions and 209 deletions.
45 changes: 0 additions & 45 deletions .github/run-tests.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ files = {'fieldname' : {'filename': "It's not unusual.mp3",
r = web.post('http://www.example.com/upload/', files=files)
```

**WARNING**: As this module is based on Python 2's standard HTTP libraries, *on older versions of OS X/Python, it does not validate SSL certificates when making HTTPS connections*. If your workflow uses sensitive passwords/API keys, you should *strongly consider* using the [requests][requests] library upon which the `web.py` API is based.
**WARNING**: As this module is based on Python 2's standard HTTP libraries, *on old versions of OS X/Python, it does not validate SSL certificates when making HTTPS connections*. If your workflow uses sensitive passwords/API keys, you should *strongly consider* using the [requests][requests] library upon which the `web.py` API is based.


<a name="keychain-access"></a>
Expand Down
Binary file modified docs/Alfred-Workflow.docset.zip
Binary file not shown.
21 changes: 6 additions & 15 deletions docs/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,14 @@
.versionmodified {
font-style: italic;
}
*/

cite {
font-style: normal !important;
// color: blue !important;
color: #404040;
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
font-size: 75%;
font-weight: bold;
background: #fff;
border: solid 1px #e1e4e5;
padding: 2px 5px;
}
code.literal span.pre {
color: #404040;
div.sphinxsidebar p.shield a,
div.sphinxsidebar p.shield a:link,
div.sphinxsidebar p.shield a:hover {
border-bottom: 0;
text-decoration: none;
}
*/

/* Top navigation bar */
div.related ul {
Expand Down
89 changes: 89 additions & 0 deletions docs/_templates/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
{% if theme_logo %}
<p class="logo">
<a href="{{ pathto(master_doc) }}">
<img class="logo" src="{{ pathto('_static/' ~ theme_logo, 1) }}" alt="Logo"/>
{% if theme_logo_name|lower == 'true' %}
<h1 class="logo logo-name">{{ project }}</h1>
{% endif %}
</a>
</p>
{% else %}
<h1 class="logo"><a href="{{ pathto(master_doc) }}">{{ project }}</a></h1>
{% endif %}

{% if theme_description %}
<p class="blurb">{{ theme_description }}</p>
{% endif %}

{% if theme_github_user and theme_github_repo %}
{% if theme_github_button|lower == 'true' %}
<p>
<iframe src="https://ghbtns.com/github-btn.html?user={{ theme_github_user }}&repo={{ theme_github_repo }}&type={{ theme_github_type }}&count={{ theme_github_count }}&size=large&v=2"
allowtransparency="true" frameborder="0" scrolling="0" width="200px" height="35px"></iframe>
</p>
{% endif %}
{% endif %}

{% if theme_travis_button|lower != 'false' %}
{% if theme_travis_button|lower == 'true' %}
{% set path = theme_github_user + '/' + theme_github_repo %}
{% else %}
{% set path = theme_travis_button %}
{% endif %}
<p class="shield">
<a href="https://travis-ci.org/{{ path }}">
<img
alt="https://secure.travis-ci.org/{{ path }}.svg?branch={{ theme_badge_branch }}"
src="https://secure.travis-ci.org/{{ path }}.svg?branch={{ theme_badge_branch }}"
/>
</a>
</p>
{% endif %}

{% if theme_coveralls_button|lower != 'false' %}
{% if theme_coveralls_button|lower == 'true' %}
{% set path = theme_github_user + '/' + theme_github_repo %}
{% else %}
{% set path = theme_coveralls_button %}
{% endif %}
<p class="shield">
<a href="https://coveralls.io/github/{{ path }}">
<img
alt="coverage icon"
src="https://coveralls.io/repos/github/{{ path }}/badge.svg?branch={{ theme_badge_branch }}"
/>
</a>
{% endif %}
{# src="https://img.shields.io/coveralls/{{ path }}/{{ theme_badge_branch }}.svg?style=flat" #}


{% if theme_codecov_button|lower != 'false' %}
{% if theme_codecov_button|lower == 'true' %}
{% set path = theme_github_user + '/' + theme_github_repo %}
{% else %}
{% set path = theme_codecov_button %}
{% endif %}
<p class="shield">
<a href="https://codecov.io/github/{{ path }}">
<img
alt="https://codecov.io/github/{{ path }}/coverage.svg?branch={{ theme_badge_branch }}"
src="https://codecov.io/github/{{ path }}/coverage.svg?branch={{ theme_badge_branch }}"
/>
</a>
</p>
{% endif %}

{% if theme_pypi_button|lower != 'false' %}
{% if theme_pypi_button|lower == 'true' %}
{% set path = project %}
{% else %}
{% set path = theme_pypi_button %}
{% endif %}
<p class="shield">
<a href="https://pypi.python.org/pypi/{{ path }}">
<img
alt="https://img.shields.io/pypi/v/{{ path }}.svg?style=flat"
src="https://img.shields.io/pypi/v/{{ path }}.svg?style=flat"
/>
</a>
{% endif %}
Loading

0 comments on commit f526f48

Please sign in to comment.