From fde800b4ec8024a22488305f33102aac3f4bdf0a Mon Sep 17 00:00:00 2001 From: dat-adi Date: Wed, 12 Jan 2022 12:59:34 +0530 Subject: [PATCH] Updated changelog content --- docs/zola/content/getting-started/events.md | 22 ++ docs/zola/content/services/interface.md | 15 +- docs/zola/content/services/northstar.md | 13 +- docs/zola/content/solder/november2020.md | 11 - .../content/{solder => updates}/_index.md | 2 +- docs/zola/content/updates/november2020.md | 30 ++ .../{solder => updates}/october2020.md | 0 .../{solder => updates}/september2020.md | 0 docs/zola/public/404.html | 3 - docs/zola/public/elasticlunr.min.js | 10 - docs/zola/public/fabric-icons-inline.css | 1 - docs/zola/public/getting-started/index.html | 43 --- .../public/getting-started/intro/index.html | 203 ------------ .../getting-started/services/index.html | 220 ------------- docs/zola/public/index.html | 209 ------------- docs/zola/public/js.js | 295 ------------------ docs/zola/public/logo.svg | 1 - docs/zola/public/main.css | 1 - docs/zola/public/robots.txt | 3 - docs/zola/public/search_index.en.js | 1 - docs/zola/public/services/index.html | 43 --- .../zola/public/services/interface/index.html | 191 ------------ .../zola/public/services/northstar/index.html | 191 ------------ docs/zola/public/sitemap.xml | 36 --- docs/zola/public/solder/index.html | 43 --- .../public/solder/november2020/index.html | 194 ------------ .../zola/public/solder/october2020/index.html | 218 ------------- .../public/solder/september2020/index.html | 197 ------------ 28 files changed, 79 insertions(+), 2117 deletions(-) create mode 100644 docs/zola/content/getting-started/events.md delete mode 100644 docs/zola/content/solder/november2020.md rename docs/zola/content/{solder => updates}/_index.md (67%) create mode 100644 docs/zola/content/updates/november2020.md rename docs/zola/content/{solder => updates}/october2020.md (100%) rename docs/zola/content/{solder => updates}/september2020.md (100%) delete mode 100644 docs/zola/public/404.html delete mode 100644 docs/zola/public/elasticlunr.min.js delete mode 100644 docs/zola/public/fabric-icons-inline.css delete mode 100644 docs/zola/public/getting-started/index.html delete mode 100644 docs/zola/public/getting-started/intro/index.html delete mode 100644 docs/zola/public/getting-started/services/index.html delete mode 100644 docs/zola/public/index.html delete mode 100644 docs/zola/public/js.js delete mode 100644 docs/zola/public/logo.svg delete mode 100644 docs/zola/public/main.css delete mode 100644 docs/zola/public/robots.txt delete mode 100644 docs/zola/public/search_index.en.js delete mode 100644 docs/zola/public/services/index.html delete mode 100644 docs/zola/public/services/interface/index.html delete mode 100644 docs/zola/public/services/northstar/index.html delete mode 100644 docs/zola/public/sitemap.xml delete mode 100644 docs/zola/public/solder/index.html delete mode 100644 docs/zola/public/solder/november2020/index.html delete mode 100644 docs/zola/public/solder/october2020/index.html delete mode 100644 docs/zola/public/solder/september2020/index.html diff --git a/docs/zola/content/getting-started/events.md b/docs/zola/content/getting-started/events.md new file mode 100644 index 0000000..297b32b --- /dev/null +++ b/docs/zola/content/getting-started/events.md @@ -0,0 +1,22 @@ ++++ +title = "Events" +weight = 40 ++++ + +# Events + +Events are those operations that are performed on the Forge side, +such as Pull Requests, and Issues. + +These events are operations of their own, and are handled within Interface +through Notifications. + +The flow of processing an operation in the forge is done as follows, + +1. We poll for Notifications through the [Job Runner](https://github.com/forgeflux-org/interface/blob/master/interface/runner/runner.py). +2. Proceed to send over this Notification to the Events Endpoint, where the Notification is parsed, and processed. +3. After identification, it is converted into a event, PR or Issue. + +## References + +- Events Endpoint :: [Info](https://github.com/forgeflux-org/interface/blob/master/interface/runner/events.py) diff --git a/docs/zola/content/services/interface.md b/docs/zola/content/services/interface.md index 006eb2f..73513c4 100644 --- a/docs/zola/content/services/interface.md +++ b/docs/zola/content/services/interface.md @@ -4,4 +4,17 @@ weight = 40 +++ # Interface -This page is under construction. Please come back later. + +Interface is a service that acts as a connecting end of the bridge, listening +in for Notifications from a particular forge repository. + +These notifications, which may be in the form of a Comment, Issue, or Pull Request, +are then further defined into [Events](@/getting-started/events.md) to create +a workable unit set, that the interface can use to translate operations from +one forge to another forge. + +The procedure of the Notification-Event Translation System, works as follows, + +1. Upon creation of the Interface, and set up of a forge repository to look for, the interface subscribes to the forge's notifications. +2. Every notification received by the interface from the forges, is then identified and translated into it's respective `Event` model, be it an Issue or PR. +3. Upon conversion into the respective model, Interface processes these `Events`, and converts them into the model required for the destination forge. diff --git a/docs/zola/content/services/northstar.md b/docs/zola/content/services/northstar.md index b3a790e..49ab55a 100644 --- a/docs/zola/content/services/northstar.md +++ b/docs/zola/content/services/northstar.md @@ -4,4 +4,15 @@ weight = 40 +++ # Northstar -This page is under construction. Please come back later. + +Northstar is a lookup service, which acts as a source of information +for interfaces which hold particular forge information. + +An [Interface](@/services/interface.md) connects and looks +through an instance of Northstar, to find the appropriate the forge +information that it seeks. + +An instance of Northstar has the functionality to act as an API to +register and provide forge information. +These routes/payloads are covered in the [OpenAPI specification](https://northstar.forgeflux.org/docs/openapi/) +for Northstar. diff --git a/docs/zola/content/solder/november2020.md b/docs/zola/content/solder/november2020.md deleted file mode 100644 index 082eb9e..0000000 --- a/docs/zola/content/solder/november2020.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -title = "November 2020" -weight = 40 -+++ - -# November 2020 -Errors were modularized at the back of [Northstar](https://github.com/forgeflux-org/northstar/). -A Docker CI was set up for the Northstar builds. - -A [GitHub organization](https://github.com/forgeflux-org) was created for ForgeFedv2, and the repositories for the projects were -transferred over to it. diff --git a/docs/zola/content/solder/_index.md b/docs/zola/content/updates/_index.md similarity index 67% rename from docs/zola/content/solder/_index.md rename to docs/zola/content/updates/_index.md index 5125cc6..ca1ebad 100644 --- a/docs/zola/content/solder/_index.md +++ b/docs/zola/content/updates/_index.md @@ -1,5 +1,5 @@ +++ -title = "Solder" +title = "Updates" weight = 1 sort_by = "weight" +++ diff --git a/docs/zola/content/updates/november2020.md b/docs/zola/content/updates/november2020.md new file mode 100644 index 0000000..a167913 --- /dev/null +++ b/docs/zola/content/updates/november2020.md @@ -0,0 +1,30 @@ ++++ +title = "November 2020" +weight = 40 ++++ + +# November 2020 + +Errors were modularized at the back of [Northstar](https://github.com/forgeflux-org/northstar/). +A Docker CI was set up for the Northstar builds. + +A [GitHub organization](https://github.com/forgeflux-org) was created for ForgeFedv2, and the repositories for the projects were +transferred over to it. + +A majority of the development on Interface was done during this time. + +A Notification-Event Translation Mechanism was set up. + +1. Northstar functionality was integrated into Interface, and tests were set up to ensure that it could be contacted through Interface's methods. +2. A locking mechanism was set up for concurrent operations on Git utilizing [Sled](https://sled.rs/). +3. Implementations of a basic job runner was set up to mimic retrieving requests from Forges, through periodically retrieving notifications. +4. The endpoints for notifications was subsequently set up, and responses to these Notifications were termed as [events](@/getting-started/events.md). +5. The endpoints for processing these events were then created. + +Shifted over the configuration management to [Dynaconf](https://www.dynaconf.com/). + +## References + +- Integration with Northstar :: [Info](https://github.com/forgeflux-org/interface/commit/0c9d8bdff05e668d77a85fdfc89b37abe1ac86cb) +- Locking Mechanism with Sled :: [Info](https://github.com/forgeflux-org/interface/commit/d3e7c81c95d87b612ebb9562cac31d371fe8629e) +- Defining Events :: [Info](https://github.com/forgeflux-org/interface/commit/30547b783578a7a9548aca55b3b7c932ed8130e6) diff --git a/docs/zola/content/solder/october2020.md b/docs/zola/content/updates/october2020.md similarity index 100% rename from docs/zola/content/solder/october2020.md rename to docs/zola/content/updates/october2020.md diff --git a/docs/zola/content/solder/september2020.md b/docs/zola/content/updates/september2020.md similarity index 100% rename from docs/zola/content/solder/september2020.md rename to docs/zola/content/updates/september2020.md diff --git a/docs/zola/public/404.html b/docs/zola/public/404.html deleted file mode 100644 index f8414f0..0000000 --- a/docs/zola/public/404.html +++ /dev/null @@ -1,3 +0,0 @@ - -404 Not Found -

404 Not Found

diff --git a/docs/zola/public/elasticlunr.min.js b/docs/zola/public/elasticlunr.min.js deleted file mode 100644 index 79dad65..0000000 --- a/docs/zola/public/elasticlunr.min.js +++ /dev/null @@ -1,10 +0,0 @@ -/** - * elasticlunr - http://weixsong.github.io - * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.6 - * - * Copyright (C) 2017 Oliver Nightingale - * Copyright (C) 2017 Wei Song - * MIT Licensed - * @license - */ -!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o - - Zola - - -
-

Welcome to Zola!

-

- You're seeing this page because we couldn't find a template to render. -

-

- To modify this page, create a section.html file in the templates directory or - install a theme. -
- You can find what variables are available in this template in the documentation. -

-
- - - - diff --git a/docs/zola/public/getting-started/intro/index.html b/docs/zola/public/getting-started/intro/index.html deleted file mode 100644 index 0ee04f9..0000000 --- a/docs/zola/public/getting-started/intro/index.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - Docs | How does it work? - - - - - - -
- - - - - - -
- - -
- -
-
- -
-
-
    -
    -
    - - -
    - -

    How does it work?

    -

    Interfaces are services that are run on the side of any user, and are used as connecting points of the bridge. -These interfaces are responsible for communicating with each other, and interact in the form of messages for a server-server model, and a REST API model for the server-user model.

    -

    Interfaces are geared towards performing various operations for the repository, which include but are not limited to,

    -
      -
    • Pull Requests
    • -
    • Issues
    • -
    • Comments
    • -
    • Notifications
    • -
    • Forking
    • -
    -

    However, as the count for interfaces go up in magnitudes, it becomes increasingly hard to keep track of them. -This is where Northstar comes to play, by implementing a lookup server that seeks to provide an indexed list of available forge interfaces.

    -

    ForgeFlux is currently in the Active Development phase, and is being worked on towards the alpha-testing stage.

    - - -
    - -
    -
    - - - - - - - - - diff --git a/docs/zola/public/getting-started/services/index.html b/docs/zola/public/getting-started/services/index.html deleted file mode 100644 index f3b1881..0000000 --- a/docs/zola/public/getting-started/services/index.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - - - - Docs | Services - - - - - - -
    - - - - - - -
    - - -
    - -
    -
    - -
    -
    -
      -
      -
      - - -
      - -

      Services

      -

      The services that are currently in active development are Northstar, and Interface. -However, here's a few more details about them.

      -

      Northstar

      - -

      ForgeFlux allows for multiple interfaces to be run against a single software forge. -Also, the protocol is flexible enough to support multiple types of software forges(GitLab, GitHub, etc). -The protocol's decentralised nature makes it impossible to create a constant record of which interfaces service forges.

      -

      So we created a discovery service which stores records of interfaces and the forges they service. -This is very similar to the way DNS works. -In DNS, hostname is resolved to IP address.

      -

      Here, software forge URL is resolved to URLs of interfaces that service the queried forge.

      -

      For an extensive view on Northstar, please check Northstar::Detailed

      -

      Interface

      - -

      Developing Free Software is about liberating users and giving them total control over how the programs they run should work. -It's only fair that developers of such software enjoy the same levels of liberty.

      -

      ForgeFlux is an attempt to enable federation for major software forges (GitLab, GitHub, Gitea, Source Hut, etc) entirely in API-space. -We believe our API-space implementation will allow for more organic growth as it will not require any involvement from the forge developers.

      - - -
      - -
      -
      - - - - - - - - - diff --git a/docs/zola/public/index.html b/docs/zola/public/index.html deleted file mode 100644 index 969814d..0000000 --- a/docs/zola/public/index.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - - - Docs - - - - - - -
      - - - - - - -
      - - -
      - -
      -
      - -
      -
      -
        -
        -
        - - -
        - -

        ForgeFlux 

        -

        ForgeFlux aims to implement federation in software forges , enabling -a decentralized development environment.

        -

        Why is this significant? 

        -

        There have been numerous forges that have popped -up over the course of time. -Each of these forges have their own community base, -and projects that are associated to the forge itself.

        -

        However, issues arise when a user wishes to contribute towards -a project that exists in another forge. -This would require them to charter into unknown forge territory, -to have to relearn the functionality that they're already at home with.

        -

        ForgeFlux, is an idea, that intends to get rid this problem. -Work on your own forge, but bridge the project.

        -

        Bridging a project would allow for a user to contribute towards projects that -exist in foreign forges, through the comfort of their own forge.

        -

        Has this been done before? 

        -

        The initial forgefed was -an attempt to bridge this gap, by introducing the concept -of bridging the gap between forges. -This approach required for the forge developers to actively -participate in the development of the software.

        -

        The present ForgeFlux, focuses on the implementation being present -in the API space instead. -This reduces the interference required on the side of the forges themselves, -and seeks to develop on existing utility and APIs provided.

        -

        ForgeFlux, consists of a terminology for the development and -utilization of it's software, which result in terms such as forges, -and interfaces being tossed around. -It is recommended for a reader to go through the ecosystem-architecture, if there is any confusion regarding the usage of particular words in this documentation.

        - - -
        - -
        -
        - - - - - - - - - diff --git a/docs/zola/public/js.js b/docs/zola/public/js.js deleted file mode 100644 index 4769a10..0000000 --- a/docs/zola/public/js.js +++ /dev/null @@ -1,295 +0,0 @@ -// search script, borrowed from book theme - -function debounce(func, wait) { - var timeout; - - return function () { - var context = this; - var args = arguments; - clearTimeout(timeout); - - timeout = setTimeout(function () { - timeout = null; - func.apply(context, args); - }, wait); - }; - } - - // Taken from mdbook - // The strategy is as follows: - // First, assign a value to each word in the document: - // Words that correspond to search terms (stemmer aware): 40 - // Normal words: 2 - // First word in a sentence: 8 - // Then use a sliding window with a constant number of words and count the - // sum of the values of the words within the window. Then use the window that got the - // maximum sum. If there are multiple maximas, then get the last one. - // Enclose the terms in . - function makeTeaser(body, terms) { - var TERM_WEIGHT = 40; - var NORMAL_WORD_WEIGHT = 2; - var FIRST_WORD_WEIGHT = 8; - var TEASER_MAX_WORDS = 30; - - var stemmedTerms = terms.map(function (w) { - return elasticlunr.stemmer(w.toLowerCase()); - }); - var termFound = false; - var index = 0; - var weighted = []; // contains elements of ["word", weight, index_in_document] - - // split in sentences, then words - var sentences = body.toLowerCase().split(". "); - - for (var i in sentences) { - var words = sentences[i].split(" "); - var value = FIRST_WORD_WEIGHT; - - for (var j in words) { - var word = words[j]; - - if (word.length > 0) { - for (var k in stemmedTerms) { - if (elasticlunr.stemmer(word).startsWith(stemmedTerms[k])) { - value = TERM_WEIGHT; - termFound = true; - } - } - weighted.push([word, value, index]); - value = NORMAL_WORD_WEIGHT; - } - - index += word.length; - index += 1; // ' ' or '.' if last word in sentence - } - - index += 1; // because we split at a two-char boundary '. ' - } - - if (weighted.length === 0) { - return body; - } - - var windowWeights = []; - var windowSize = Math.min(weighted.length, TEASER_MAX_WORDS); - // We add a window with all the weights first - var curSum = 0; - for (var i = 0; i < windowSize; i++) { - curSum += weighted[i][1]; - } - windowWeights.push(curSum); - - for (var i = 0; i < weighted.length - windowSize; i++) { - curSum -= weighted[i][1]; - curSum += weighted[i + windowSize][1]; - windowWeights.push(curSum); - } - - // If we didn't find the term, just pick the first window - var maxSumIndex = 0; - if (termFound) { - var maxFound = 0; - // backwards - for (var i = windowWeights.length - 1; i >= 0; i--) { - if (windowWeights[i] > maxFound) { - maxFound = windowWeights[i]; - maxSumIndex = i; - } - } - } - - var teaser = []; - var startIndex = weighted[maxSumIndex][2]; - for (var i = maxSumIndex; i < maxSumIndex + windowSize; i++) { - var word = weighted[i]; - if (startIndex < word[2]) { - // missing text from index to start of `word` - teaser.push(body.substring(startIndex, word[2])); - startIndex = word[2]; - } - - // add around search terms - if (word[1] === TERM_WEIGHT) { - teaser.push(""); - } - startIndex = word[2] + word[0].length; - teaser.push(body.substring(word[2], startIndex)); - - if (word[1] === TERM_WEIGHT) { - teaser.push(""); - } - } - teaser.push("…"); - return teaser.join(""); - } - - function formatSearchResultItem(item, terms) { - var li = document.createElement("li"); - li.classList.add("search-results__item"); - li.innerHTML = `${item.doc.title}`; - li.innerHTML += `
        ${makeTeaser(item.doc.body, terms)}
        `; - return li; - } - - // Go from the book view to the search view - function toggleSearchMode() { - var $wrapContent = document.querySelector("#wrap"); - var $searchIcon = document.querySelector("#search-ico"); - var $searchContainer = document.querySelector(".search-container"); - if ($searchContainer.classList.contains("search-container--is-visible")) { - $searchContainer.classList.remove("search-container--is-visible"); - $wrapContent.style.display = ""; - $searchIcon.className = "ms-Icon--Search"; - } else { - $searchContainer.classList.add("search-container--is-visible"); - $wrapContent.style.display = "none"; - $searchIcon.className = "ms-Icon--ChromeClose"; - document.getElementById("search").focus(); - } - } - - function initSearch() { - var $searchInput = document.getElementById("search"); - if (!$searchInput) { - return; - } - var $searchIcon = document.querySelector("#search-ico"); - $searchIcon.addEventListener("click", toggleSearchMode); - - var $searchResults = document.querySelector(".search-results"); - var $searchResultsHeader = document.querySelector(".search-results__header"); - var $searchResultsItems = document.querySelector(".search-results__items"); - var MAX_ITEMS = 100; - - var options = { - bool: "AND", - fields: { - title: {boost: 2}, - body: {boost: 1}, - } - }; - var currentTerm = ""; - var index = elasticlunr.Index.load(window.searchIndex); - - $searchInput.addEventListener("keyup", debounce(function() { - var term = $searchInput.value.trim(); - if (term === currentTerm || !index) { - return; - } - $searchResults.style.display = term === "" ? "none" : "block"; - $searchResultsItems.innerHTML = ""; - if (term === "") { - return; - } - - var results = index.search(term, options).filter(function (r) { - return r.doc.body !== ""; - }); - if (results.length === 0) { - $searchResultsHeader.innerText = `Nothing like «${term}»`; - return; - } - - currentTerm = term; - $searchResultsHeader.innerText = `${results.length} found for «${term}»:`; - for (var i = 0; i < Math.min(results.length, MAX_ITEMS); i++) { - if (!results[i].doc.body) { - continue; - } - // var item = document.createElement("li"); - // item.innerHTML = formatSearchResultItem(results[i], term.split(" ")); - console.log(results[i]); - $searchResultsItems.appendChild(formatSearchResultItem(results[i], term.split(" "))); - } - }, 150)); - } - - if (document.readyState === "complete" || - (document.readyState !== "loading" && !document.documentElement.doScroll) - ) { - initSearch(); - } else { - document.addEventListener("DOMContentLoaded", initSearch); - } - -// mobile - - function burger() { - let x = document.querySelector("#trees"); - let y = document.querySelector("#mobile"); - - if (x.style.display === "block") { - x.style.display = "none"; - y.className = "ms-Icon--GlobalNavButton"; - } else { - x.style.display = "block"; - y.className = "ms-Icon--ChromeClose"; - } - } - -// https://aaronluna.dev/blog/add-copy-button-to-code-blocks-hugo-chroma/ - -function createCopyButton(highlightDiv) { - const button = document.createElement("button"); - button.className = "copy-code-button "; - button.type = "button"; - button.innerHTML = ""; - button.addEventListener("click", () => - copyCodeToClipboard(button, highlightDiv) - ); - addCopyButtonToDom(button, highlightDiv); -} - -async function copyCodeToClipboard(button, highlightDiv) { - const codeToCopy = highlightDiv.querySelector(":last-child > code") - .innerText; - try { - result = await navigator.permissions.query({ name: "clipboard-write" }); - if (result.state == "granted" || result.state == "prompt") { - await navigator.clipboard.writeText(codeToCopy); - } else { - copyCodeBlockExecCommand(codeToCopy, highlightDiv); - } - } catch (_) { - copyCodeBlockExecCommand(codeToCopy, highlightDiv); - } finally { - codeWasCopied(button); - } -} - -function copyCodeBlockExecCommand(codeToCopy, highlightDiv) { - const textArea = document.createElement("textArea"); - textArea.contentEditable = "true"; - textArea.readOnly = "false"; - textArea.className = "copyable-text-area"; - textArea.value = codeToCopy; - highlightDiv.insertBefore(textArea, highlightDiv.firstChild); - const range = document.createRange(); - range.selectNodeContents(textArea); - const sel = window.getSelection(); - sel.removeAllRanges(); - sel.addRange(range); - textArea.setSelectionRange(0, 999999); - document.execCommand("copy"); - highlightDiv.removeChild(textArea); -} - -function codeWasCopied(button) { - button.blur(); - button.innerHTML = ""; - setTimeout(function () { - button.innerHTML = ""; - }, 2000); -} - -function addCopyButtonToDom(button, highlightDiv) { - highlightDiv.insertBefore(button, highlightDiv.firstChild); - const wrapper = document.createElement("div"); - wrapper.className = "highlight-wrapper"; - highlightDiv.parentNode.insertBefore(wrapper, highlightDiv); - wrapper.appendChild(highlightDiv); -} - -document - .querySelectorAll("pre") - .forEach((highlightDiv) => createCopyButton(highlightDiv)); diff --git a/docs/zola/public/logo.svg b/docs/zola/public/logo.svg deleted file mode 100644 index 5d7d965..0000000 --- a/docs/zola/public/logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/zola/public/main.css b/docs/zola/public/main.css deleted file mode 100644 index 03b4b3c..0000000 --- a/docs/zola/public/main.css +++ /dev/null @@ -1 +0,0 @@ -html{font-kerning:normal;text-rendering:optimizeLegibility;scroll-behavior:smooth}body{margin:1.5rem 0;font-size:1.125rem;font-family:Segoe UI,system-ui,-apple-system,sans-serif;line-height:1.75;background:#f9f9f9;color:#222}@keyframes fade-in{0%{opacity:0}50%{opacity:0.8}100%{opacity:1}}a:link{color:blue;text-decoration:none}a:hover{color:#c00}a:visited{color:#009}h2 .anchor,h3 .anchor,h4 .anchor{visibility:hidden;text-decoration:none;cursor:pointer;line-height:1;color:#222}h2:hover .anchor,h3:hover .anchor,h4:hover .anchor{visibility:visible;animation:fade-in 0.3s ease-in-out;font-family:'FabricMDL2Icons'}pre{margin:1.5rem 0;border-radius:4px;padding:1.5rem;overflow:auto;position:relative}pre code{background:transparent}pre code::after{content:attr(data-lang);font-style:italic;line-height:1;opacity:0.3;position:absolute;bottom:1.5rem;right:1.5rem;z-index:1}code{font:400 1.125rem/1.75 SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace}.copy-code-button{font-family:'FabricMDL2Icons';display:none;background:#f9f9f9;border-radius:4px;border:none;cursor:pointer;animation:fade-in 0.3s ease-in-out;font-size:1.5rem;color:#222;z-index:10;position:absolute;top:1.5rem;right:1.5rem}pre:hover .copy-code-button{display:block}nav{position:sticky;height:92vh;top:1.5rem;left:1.5rem;bottom:1.5rem;padding-right:1.5rem;width:20rem}nav img{width:128px}nav h1{margin:0;line-height:1}#toc{margin-left:calc(1.5rem + 1.125rem);padding:0;margin:0 0 0 1.5rem;font-size:80%}#toc li{color:#222;margin-left:1.125rem}#toc li::before{display:inline-block;content:""}#toc li ul{padding:0}main{display:flex;flex-flow:row nowrap;animation:fade-in 0.4s ease-in-out}#release{text-align:left;margin:1.5rem 0}#release::before{display:inline-block;content:"\EE2E";font-family:'FabricMDL2Icons';margin-right:calc(1.5rem / 8)}@keyframes slideIn{0%{max-height:0;opacity:0}100%{max-height:999px;opacity:1}}@keyframes slideOut{0%{height:auto;opacity:1}100%{height:0;opacity:0}}nav label{display:block}#trees{overflow-y:auto;height:80%}.subtree{overflow:hidden;margin:calc(1.5rem / 8) 0;transition:overflow 0.2s ease-in-out;padding:0}.tree-toggle-label{user-select:none;cursor:pointer}.tree-toggle-label::before{display:inline-block;content:"\E970";font-family:'FabricMDL2Icons';font-size:.75rem;transform:rotate(0deg);transform-origin:50% 50% 0px;transition:transform 0.1s linear 0s;margin-right:2px}.tree-toggle{position:absolute;opacity:0;z-index:-1}.tree-toggle:checked+.tree-toggle-label::before{content:"\E970";font-family:'FabricMDL2Icons';font-size:.75rem;transform:rotate(90deg);transform-origin:50% 50% 0px;transition:transform 0.1s linear 0s;margin-right:2px}.tree-toggle:checked+.tree-toggle-label{font-weight:bold}.tree-toggle+.tree-toggle-label+.subtree{animation-name:slideOut;animation-duration:0.25s;animation-fill-mode:both}.tree-toggle:checked+.tree-toggle-label+.subtree{animation-name:slideIn;animation-duration:0.25s;animation-fill-mode:both}.subtree li{list-style-type:none;margin-left:1.5rem}.subtree li a{color:#222}.subtree li::before{content:"\E7C3";font-family:'FabricMDL2Icons';font-size:0.75rem}.active a{font-weight:bold}article{width:calc(100% - (1.5rem * 4 + 20rem));margin-left:calc(1.5rem * 2)}article img{max-width:100%}#mobile{display:none}@media screen and (max-width: 1023px){main{flex-flow:column nowrap;width:100%}nav{position:inherit;height:auto;margin:1.5rem 1.5rem 0 1.5rem}article{width:calc(100% - (1.5rem * 2));margin:0 1.5rem;z-index:1}#mobile{font-family:'FabricMDL2Icons';cursor:pointer;font-size:1.5rem;margin:0 1.5rem 0 0;display:block;color:#222}#trees{display:none;position:absolute;background:#f9f9f9;height:auto;width:100vw;z-index:10;box-shadow:0 2px 0 rgba(0,0,0,0.1)}#on_right{margin-top:1.5rem}}@font-face{font-family:'FabricMDL2Icons';src:url("data:application/octet-stream;base64,d09GRgABAAAAAAusAA4AAAAAFLgABDXDAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEgAAABgMUZ1H2NtYXAAAAGMAAAAWgAAAYKg2Y81Y3Z0IAAAAegAAAAgAAAAKgnZCa9mcGdtAAACCAAAAPAAAAFZ/J7mjmdhc3AAAAL4AAAADAAAAAwACAAbZ2x5ZgAAAwQAAANyAAAEuLnx29VoZWFkAAAGeAAAADIAAAA2A3zu4GhoZWEAAAasAAAAFQAAACQQAQgDaG10eAAABsQAAAAYAAAAGA+HAaZsb2NhAAAG3AAAABYAAAAWBoYE+m1heHAAAAb0AAAAHQAAACAAJAHEbmFtZQAABxQAAAP3AAAJ+o6N8lFwb3N0AAALDAAAABQAAAAg/1EAgXByZXAAAAsgAAAAiQAAANN4vfIOeJxjYGHfzjiBgZWBgXUWqzEDA6M0hGa+yJDGJMTBysrFyMQIBgxAIMCAAL7BCgoMDs8Z3ulxgPkQkgGsjgXCU2BgAADc3QgGeJxjYGBgZoBgGQZGBhCoAfIYwXwWhgQgLcIgABRhec7wXPG50XO/54df7H5x4mXBO73//xkYsIlKMko8lLgqsVXCUdxL3E5shuBtqMkYgJENu/hIAgCdyyInAAB4nGPQYghlKGBoYFjFyMDYwOzAeIDBAYsIEAAAqhwHlXicXY+/TsNADMZzJLSEJ0A6IZ11KkOViJ3phksk1CUlDOelgNRKpO+AlIXFA8/ibhnzYgjMEf4utr/P+ny/c6f5yXx2nKVHKilWnDfhoNQLDurtmf35IU/vNmVhTNV5VvdlwWoJomtOF/VNsGjI0PWWTG0eH7acLWKXxY7w0nDShk7qbQB2qL/HHeJVPJLFI4QS30/xfYxL+rUsVobTiyasA/des/OoAUzFYxN49BoQf8ikP3VnE+NsOWXbwE5zgkSfygL3RJqE+0uPf/Wgkv+G+23Iv6tB9U3c9Bb0h2HBgrChl2fbUAkaYPkOhPxkxgABAAIACAAK//8AD3icXVNNaBtXEJ55b1dPsl0165UqUOJ1dze7mx+quFrJilwQwgQ3P8UpOGCKUhNfSnrqJb/Q4BcoGAr9CfSUGHpyLr2VJCT0klsv7SVXQ29uySmJCbQr7646byWnpjvsm583b+bNN/OAwX0A7Sv9GnAQAC3DNjzbsO/zP+JH7FFyFvRr/a9/0BaBPg6AMg85OgAFKMJR+CWzctCOPwY48ATegtzrJzAGnNZ8Juskz7yPdtMuG2+WPPwD//26lDIGKRmurQFTifJE4EKL8tUtrVwqaq7jB5ijtdloYQ2bjY5m1jus2agx1ymycslienf1wcbti/X6xdsbD1ZvbV+KX5jVqm/yA+cvDG3Xn230ehvPro94Hobm4bEL5+OXpl+tmty4tH1raNuFfe4Zp8olSEFE9U9CFYLsjozqCoxGh4VI4NEfEtnoEpquUSHRsAUcrLmlaHu75NYOIsWJCbeESkfJQO6CvPsZJ1lItR/JP/W7yj8BJndlKhEGhHtCR/r37jFIYdgPCdS0vOqHIOwBVSLTLmTcEBBJreehl26hTCGW+lbfy9NZ9KKeTkhHFAPf4D0OUEBRwKCArQJWtDv8izsxEfFsIZUuvV+NlQtAhgkImgwKMw4GVEY3IQRCMww8ewSKQoEqTYH3UEpvczOWzBtAQppGNSZSA21r10OZIy2Vm1sIfckIlL5Us6fCMwnvwTn4fIR6qchc26mxwC7yTGiqHti0VbE7PEQakVY2NLMfYE15DEeFPEazoywirL9TLuWOo8XD3NP5K8thuHxlfgDty0tzE+nribmly+0BzF9drteXr87j0I4TmT2WVnvm8NjDqu9XH44dnmlbAziy0LCsxsIRXe5JA/i/F5Mqh4rpn1o5eXLllK9iq9x7egqTzokpGkh/6oQzqaLsRVN8/x4gfgoi96GI1NMsMNVAtsijWLziIo5eCZJiscMFFzv0HiWwPIhf4W0wqVM+1FW3iAQaNDg50VS8hUYL9SHGOYG6iR2szDYbvuuQKlqcusXenU7WeJd3F+YSme6w038n371MHqd/6c+PnZmdtg4lYbq+wn6fOt0rH50uVseSj5x1HLBPsBt/n75Yw672Mf6YrqY7485P6dM00JbSn7/EdvLtDVz8JpVW88yx4CxFWcGb7LepQ1HZmg4KFGXdgX8Bg/8uhAAAeJxjYGRgYGAxPVwnx6UQz2/zlYGbgwEE9v892ACi78Sumg+iORjA4pwMTCAKAB/CCRAAAHicY2BkYOBgAAE4yciACpgAAsoAHQAAAAUqAKYIAAAAAAAAgACAAAAAgAAAAV0AgAAAABYASACYAN4BAAEiAVQB4gH4AlwAAHicY2BkYGDgYshiYGUAAUYwyQXCjJEgJgAOogDqAAAAeJy1VE+LGzcUf1472S1plhIo5KhDKZvFjLNuIDQ5LUlzyl42YSGXgjySZ0TGIyFpMkzpoccc+jF6CfRTlBZ67LmfoOeeeux7bzReb+yGbaEeRvPT0/v7e08GgLujz2EE/e8LfHs8gju46/Ee7MNXCY9R/jzhCeKvE74BH4NL+CZ8At8mvA9fwvcJH8Cn8EvCt+AYfk/49ujn0SThQzje+xWjjCYf4U7t/ZnwCD4bXyS8B4fjbxIeo/xtwhPEPyZ8A+6Of0v4JojxHwnvg58cJHwAx5PBzy14Ofkh4dvjt5O/Ej6Elwff/fROzO+fPBRnJvc22GUUT6x31stobJ2J06oS56YoYxDnOmj/RqvsmVx4k4uzp8/n4jQEHcO5LppK+u2DbcmF9gE9iwfZ/KQ/pcP+7IUurBYmCCmil0qvpH8t7FLEUm/kV3jbOBLnduVkbXTIdiZfxugezWZt22ar4TxDm1nsnC28dGU3W9o6htmleWicq4xWgg4y8co2YiU70QSNSWBiJBbRitxrGfVUKBNcJbupkLUSzhs8zVFF41cG4bRfmRjR3aLjIiqT65p84UEQ1g9gSRGm26U6b1WTx6kg5tF2SjZDAFOLtjR5uZFZi0FNnVeNwjats7d11Ykjc0/o1QJzuVRHDx/KltWVqQvhdYjYKWL1MgCZr309ZgaODEaJekUt8AajKtvWlZXqKnuyp0p7KsdiKFyb6JoolKYySafUlbvKKA5j3SV1agg6RH5KszCYc3b9bsM7EDCH+3ACDxGdgYEcPFgI+C4houwJIo93nlaJEoOohgxPTqHCR8A5ygoo8SzwTuNXo/YbXBVqPkO7Be7JN8V4iv8sc7YPrEl2ZFVAg/4kal7H4jo6F5xHSDkLeIDZzLHWTdvBctPuBWdjcRWoQ1VJfCMzoFC64ixfo4xYopOSdXfxV/C+QQYH7Ry/K9xLzMkwW9m/YJ54jih9BDN8Wn4y9Pe+fZbizBB37KVgPw49dChdsjeqdrYzeuCcHXbEcB/F2oJ6/4prEsxEh9+GueuZ6BkbtElmuWqPGlSHhinuFes57njHEuKD4jjuTG+bJy867SX7dtxXqjnyGVktOI+hExVXRFZDXr1F4C74LclyXcP0Wl11vFdok+N+ynz1M9/Hna7jvF+B4Ulsmacc192ctalS0s6xmobnTu3knmwqRkeofw+/NKGLxMsu730O/5XbS++KPRUo8zzHMd2pYVZ3VTBE387r8cYMUCV9LZHjDbeA/Pe1KpS0XLnlW/mh2ZNXpkpzX2xa+6p63PDNatiSsh26OfghzYpv8j/PaP/PWKfOXHofbohJLNP8UL4LZrrv7f9wt/8GD0U4iAB4nGNgZgCD/34M5QyYgAsAKTQB0nic28CgzbCJkZNJm3ETF4jcztWaG2qrysChvZ07NdhBTwbE4onwsNCQBLF4nc215YVBLD4dFRkRHhCLX05CmI8DxBLg4+FkZwGxBMEAxBLaMKEgwADIYtjOCDeaCW40M9xoFrjRrHCj2eQkoUazw43mgBvNCTd6kzAju/YGBgXX2kwJFwDEASgaAAAA") format("truetype")}.ms-Icon{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-family:'FabricMDL2Icons';font-style:normal;font-weight:normal;speak:none}.ms-Icon--ChevronRightSmall:before{content:"\E970"}.ms-Icon--ChromeClose:before{content:"\E8BB"}.ms-Icon--Copy:before{content:"\E8C8"}.ms-Icon--GlobalNavButton:before{content:"\E700"}.ms-Icon--MiniLink:before{content:"\E732"}.ms-Icon--Page:before{content:"\E7C3"}.ms-Icon--ProductRelease:before{content:"\EE2E"}.ms-Icon--Save:before{content:"\E74E"}.ms-Icon--Search:before{content:"\E721"}.search-container{display:none}.search-container--is-visible{display:block;width:100%}.search-container #search{width:100%;display:block;border:none;border-left:1px solid #222;padding:1px 0;text-align:left;line-height:1.5rem;font-size:1.125rem;font-family:Segoe UI,system-ui,-apple-system,sans-serif;color:#222;background:transparent}.search-container #search:focus{outline:none;border:none}.search-container .search-results__header{font-weight:bold;padding:1rem 0rem}.search-container .search-results__items{margin:0 2vw;padding:0;list-style:circle}.search-container .search-results__item{margin-bottom:1rem}#on_right{display:block;text-align:right;margin-bottom:1.5rem}#search-ico{font-family:'FabricMDL2Icons';cursor:pointer;font-size:1.5rem;line-height:1} diff --git a/docs/zola/public/robots.txt b/docs/zola/public/robots.txt deleted file mode 100644 index 75e67f3..0000000 --- a/docs/zola/public/robots.txt +++ /dev/null @@ -1,3 +0,0 @@ -User-agent: * -Allow: / -Sitemap: https://dat-adi.github.io/ff-zola/sitemap.xml diff --git a/docs/zola/public/search_index.en.js b/docs/zola/public/search_index.en.js deleted file mode 100644 index fd7b8b2..0000000 --- a/docs/zola/public/search_index.en.js +++ /dev/null @@ -1 +0,0 @@ -window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.4142135623730951}},"df":3}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":3}}}},"d":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":2}}},"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}}}},"p":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":3},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":2}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://dat-adi.github.io/ff-zola/services/interface/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/services/northstar/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0}},"df":3}},"s":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}},"e":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951}},"df":3,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"?":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}}}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":2.23606797749979},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":2}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"i":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":3},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":1}},"m":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/services/interface/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/services/northstar/":{"tf":1.0}},"df":3},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":2}}},"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}}}},"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/services/interface/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/services/northstar/":{"tf":1.0}},"df":2}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.4142135623730951}},"df":1,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951}},"df":3}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":2}}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.7320508075688772}},"df":1}}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}}}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.7320508075688772}},"df":2}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":2.23606797749979},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":2.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.7320508075688772}},"df":4}}}}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.4142135623730951}},"df":2}}}}}},"n":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":1},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":2}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":2}}},"d":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}}}},"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":2}}}}}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":1}},"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.7320508075688772}},"df":1}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":3}}},"w":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":2}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}},"g":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":3.605551275463989},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":2.6457513110645907},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951}},"df":4,"e":{"docs":{},"df":0,"f":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"v":{"docs":{},"df":0,"2":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":3}}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":2.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":3,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"(":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}}}}}}},"k":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1},"m":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":2}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}},"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}},"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0}},"df":2}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"o":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":3},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}},"v":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1,"'":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":4}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1,"i":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.4142135623730951}},"df":3}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":2.23606797749979},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":2.449489742783178},"https://dat-adi.github.io/ff-zola/services/interface/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951}},"df":5,"e":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"https://dat-adi.github.io/ff-zola/services/interface/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":2}}},"t":{"docs":{},"df":0,"'":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":2},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/services/interface/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/services/northstar/":{"tf":1.0}},"df":2}}}},"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.7320508075688772}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951}},"df":1}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"p":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":3}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}}}}},"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"k":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":2}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}},"x":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.7320508075688772},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951}},"df":2}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":1}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.7320508075688772},"https://dat-adi.github.io/ff-zola/services/northstar/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":6,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"https://dat-adi.github.io/ff-zola/services/northstar/":{"tf":1.0}},"df":1}}}}},":":{"docs":{},"df":0,":":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.4142135623730951}},"df":1}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.7320508075688772}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":2.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951}},"df":2}}}},"r":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0}},"df":2}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0}},"df":3}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/services/interface/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/services/northstar/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/services/interface/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/services/northstar/":{"tf":1.0}},"df":3}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"p":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.7320508075688772}},"df":1}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":2.23606797749979},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.4142135623730951}},"df":3,"'":{"docs":{"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1,"'":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":2}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":1}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0}},"df":3}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.7320508075688772},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":1}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}}},"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":2}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"k":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":2}},"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.7320508075688772}},"df":1}}}}},"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":2.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":2.6457513110645907},"https://dat-adi.github.io/ff-zola/services/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":5}}}},"t":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":3}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":2}},"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"?":{"docs":{},"df":0,"&":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.7320508075688772},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":2.449489742783178}},"df":2}}}}},"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.7320508075688772}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":2}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951}},"df":2}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":3}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":3}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"'":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.4142135623730951}},"df":2}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0}},"df":1}}}}}}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/services/interface/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/services/northstar/":{"tf":1.0}},"df":2}}},"k":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":5},"r":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"g":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":3}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.4142135623730951}},"df":1}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":2}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1},"k":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.7320508075688772},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.4142135623730951},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.4142135623730951}},"df":4}}}}}},"title":{"root":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":3}}}},"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/services/interface/":{"tf":1.0}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/services/northstar/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"https://dat-adi.github.io/ff-zola/solder/november2020/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"https://dat-adi.github.io/ff-zola/solder/october2020/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"https://dat-adi.github.io/ff-zola/solder/september2020/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/services/":{"tf":1.0},"https://dat-adi.github.io/ff-zola/services/":{"tf":1.0}},"df":2}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://dat-adi.github.io/ff-zola/solder/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/":{"tf":1.0}},"df":1}}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"tf":1.0}},"df":1}}}}}}},"documentStore":{"save":true,"docs":{"https://dat-adi.github.io/ff-zola/":{"body":"ForgeFlux \nForgeFlux aims to implement federation in software forges , enabling\na decentralized development environment.\nWhy is this significant? \nThere have been numerous forges that have popped \nup over the course of time.\nEach of these forges have their own community base,\nand projects that are associated to the forge itself.\nHowever, issues arise when a user wishes to contribute towards\na project that exists in another forge.\nThis would require them to charter into unknown forge territory,\nto have to relearn the functionality that they're already at home with.\nForgeFlux, is an idea, that intends to get rid this problem.\nWork on your own forge, but bridge the project.\nBridging a project would allow for a user to contribute towards projects that \nexist in foreign forges, through the comfort of their own forge.\nHas this been done before? \nThe initial forgefed was \nan attempt to bridge this gap, by introducing the concept \nof bridging the gap between forges.\nThis approach required for the forge developers to actively \nparticipate in the development of the software.\nThe present ForgeFlux, focuses on the implementation being present \nin the API space instead.\nThis reduces the interference required on the side of the forges themselves,\nand seeks to develop on existing utility and APIs provided.\nForgeFlux, consists of a terminology for the development and \nutilization of it's software, which result in terms such as forges,\nand interfaces being tossed around.\nIt is recommended for a reader to go through the ecosystem-architecture, if there is any confusion regarding the usage of particular words in this documentation.\n","id":"https://dat-adi.github.io/ff-zola/","title":"Magic Bridges"},"https://dat-adi.github.io/ff-zola/getting-started/":{"body":"","id":"https://dat-adi.github.io/ff-zola/getting-started/","title":"Getting Started"},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"body":"How does it work?\nInterfaces are services that are run on the side of any user, and are used as connecting points of the bridge.\nThese interfaces are responsible for communicating with each other, and interact in the form of messages for a server-server model, and a REST API model for the server-user model.\nInterfaces are geared towards performing various operations for the repository, which include but are not limited to,\n\nPull Requests\nIssues\nComments\nNotifications\nForking\n\nHowever, as the count for interfaces go up in magnitudes, it becomes increasingly hard to keep track of them.\nThis is where Northstar comes to play, by implementing a lookup server that seeks to provide an indexed list of available forge interfaces.\nForgeFlux is currently in the Active Development phase, and is being worked on towards the alpha-testing stage.\n","id":"https://dat-adi.github.io/ff-zola/getting-started/intro/","title":"How does it work?"},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"body":"Services\nThe services that are currently in active development are Northstar, and Interface.\nHowever, here's a few more details about them.\nNorthstar\n\nRepository :: Source Code\nOpenAPI :: OpenAPI Specification\n\nForgeFlux allows for multiple interfaces to be run against a single software forge.\nAlso, the protocol is flexible enough to support multiple types of software forges(GitLab, GitHub, etc).\nThe protocol's decentralised nature makes it impossible to create a constant record of which interfaces service forges.\nSo we created a discovery service which stores records of interfaces and the forges they service.\nThis is very similar to the way DNS works.\nIn DNS, hostname is resolved to IP address.\nHere, software forge URL is resolved to URLs of interfaces that service the queried forge.\nFor an extensive view on Northstar, please check Northstar::Detailed\nInterface\n\nRepository :: Source Code\nOpenAPI :: OpenAPI Specification\n\nDeveloping Free Software is about liberating users and giving them total control over how the programs they run should work.\nIt's only fair that developers of such software enjoy the same levels of liberty.\nForgeFlux is an attempt to enable federation for major software forges (GitLab, GitHub, Gitea, Source Hut, etc) entirely in API-space.\nWe believe our API-space implementation will allow for more organic growth as it will not require any involvement from the forge developers.\n","id":"https://dat-adi.github.io/ff-zola/getting-started/services/","title":"Services"},"https://dat-adi.github.io/ff-zola/services/":{"body":"","id":"https://dat-adi.github.io/ff-zola/services/","title":"Services"},"https://dat-adi.github.io/ff-zola/services/interface/":{"body":"Interface \nThis page is under construction. Please come back later.\n","id":"https://dat-adi.github.io/ff-zola/services/interface/","title":"Interface"},"https://dat-adi.github.io/ff-zola/services/northstar/":{"body":"Northstar \nThis page is under construction. Please come back later.\n","id":"https://dat-adi.github.io/ff-zola/services/northstar/","title":"Northstar"},"https://dat-adi.github.io/ff-zola/solder/":{"body":"","id":"https://dat-adi.github.io/ff-zola/solder/","title":"Solder"},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"body":"November 2020\nErrors were modularized at the back of Northstar.\nA Docker CI was set up for the Northstar builds.\nA GitHub organization was created for ForgeFedv2, and the repositories for the projects were\ntransferred over to it.\n","id":"https://dat-adi.github.io/ff-zola/solder/november2020/","title":"November 2020"},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"body":"October 2020\nIn the month of October, there were significant changes to the development in ForgeFedv2.\nStarting off with the addition of the OpenAPI Specification for Northstar.\nNorthstar\nA database model was created to store the details of the various forge interfaces,\nhaving these details would be a prerequisite to looking up a server.\nEndpoints were subsequently created, following the defined OpenAPI specification.\nWhile the Lookup service was in the process of development, terminologies and the\nconcept for Forge Federation was also being discussed.\nDocker support as part of the CI process was added into the mix.\nKeeping in mind, that the test suite was the method to work with the application for\nthe time being, an initial working model for the lookup service was established.\nInterface\nDevelopment of the libgit library had begun.\n[libgit] is a library that processes the contributor's changes, and generates a patch.\nDetails regarding the implementation and feature set of libgit will be covered in another section.\nReferences\n\nDatabase Initialization :: database init\n\n","id":"https://dat-adi.github.io/ff-zola/solder/october2020/","title":"October 2020"},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"body":"September 2020\nIn the month of September, project \"ForgeFedv2\" started off by\ninitializing the lookup service, Northstar.\nThe initialization mostly comprised of setting up the CI environment,\nand focused more on defining the structure of the project, and how\nwe were to be going about it.\nA discussion on the terminology and the primitive method of the\nproject's functionality were discussed.\n","id":"https://dat-adi.github.io/ff-zola/solder/september2020/","title":"September 2020"}},"docInfo":{"https://dat-adi.github.io/ff-zola/":{"body":138,"title":2},"https://dat-adi.github.io/ff-zola/getting-started/":{"body":0,"title":2},"https://dat-adi.github.io/ff-zola/getting-started/intro/":{"body":75,"title":1},"https://dat-adi.github.io/ff-zola/getting-started/services/":{"body":138,"title":1},"https://dat-adi.github.io/ff-zola/services/":{"body":0,"title":1},"https://dat-adi.github.io/ff-zola/services/interface/":{"body":8,"title":1},"https://dat-adi.github.io/ff-zola/services/northstar/":{"body":8,"title":1},"https://dat-adi.github.io/ff-zola/solder/":{"body":0,"title":1},"https://dat-adi.github.io/ff-zola/solder/november2020/":{"body":20,"title":2},"https://dat-adi.github.io/ff-zola/solder/october2020/":{"body":93,"title":2},"https://dat-adi.github.io/ff-zola/solder/september2020/":{"body":31,"title":2}},"length":11},"lang":"English"}; \ No newline at end of file diff --git a/docs/zola/public/services/index.html b/docs/zola/public/services/index.html deleted file mode 100644 index 2c2d5f8..0000000 --- a/docs/zola/public/services/index.html +++ /dev/null @@ -1,43 +0,0 @@ - - - Zola - - -
        -

        Welcome to Zola!

        -

        - You're seeing this page because we couldn't find a template to render. -

        -

        - To modify this page, create a section.html file in the templates directory or - install a theme. -
        - You can find what variables are available in this template in the documentation. -

        -
        - - - - diff --git a/docs/zola/public/services/interface/index.html b/docs/zola/public/services/interface/index.html deleted file mode 100644 index b985b23..0000000 --- a/docs/zola/public/services/interface/index.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - - - - - Docs | Interface - - - - - - -
        - - - - - - -
        - - -
        - -
        -
        - -
        -
        -
          -
          -
          - - -
          - -

          Interface 

          -

          This page is under construction. Please come back later.

          - - -
          - -
          -
          - - - - - - - - - diff --git a/docs/zola/public/services/northstar/index.html b/docs/zola/public/services/northstar/index.html deleted file mode 100644 index d140504..0000000 --- a/docs/zola/public/services/northstar/index.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - - - - - Docs | Northstar - - - - - - -
          - - - - - - -
          - - -
          - -
          -
          - -
          -
          -
            -
            -
            - - -
            - -

            Northstar 

            -

            This page is under construction. Please come back later.

            - - -
            - -
            -
            - - - - - - - - - diff --git a/docs/zola/public/sitemap.xml b/docs/zola/public/sitemap.xml deleted file mode 100644 index 069d82a..0000000 --- a/docs/zola/public/sitemap.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - https://dat-adi.github.io/ff-zola/ - - - https://dat-adi.github.io/ff-zola/getting-started/ - - - https://dat-adi.github.io/ff-zola/getting-started/intro/ - - - https://dat-adi.github.io/ff-zola/getting-started/services/ - - - https://dat-adi.github.io/ff-zola/services/ - - - https://dat-adi.github.io/ff-zola/services/interface/ - - - https://dat-adi.github.io/ff-zola/services/northstar/ - - - https://dat-adi.github.io/ff-zola/solder/ - - - https://dat-adi.github.io/ff-zola/solder/november2020/ - - - https://dat-adi.github.io/ff-zola/solder/october2020/ - - - https://dat-adi.github.io/ff-zola/solder/september2020/ - - diff --git a/docs/zola/public/solder/index.html b/docs/zola/public/solder/index.html deleted file mode 100644 index 2c2d5f8..0000000 --- a/docs/zola/public/solder/index.html +++ /dev/null @@ -1,43 +0,0 @@ - - - Zola - - -
            -

            Welcome to Zola!

            -

            - You're seeing this page because we couldn't find a template to render. -

            -

            - To modify this page, create a section.html file in the templates directory or - install a theme. -
            - You can find what variables are available in this template in the documentation. -

            -
            - - - - diff --git a/docs/zola/public/solder/november2020/index.html b/docs/zola/public/solder/november2020/index.html deleted file mode 100644 index 80ea771..0000000 --- a/docs/zola/public/solder/november2020/index.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - - - Docs | November 2020 - - - - - - -
            - - - - - - -
            - - -
            - -
            -
            - -
            -
            -
              -
              -
              - - -
              - -

              November 2020

              -

              Errors were modularized at the back of Northstar. -A Docker CI was set up for the Northstar builds.

              -

              A GitHub organization was created for ForgeFedv2, and the repositories for the projects were -transferred over to it.

              - - -
              - -
              -
              - - - - - - - - - diff --git a/docs/zola/public/solder/october2020/index.html b/docs/zola/public/solder/october2020/index.html deleted file mode 100644 index 1d16a38..0000000 --- a/docs/zola/public/solder/october2020/index.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - - - Docs | October 2020 - - - - - - -
              - - - - - - -
              - - -
              - -
              -
              - -
              -
              -
                -
                -
                - - -
                - -

                October 2020

                -

                In the month of October, there were significant changes to the development in ForgeFedv2. -Starting off with the addition of the OpenAPI Specification for Northstar.

                -

                Northstar

                -

                A database model was created to store the details of the various forge interfaces, -having these details would be a prerequisite to looking up a server.

                -

                Endpoints were subsequently created, following the defined OpenAPI specification. -While the Lookup service was in the process of development, terminologies and the -concept for Forge Federation was also being discussed.

                -

                Docker support as part of the CI process was added into the mix. -Keeping in mind, that the test suite was the method to work with the application for -the time being, an initial working model for the lookup service was established.

                -

                Interface

                -

                Development of the libgit library had begun. -[libgit] is a library that processes the contributor's changes, and generates a patch. -Details regarding the implementation and feature set of libgit will be covered in another section.

                -

                References

                - - - -
                - -
                -
                - - - - - - - - - diff --git a/docs/zola/public/solder/september2020/index.html b/docs/zola/public/solder/september2020/index.html deleted file mode 100644 index 882eec4..0000000 --- a/docs/zola/public/solder/september2020/index.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - Docs | September 2020 - - - - - - -
                - - - - - - -
                - - -
                - -
                -
                - -
                -
                -
                  -
                  -
                  - - -
                  - -

                  September 2020

                  -

                  In the month of September, project "ForgeFedv2" started off by -initializing the lookup service, Northstar.

                  -

                  The initialization mostly comprised of setting up the CI environment, -and focused more on defining the structure of the project, and how -we were to be going about it.

                  -

                  A discussion on the terminology and the primitive method of the -project's functionality were discussed.

                  - - -
                  - -
                  -
                  - - - - - - - - -