checkpoint 0.2.2 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.envrc +1 -0
- data/.gitignore +18 -9
- data/.rspec +2 -0
- data/.rubocop.yml +30 -0
- data/.travis.yml +5 -0
- data/.yardopts +1 -0
- data/Gemfile +5 -1
- data/LICENSE.md +27 -0
- data/README.md +23 -0
- data/Rakefile +14 -0
- data/bin/console +18 -0
- data/bin/rake +21 -0
- data/bin/rspec +21 -0
- data/bin/sequel +21 -0
- data/bin/setup +8 -0
- data/bin/yard +21 -0
- data/bin/yardoc +21 -0
- data/checkpoint.gemspec +37 -19
- data/db/migrations/1_create_permits.rb +19 -0
- data/docs/Makefile +24 -0
- data/docs/_static/.gitkeep +0 -0
- data/docs/_templates/.gitkeep +0 -0
- data/docs/authentication.rst +18 -0
- data/docs/conf.py +46 -0
- data/docs/index.rst +28 -0
- data/docs/policies.rst +211 -0
- data/docs/requirements.txt +4 -0
- data/lib/checkpoint.rb +16 -2
- data/lib/checkpoint/agent.rb +93 -0
- data/lib/checkpoint/agent/resolver.rb +33 -0
- data/lib/checkpoint/agent/token.rb +52 -0
- data/lib/checkpoint/authority.rb +67 -0
- data/lib/checkpoint/credential.rb +82 -0
- data/lib/checkpoint/credential/permission.rb +27 -0
- data/lib/checkpoint/credential/resolver.rb +87 -0
- data/lib/checkpoint/credential/role.rb +26 -0
- data/lib/checkpoint/credential/token.rb +51 -0
- data/lib/checkpoint/db.rb +161 -0
- data/lib/checkpoint/db/permit.rb +24 -0
- data/lib/checkpoint/permission_mapper.rb +29 -0
- data/lib/checkpoint/permits.rb +133 -0
- data/lib/checkpoint/query.rb +42 -0
- data/lib/checkpoint/query/action_permitted.rb +40 -0
- data/lib/checkpoint/query/role_granted.rb +55 -0
- data/lib/checkpoint/railtie.rb +92 -71
- data/lib/checkpoint/resource.rb +138 -0
- data/lib/checkpoint/resource/all_of_any_type.rb +34 -0
- data/lib/checkpoint/resource/all_of_type.rb +50 -0
- data/lib/checkpoint/resource/any_entity.rb +25 -0
- data/lib/checkpoint/resource/any_entity_of_type.rb +29 -0
- data/lib/checkpoint/resource/resolver.rb +21 -0
- data/lib/checkpoint/resource/token.rb +65 -0
- data/lib/checkpoint/version.rb +3 -1
- data/lib/tasks/migrate.rake +75 -0
- metadata +260 -19
- data/Readme.markdown +0 -103
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 6a1c461fe8389571e1850b62a87c9d0db9ade53e
|
4
|
+
data.tar.gz: 2854266ee72cf25d1e789aed12eb63e27e7436a5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: cea376e3ab91a65d63e86b64b7eddd54ea4edbf5a403763e099a334ca1546454b3e4d86a666cafa56e4b1db7c663a8d89ed4f52a890b358975e3f8f071851ae2
|
7
|
+
data.tar.gz: ae1c1b1bdb8bfe5705ede2d5d4478a8888884200307008206e80680b49f75785ed8d02d02a13856c9a137b559a204807fc46910a27a2b7dde054c61e97d0e4a3
|
data/.envrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
PATH_add bin
|
data/.gitignore
CHANGED
@@ -1,10 +1,19 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
/.bundle/
|
2
|
+
/coverage/
|
3
|
+
/doc/
|
4
|
+
/pkg/
|
5
|
+
/spec/reports/
|
6
|
+
/tmp/
|
7
|
+
|
8
|
+
/db/checkpoint.log
|
9
|
+
/db/checkpoint.yml
|
10
|
+
/db/*.sqlite3
|
3
11
|
Gemfile.lock
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
12
|
+
|
13
|
+
# rspec failure tracking
|
14
|
+
.rspec_status
|
15
|
+
|
16
|
+
# Docs generated by YARD and Sphinx
|
17
|
+
/.yardoc/
|
18
|
+
/docs/_build/
|
19
|
+
/docs/_yard/
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
Rails:
|
2
|
+
Enabled: true
|
3
|
+
|
4
|
+
Rails/Delegate:
|
5
|
+
Enabled: false
|
6
|
+
|
7
|
+
# inherit_gem:
|
8
|
+
# rubocop-rails:
|
9
|
+
# - config/rails.yml
|
10
|
+
|
11
|
+
AllCops:
|
12
|
+
DisplayCopNames: true
|
13
|
+
TargetRubyVersion: 2.4
|
14
|
+
Exclude:
|
15
|
+
- 'bin/**/*'
|
16
|
+
- 'vendor/**/*'
|
17
|
+
|
18
|
+
Layout/MultilineMethodDefinitionBraceLayout:
|
19
|
+
EnforcedStyle: same_line
|
20
|
+
|
21
|
+
Metrics/LineLength:
|
22
|
+
Max: 110
|
23
|
+
|
24
|
+
Metrics/BlockLength:
|
25
|
+
Exclude:
|
26
|
+
- '*.gemspec'
|
27
|
+
ExcludedMethods: ['describe', 'context', 'xdescribe', 'xcontext']
|
28
|
+
|
29
|
+
Style/StringLiterals:
|
30
|
+
Enabled: false
|
data/.travis.yml
ADDED
data/.yardopts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--output-dir ./docs/_yard
|
data/Gemfile
CHANGED
data/LICENSE.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
Copyright (c) 2018, The Regents of the University of Michigan.
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
5
|
+
modification, are permitted provided that the following conditions are
|
6
|
+
met:
|
7
|
+
|
8
|
+
* Redistributions of source code must retain the above copyright
|
9
|
+
notice, this list of conditions and the following disclaimer.
|
10
|
+
* Redistributions in binary form must reproduce the above copyright
|
11
|
+
notice, this list of conditions and the following disclaimer in the
|
12
|
+
documentation and/or other materials provided with the distribution.
|
13
|
+
* Neither the name of the The University of Michigan nor the
|
14
|
+
names of its contributors may be used to endorse or promote products
|
15
|
+
derived from this software without specific prior written permission.
|
16
|
+
|
17
|
+
THIS SOFTWARE IS PROVIDED BY THE REGENTS OF THE UNIVERSITY OF MICHIGAN AND
|
18
|
+
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
|
19
|
+
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
20
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OF THE
|
21
|
+
UNIVERSITY OF MICHIGAN BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
22
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
23
|
+
TO,PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
24
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
25
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
26
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
27
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
[](https://travis-ci.org/mlibrary/checkpoint?branch=master)
|
2
|
+
[](https://coveralls.io/github/mlibrary/checkpoint?branch=master)
|
3
|
+
|
4
|
+
# Checkpoint
|
5
|
+
|
6
|
+
Checkpoint provides a model and infrastructure for policy-based authorization,
|
7
|
+
especially in Rails applications.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem 'checkpoint'
|
15
|
+
```
|
16
|
+
|
17
|
+
And then execute:
|
18
|
+
|
19
|
+
$ bundle
|
20
|
+
|
21
|
+
## License
|
22
|
+
|
23
|
+
Checkpoint is licensed under the BSD-3-Clause license. See [LICENSE.md](LICENSE.md).
|
data/Rakefile
CHANGED
@@ -1 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require "bundler/gem_tasks"
|
4
|
+
require "rspec/core/rake_task"
|
5
|
+
|
6
|
+
RSpec::Core::RakeTask.new(:spec)
|
7
|
+
|
8
|
+
load 'lib/tasks/migrate.rake'
|
9
|
+
|
10
|
+
task default: :spec
|
11
|
+
|
12
|
+
task :docs do
|
13
|
+
sh %( bin/yard )
|
14
|
+
sh %( cd docs && make html )
|
15
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "checkpoint"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
def init!
|
10
|
+
Checkpoint::DB.initialize!
|
11
|
+
Object.const_set(:DB, Checkpoint::DB.db)
|
12
|
+
end
|
13
|
+
|
14
|
+
require "pry"
|
15
|
+
Pry.start
|
16
|
+
|
17
|
+
# require "irb"
|
18
|
+
# IRB.start(__FILE__)
|
data/bin/rake
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'rake' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
12
|
+
load(bundle_binstub) if File.file?(bundle_binstub)
|
13
|
+
|
14
|
+
require "pathname"
|
15
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
16
|
+
Pathname.new(__FILE__).realpath)
|
17
|
+
|
18
|
+
require "rubygems"
|
19
|
+
require "bundler/setup"
|
20
|
+
|
21
|
+
load Gem.bin_path("rake", "rake")
|
data/bin/rspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'rspec' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
12
|
+
load(bundle_binstub) if File.file?(bundle_binstub)
|
13
|
+
|
14
|
+
require "pathname"
|
15
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
16
|
+
Pathname.new(__FILE__).realpath)
|
17
|
+
|
18
|
+
require "rubygems"
|
19
|
+
require "bundler/setup"
|
20
|
+
|
21
|
+
load Gem.bin_path("rspec-core", "rspec")
|
data/bin/sequel
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'sequel' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
12
|
+
load(bundle_binstub) if File.file?(bundle_binstub)
|
13
|
+
|
14
|
+
require "pathname"
|
15
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
16
|
+
Pathname.new(__FILE__).realpath)
|
17
|
+
|
18
|
+
require "rubygems"
|
19
|
+
require "bundler/setup"
|
20
|
+
|
21
|
+
load Gem.bin_path("sequel", "sequel")
|
data/bin/setup
ADDED
data/bin/yard
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'yard' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
12
|
+
load(bundle_binstub) if File.file?(bundle_binstub)
|
13
|
+
|
14
|
+
require "pathname"
|
15
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
16
|
+
Pathname.new(__FILE__).realpath)
|
17
|
+
|
18
|
+
require "rubygems"
|
19
|
+
require "bundler/setup"
|
20
|
+
|
21
|
+
load Gem.bin_path("yard", "yard")
|
data/bin/yardoc
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'yardoc' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
12
|
+
load(bundle_binstub) if File.file?(bundle_binstub)
|
13
|
+
|
14
|
+
require "pathname"
|
15
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
16
|
+
Pathname.new(__FILE__).realpath)
|
17
|
+
|
18
|
+
require "rubygems"
|
19
|
+
require "bundler/setup"
|
20
|
+
|
21
|
+
load Gem.bin_path("yard", "yardoc")
|
data/checkpoint.gemspec
CHANGED
@@ -1,25 +1,43 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path("../lib", __FILE__)
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
5
|
require "checkpoint/version"
|
4
6
|
|
5
|
-
Gem::Specification.new do |
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
7
|
+
Gem::Specification.new do |spec|
|
8
|
+
spec.name = "checkpoint"
|
9
|
+
spec.version = Checkpoint::VERSION
|
10
|
+
spec.authors = ["Noah Botimer"]
|
11
|
+
spec.email = ["botimer@umich.edu"]
|
12
|
+
spec.license = "BSD-3-Clause"
|
13
|
+
|
14
|
+
spec.summary = <<~SUMMARY
|
15
|
+
Checkpoint provides a model and infrastructure for policy-based authorization,
|
16
|
+
especially in Rails applications.
|
17
|
+
SUMMARY
|
18
|
+
|
19
|
+
spec.homepage = "https://github.com/mlibrary/checkpoint"
|
14
20
|
|
15
|
-
|
21
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
22
|
+
f.match(%r{^(test|spec|features)/})
|
23
|
+
end
|
24
|
+
spec.bindir = "exe"
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ["lib"]
|
16
27
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
s.require_paths = ["lib"]
|
28
|
+
spec.add_dependency "ettin", "~> 1.1"
|
29
|
+
spec.add_dependency "mysql2", "~> 0.4.10"
|
30
|
+
spec.add_dependency "sequel", "~> 5.6"
|
21
31
|
|
22
|
-
|
23
|
-
|
24
|
-
|
32
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
33
|
+
spec.add_development_dependency "coveralls", "~> 0.8"
|
34
|
+
spec.add_development_dependency "pry"
|
35
|
+
spec.add_development_dependency "pry-byebug"
|
36
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
37
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
38
|
+
spec.add_development_dependency "rubocop", "~> 0.52"
|
39
|
+
spec.add_development_dependency "rubocop-rails", "~> 1.1"
|
40
|
+
spec.add_development_dependency "rubocop-rspec", "~> 1.16"
|
41
|
+
spec.add_development_dependency "sqlite3", "~> 1.3"
|
42
|
+
spec.add_development_dependency "yard", "~> 0.9"
|
25
43
|
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Sequel.migration do
|
4
|
+
change do
|
5
|
+
create_table :permits do
|
6
|
+
primary_key :id
|
7
|
+
column :agent_type, String, size: 100, null: false
|
8
|
+
column :agent_id, String, size: 100, null: false
|
9
|
+
column :agent_token, String, size: 201, null: false
|
10
|
+
column :credential_type, String, size: 100, null: false
|
11
|
+
column :credential_id, String, size: 100, null: false
|
12
|
+
column :credential_token, String, size: 201, null: false
|
13
|
+
column :resource_type, String, size: 100, null: false
|
14
|
+
column :resource_id, String, size: 100, null: false
|
15
|
+
column :resource_token, String, size: 201, null: false
|
16
|
+
column :zone_id, String, size: 100, null: false
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
data/docs/Makefile
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# Minimal makefile for Sphinx documentation
|
2
|
+
#
|
3
|
+
|
4
|
+
# You can set these variables from the command line.
|
5
|
+
SPHINXOPTS =
|
6
|
+
SPHINXBUILD = sphinx-build
|
7
|
+
SPHINXPROJ = Checkpoint
|
8
|
+
AUTOBUILD = sphinx-autobuild
|
9
|
+
SOURCEDIR = .
|
10
|
+
BUILDDIR = _build
|
11
|
+
|
12
|
+
# Put it first so that "make" without argument is like "make help".
|
13
|
+
help:
|
14
|
+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
15
|
+
|
16
|
+
auto:
|
17
|
+
@$(AUTOBUILD) ${@:2} "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
18
|
+
|
19
|
+
.PHONY: auto help Makefile
|
20
|
+
|
21
|
+
# Catch-all target: route all unknown targets to Sphinx using the new
|
22
|
+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
23
|
+
%: Makefile
|
24
|
+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
File without changes
|
File without changes
|
@@ -0,0 +1,18 @@
|
|
1
|
+
Identity and Authentication
|
2
|
+
===========================
|
3
|
+
|
4
|
+
Users can be identified in any number of ways and carry with them various
|
5
|
+
attributes that determine the entirety of "who they are". Our typical needs
|
6
|
+
include identifying a person by username or email address, and building a
|
7
|
+
profile of attributes such as geographical region (as determined by IP address),
|
8
|
+
or University status (student, staff, etc.). The identifiers and attributes are
|
9
|
+
intrinsic to the user and do not, by themselves, grant any permissions within
|
10
|
+
an application. Likewise, these attributes cannot be granted within an
|
11
|
+
application, only inspected.
|
12
|
+
|
13
|
+
A&E will continue to provide the identity and attributes of users. The
|
14
|
+
specifics of whether this will be implemented with environment variables,
|
15
|
+
HTTP headers, SAML, or other means is to be determined. An application is
|
16
|
+
not expected to implement its own login process except to the degree that
|
17
|
+
it can recognize the required authentication information provided to it.
|
18
|
+
|
data/docs/conf.py
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
import guzzle_sphinx_theme
|
4
|
+
from recommonmark.parser import CommonMarkParser
|
5
|
+
|
6
|
+
# -- General configuration ------------------------------------------------
|
7
|
+
project = u'Checkpoint'
|
8
|
+
copyright = u'2017, Regents of the University of Michigan'
|
9
|
+
author = u'Noah Botimer'
|
10
|
+
version = u'0.1.0'
|
11
|
+
release = u'0.1.0'
|
12
|
+
|
13
|
+
|
14
|
+
extensions = ['guzzle_sphinx_theme']
|
15
|
+
templates_path = ['_templates']
|
16
|
+
master_doc = 'index'
|
17
|
+
|
18
|
+
source_parsers = {
|
19
|
+
'.md': CommonMarkParser,
|
20
|
+
}
|
21
|
+
source_suffix = ['.rst', '.md']
|
22
|
+
|
23
|
+
language = None
|
24
|
+
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
25
|
+
pygments_style = 'sphinx'
|
26
|
+
todo_include_todos = False
|
27
|
+
|
28
|
+
|
29
|
+
# -- Options for HTML output ----------------------------------------------
|
30
|
+
html_theme_path = guzzle_sphinx_theme.html_theme_path()
|
31
|
+
html_theme = 'guzzle_sphinx_theme'
|
32
|
+
html_static_path = ['_static']
|
33
|
+
|
34
|
+
# Guzzle theme options (see theme.conf for more information)
|
35
|
+
html_theme_options = {
|
36
|
+
"project_nav_name": "Checkpoint",
|
37
|
+
}
|
38
|
+
|
39
|
+
html_sidebars = {
|
40
|
+
'**': [
|
41
|
+
'logo-text.html',
|
42
|
+
'globaltoc.html',
|
43
|
+
'searchbox.html',
|
44
|
+
]
|
45
|
+
}
|
46
|
+
|