Skip to content

Commit 3c87839

Browse files
committed
Update theme to flatly
1 parent 1f801c8 commit 3c87839

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Linux: [![Build Status](https://travis-ci.org/randyzwitch/OAuth.jl.svg?branch=ma
44
Windows:
55
[![Build status](https://ci.appveyor.com/api/projects/status/lu2jwu1yh464bdm4/branch/master?svg=true)](https://ci.appveyor.com/project/randyzwitch/oauth-jl/branch/master)
66
<br>
7-
Coveralls: [![codecov.io](https://codecov.io/github/randyzwitch/OAuth.jl/coverage.svg?branch=master)](https://codecov.io/github/randyzwitch/OAuth.jl?branch=master)
8-
Documentation: <br>
7+
Coveralls: [![codecov.io](https://codecov.io/github/randyzwitch/OAuth.jl/coverage.svg?branch=master)](https://codecov.io/github/randyzwitch/OAuth.jl?branch=master) <br>
8+
Documentation:
99
[![](https://img.shields.io/badge/docs-stable-blue.svg)](http://randyzwitch.com/OAuth.jl/stable)
1010
[![](https://img.shields.io/badge/docs-latest-blue.svg)](http://randyzwitch.com/OAuth.jl/latest)
1111

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using Documenter, OAuth
33
makedocs()
44

55
deploydocs(
6-
deps = Deps.pip("mkdocs", "python-markdown-math", "mkdocs-cinder"),
6+
deps = Deps.pip("mkdocs", "python-markdown-math", "mkdocs-bootswatch"),
77
repo = "github.com/randyzwitch/OAuth.jl.git",
88
julia = "0.6",
99
osname = "linux"

docs/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ repo_url: https://github.com/randyzwitch/OAuth.jl
33
site_description: Pure Julia implementation of OAuth v1.0a
44
site_author: randyzwitch
55

6-
theme: cinder
6+
theme: flatly
77

88
extra_css:
99
- assets/Documenter.css

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ DocTestSetup = quote
44
end
55
```
66

7-
```@contents
8-
```
9-
107
My interpretation of the OAuth 1.0 protocol, based on my reading of [RFC5849](https://tools.ietf.org/html/rfc5849), the [liboauth](http://liboauth.sourceforge.net/) C library and factoring out the OAuth authentication code from [Twitter.jl](https://github.com/randyzwitch/Twitter.jl). At one point, this package relied on liboauth and was a wrapper of that library's functions built using [Clang.jl](https://github.com/ihnorton/Clang.jl); however, as I cleaned up the auto-generated functions from Clang, I decided that it would be easier and cleaner to re-write the library in Julia rather than require liboauth.
118

129
This is still a work-in-progress, but works as a replacement for the authentication in the Twitter.jl package, so it should be fairly complete in its implementation.
1310

11+
```@contents
12+
```
13+
1414
## Functions
1515
```@autodocs
1616
Modules = [OAuth]

0 commit comments

Comments
 (0)