├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── config.rb ├── font-selection.json └── source ├── CNAME ├── fonts ├── slate.eot ├── slate.svg ├── slate.ttf ├── slate.woff └── slate.woff2 ├── images ├── Detailed Reporting Diagram.png ├── Reporting Diagram.png ├── architecture_hosted.png ├── architecture_hosted.svg ├── architecture_local.png ├── architecture_local.svg ├── fork_timeline.png ├── fork_timeline.svg ├── logo.png ├── navbar.png ├── reporting_cycle.png └── reporting_cycle.svg ├── includes ├── _apiOverview.md ├── _architecture.md ├── _callAPI.md ├── _constants.md ├── _contributing.md ├── _errors.md ├── _events.md ├── _glossary.md ├── _reporting.md ├── _rpc.md ├── _simplifiedAPI.md ├── _tests.md ├── _trading.md ├── _transactionAPI.md ├── _typeDefinitions.md └── _uiConventions.md ├── index.md ├── javascripts ├── all.js ├── all_nosearch.js ├── app │ ├── _lang.js │ ├── _search.js │ └── _toc.js └── lib │ ├── _energize.js │ ├── _jquery.highlight.js │ ├── _jquery.tocify.js │ ├── _jquery_ui.js │ └── _lunr.js ├── layouts └── layout.erb ├── stylesheets ├── _icon-font.scss ├── _normalize.css ├── _syntax.scss.erb ├── _variables.scss ├── print.css.scss └── screen.css.scss └── version2 ├── fonts ├── slate.eot ├── slate.svg ├── slate.ttf ├── slate.woff └── slate.woff2 ├── images ├── Detailed Reporting Diagram.png ├── Reporting Diagram.png ├── architecture_hosted.png ├── architecture_hosted.svg ├── architecture_local.png ├── architecture_local.svg ├── fork_timeline.png ├── fork_timeline.svg ├── logo.png ├── navbar.png ├── reporting_cycle.png └── reporting_cycle.svg ├── includes ├── _apiOverview.md ├── _architecture.md ├── _callAPI.md ├── _constants.md ├── _contributing.md ├── _errors.md ├── _events.md ├── _flash.md ├── _glossary.md ├── _reporting.md ├── _rpc.md ├── _simplifiedAPI.md ├── _tests.md ├── _trading.md ├── _transactionAPI.md ├── _typeDefinitions.md └── _uiConventions.md ├── index.md ├── javascripts ├── all.js ├── all_nosearch.js ├── app │ ├── _lang.js │ ├── _search.js │ └── _toc.js └── lib │ ├── _energize.js │ ├── _jquery.highlight.js │ ├── _jquery.tocify.js │ ├── _jquery_ui.js │ └── _lunr.js └── stylesheets ├── _icon-font.scss ├── _normalize.css ├── _syntax.scss.erb ├── _variables.scss ├── print.css.scss └── screen.css.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/Rakefile -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/config.rb -------------------------------------------------------------------------------- /font-selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/font-selection.json -------------------------------------------------------------------------------- /source/CNAME: -------------------------------------------------------------------------------- 1 | docs.augur.net 2 | -------------------------------------------------------------------------------- /source/fonts/slate.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/fonts/slate.eot -------------------------------------------------------------------------------- /source/fonts/slate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/fonts/slate.svg -------------------------------------------------------------------------------- /source/fonts/slate.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/fonts/slate.ttf -------------------------------------------------------------------------------- /source/fonts/slate.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/fonts/slate.woff -------------------------------------------------------------------------------- /source/fonts/slate.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/fonts/slate.woff2 -------------------------------------------------------------------------------- /source/images/Detailed Reporting Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/Detailed Reporting Diagram.png -------------------------------------------------------------------------------- /source/images/Reporting Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/Reporting Diagram.png -------------------------------------------------------------------------------- /source/images/architecture_hosted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/architecture_hosted.png -------------------------------------------------------------------------------- /source/images/architecture_hosted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/architecture_hosted.svg -------------------------------------------------------------------------------- /source/images/architecture_local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/architecture_local.png -------------------------------------------------------------------------------- /source/images/architecture_local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/architecture_local.svg -------------------------------------------------------------------------------- /source/images/fork_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/fork_timeline.png -------------------------------------------------------------------------------- /source/images/fork_timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/fork_timeline.svg -------------------------------------------------------------------------------- /source/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/logo.png -------------------------------------------------------------------------------- /source/images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/navbar.png -------------------------------------------------------------------------------- /source/images/reporting_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/reporting_cycle.png -------------------------------------------------------------------------------- /source/images/reporting_cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/images/reporting_cycle.svg -------------------------------------------------------------------------------- /source/includes/_apiOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_apiOverview.md -------------------------------------------------------------------------------- /source/includes/_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_architecture.md -------------------------------------------------------------------------------- /source/includes/_callAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_callAPI.md -------------------------------------------------------------------------------- /source/includes/_constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_constants.md -------------------------------------------------------------------------------- /source/includes/_contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_contributing.md -------------------------------------------------------------------------------- /source/includes/_errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_errors.md -------------------------------------------------------------------------------- /source/includes/_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_events.md -------------------------------------------------------------------------------- /source/includes/_glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_glossary.md -------------------------------------------------------------------------------- /source/includes/_reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_reporting.md -------------------------------------------------------------------------------- /source/includes/_rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_rpc.md -------------------------------------------------------------------------------- /source/includes/_simplifiedAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_simplifiedAPI.md -------------------------------------------------------------------------------- /source/includes/_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_tests.md -------------------------------------------------------------------------------- /source/includes/_trading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_trading.md -------------------------------------------------------------------------------- /source/includes/_transactionAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_transactionAPI.md -------------------------------------------------------------------------------- /source/includes/_typeDefinitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_typeDefinitions.md -------------------------------------------------------------------------------- /source/includes/_uiConventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/includes/_uiConventions.md -------------------------------------------------------------------------------- /source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/index.md -------------------------------------------------------------------------------- /source/javascripts/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/javascripts/all.js -------------------------------------------------------------------------------- /source/javascripts/all_nosearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/javascripts/all_nosearch.js -------------------------------------------------------------------------------- /source/javascripts/app/_lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/javascripts/app/_lang.js -------------------------------------------------------------------------------- /source/javascripts/app/_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/javascripts/app/_search.js -------------------------------------------------------------------------------- /source/javascripts/app/_toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/javascripts/app/_toc.js -------------------------------------------------------------------------------- /source/javascripts/lib/_energize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/javascripts/lib/_energize.js -------------------------------------------------------------------------------- /source/javascripts/lib/_jquery.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/javascripts/lib/_jquery.highlight.js -------------------------------------------------------------------------------- /source/javascripts/lib/_jquery.tocify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/javascripts/lib/_jquery.tocify.js -------------------------------------------------------------------------------- /source/javascripts/lib/_jquery_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/javascripts/lib/_jquery_ui.js -------------------------------------------------------------------------------- /source/javascripts/lib/_lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/javascripts/lib/_lunr.js -------------------------------------------------------------------------------- /source/layouts/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/layouts/layout.erb -------------------------------------------------------------------------------- /source/stylesheets/_icon-font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/stylesheets/_icon-font.scss -------------------------------------------------------------------------------- /source/stylesheets/_normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/stylesheets/_normalize.css -------------------------------------------------------------------------------- /source/stylesheets/_syntax.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/stylesheets/_syntax.scss.erb -------------------------------------------------------------------------------- /source/stylesheets/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/stylesheets/_variables.scss -------------------------------------------------------------------------------- /source/stylesheets/print.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/stylesheets/print.css.scss -------------------------------------------------------------------------------- /source/stylesheets/screen.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/stylesheets/screen.css.scss -------------------------------------------------------------------------------- /source/version2/fonts/slate.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/fonts/slate.eot -------------------------------------------------------------------------------- /source/version2/fonts/slate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/fonts/slate.svg -------------------------------------------------------------------------------- /source/version2/fonts/slate.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/fonts/slate.ttf -------------------------------------------------------------------------------- /source/version2/fonts/slate.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/fonts/slate.woff -------------------------------------------------------------------------------- /source/version2/fonts/slate.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/fonts/slate.woff2 -------------------------------------------------------------------------------- /source/version2/images/Detailed Reporting Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/Detailed Reporting Diagram.png -------------------------------------------------------------------------------- /source/version2/images/Reporting Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/Reporting Diagram.png -------------------------------------------------------------------------------- /source/version2/images/architecture_hosted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/architecture_hosted.png -------------------------------------------------------------------------------- /source/version2/images/architecture_hosted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/architecture_hosted.svg -------------------------------------------------------------------------------- /source/version2/images/architecture_local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/architecture_local.png -------------------------------------------------------------------------------- /source/version2/images/architecture_local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/architecture_local.svg -------------------------------------------------------------------------------- /source/version2/images/fork_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/fork_timeline.png -------------------------------------------------------------------------------- /source/version2/images/fork_timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/fork_timeline.svg -------------------------------------------------------------------------------- /source/version2/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/logo.png -------------------------------------------------------------------------------- /source/version2/images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/navbar.png -------------------------------------------------------------------------------- /source/version2/images/reporting_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/reporting_cycle.png -------------------------------------------------------------------------------- /source/version2/images/reporting_cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/images/reporting_cycle.svg -------------------------------------------------------------------------------- /source/version2/includes/_apiOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_apiOverview.md -------------------------------------------------------------------------------- /source/version2/includes/_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_architecture.md -------------------------------------------------------------------------------- /source/version2/includes/_callAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_callAPI.md -------------------------------------------------------------------------------- /source/version2/includes/_constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_constants.md -------------------------------------------------------------------------------- /source/version2/includes/_contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_contributing.md -------------------------------------------------------------------------------- /source/version2/includes/_errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_errors.md -------------------------------------------------------------------------------- /source/version2/includes/_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_events.md -------------------------------------------------------------------------------- /source/version2/includes/_flash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_flash.md -------------------------------------------------------------------------------- /source/version2/includes/_glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_glossary.md -------------------------------------------------------------------------------- /source/version2/includes/_reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_reporting.md -------------------------------------------------------------------------------- /source/version2/includes/_rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_rpc.md -------------------------------------------------------------------------------- /source/version2/includes/_simplifiedAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_simplifiedAPI.md -------------------------------------------------------------------------------- /source/version2/includes/_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_tests.md -------------------------------------------------------------------------------- /source/version2/includes/_trading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_trading.md -------------------------------------------------------------------------------- /source/version2/includes/_transactionAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_transactionAPI.md -------------------------------------------------------------------------------- /source/version2/includes/_typeDefinitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_typeDefinitions.md -------------------------------------------------------------------------------- /source/version2/includes/_uiConventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/includes/_uiConventions.md -------------------------------------------------------------------------------- /source/version2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/index.md -------------------------------------------------------------------------------- /source/version2/javascripts/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/javascripts/all.js -------------------------------------------------------------------------------- /source/version2/javascripts/all_nosearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/javascripts/all_nosearch.js -------------------------------------------------------------------------------- /source/version2/javascripts/app/_lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/javascripts/app/_lang.js -------------------------------------------------------------------------------- /source/version2/javascripts/app/_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/javascripts/app/_search.js -------------------------------------------------------------------------------- /source/version2/javascripts/app/_toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/javascripts/app/_toc.js -------------------------------------------------------------------------------- /source/version2/javascripts/lib/_energize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/javascripts/lib/_energize.js -------------------------------------------------------------------------------- /source/version2/javascripts/lib/_jquery.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/javascripts/lib/_jquery.highlight.js -------------------------------------------------------------------------------- /source/version2/javascripts/lib/_jquery.tocify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/javascripts/lib/_jquery.tocify.js -------------------------------------------------------------------------------- /source/version2/javascripts/lib/_jquery_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/javascripts/lib/_jquery_ui.js -------------------------------------------------------------------------------- /source/version2/javascripts/lib/_lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/javascripts/lib/_lunr.js -------------------------------------------------------------------------------- /source/version2/stylesheets/_icon-font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/stylesheets/_icon-font.scss -------------------------------------------------------------------------------- /source/version2/stylesheets/_normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/stylesheets/_normalize.css -------------------------------------------------------------------------------- /source/version2/stylesheets/_syntax.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/stylesheets/_syntax.scss.erb -------------------------------------------------------------------------------- /source/version2/stylesheets/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/stylesheets/_variables.scss -------------------------------------------------------------------------------- /source/version2/stylesheets/print.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/stylesheets/print.css.scss -------------------------------------------------------------------------------- /source/version2/stylesheets/screen.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AugurProject/v1-docs/HEAD/source/version2/stylesheets/screen.css.scss --------------------------------------------------------------------------------