{"commit":"915dba4fde478cfbca640cef0dfb5ea5c60a7ce0","old_file":"README.adoc","new_file":"README.adoc","old_contents":"This is a small Java library for parsing the Cloud Foundry environment variables (VCAP_SERVICES and so on).\n\n\/\/ the first line of this file is used as a description in the POM, so keep it short and sweet!\n\nDownload from Bintray:\n\nimage::https:\/\/api.bintray.com\/packages\/pivotal-labs-london\/maven\/cf-env\/images\/download.svg[link=\"https:\/\/bintray.com\/pivotal-labs-london\/maven\/cf-env\/_latestVersion\"]\n\nBuild with Gradle:\n\n--------------------------------------\n.\/gradlew build\n--------------------------------------\n\nRelease with Gradle:\n\n--------------------------------------\n# you probably want to make these changes manually rather than like this\nsed -i -e \"s\/^version = .*\/version = 'x.y.z'\/\" build.gradle\necho -e \"bintrayUser=pivotal-labs-london\\nbintrayKey=...\" >gradle.properties\n\n.\/gradlew bintrayUpload\n--------------------------------------\n","new_contents":"This is a small Java library for parsing the Cloud Foundry environment variables (VCAP_SERVICES and so on).\n\n\/\/ the first line of this file is used as a description in the POM, so keep it short and sweet!\n\nDownload from Bintray:\n\nimage::https:\/\/api.bintray.com\/packages\/pivotal-labs-london\/maven\/cf-env\/images\/download.svg[link=\"https:\/\/bintray.com\/pivotal-labs-london\/maven\/cf-env\/_latestVersion\"]\n\nUse as a dependency in your build:\n\n--------------------------------------\nrepositories {\n jcenter() \/\/ or mavenCentral, for transitive dependencies\n maven {\n url = 'http:\/\/dl.bintray.com\/pivotal-labs-london\/maven\/'\n }\n}\n\ndependencies {\n compile group: 'io.pivotal.labs', name: 'cf-env', version: '0.0.1'\n}\n--------------------------------------\n\nWe hope to have the artifact available via JCenter soon, but until then, please use the repository on Bintray.\n\nBuild with Gradle:\n\n--------------------------------------\n.\/gradlew build\n--------------------------------------\n\nRelease with Gradle:\n\n--------------------------------------\n# you probably want to make these changes manually rather than like this\nsed -i -e \"s\/^version = .*\/version = 'x.y.z'\/\" build.gradle\necho -e \"bintrayUser=pivotal-labs-london\\nbintrayKey=...\" >gradle.properties\n\n.\/gradlew bintrayUpload\n--------------------------------------\n","subject":"Document how to use the Bintray repo","message":"Document how to use the Bintray repo\n","lang":"AsciiDoc","license":"bsd-2-clause","repos":"pivotal\/cf-env"} {"commit":"3f83df33d9efe5b4a7f2fe0ad7bcce0f586401d2","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Auxly\n\nimage:http:\/\/img.shields.io\/:license-mit-blue.svg[\"License\", link=\"https:\/\/github.com\/jeffrimko\/Qprompt\/blob\/master\/LICENSE\"]\nimage:https:\/\/travis-ci.org\/jeffrimko\/Auxly.svg?branch=master[\"Build Status\"]\n\n== Introduction\nThis project provides a Python 2.7\/3.x library for common tasks especially when writing shell-like scripts. Some of the functionality overlaps with the standard library but the API is slightly modified.\n\n== Status\nThe status of this project is **pre-alpha**. This project is not yet suitable for use other than testing.\n\n== Requirements\nAuxly should run on any Python 2.7\/3.x interpreter without additional dependencies.\n\n== Usage\n===\nThe following are basic examples of Auxly (all examples can be found https:\/\/github.com\/jeffrimko\/Auxly\/tree\/master\/examples[here]):\n\n - https:\/\/github.com\/jeffrimko\/Auxly\/blob\/master\/examples\/delete_1.py[examples\/delete_1.py] - Deletes all PYC files in the project.\n\n----\ninclude::examples\\delete_1.py[]\n----\n","new_contents":"= Auxly\n\nimage:http:\/\/img.shields.io\/:license-mit-blue.svg[\"License\", link=\"https:\/\/github.com\/jeffrimko\/Qprompt\/blob\/master\/LICENSE\"]\nimage:https:\/\/travis-ci.org\/jeffrimko\/Auxly.svg?branch=master[\"Build Status\"]\n\n== Introduction\nThis project provides a Python 2.7\/3.x library for common tasks especially when writing shell-like scripts. Some of the functionality overlaps with the standard library but the API is slightly modified.\n\n== Status\nThe status of this project is **pre-alpha**. This project is not yet suitable for use other than testing.\n\n== Requirements\nAuxly should run on any Python 2.7\/3.x interpreter without additional dependencies.\n\n== Usage\n\nThe following are basic examples of Auxly (all examples can be found https:\/\/github.com\/jeffrimko\/Auxly\/tree\/master\/examples[here]):\n\n - https:\/\/github.com\/jeffrimko\/Auxly\/blob\/master\/examples\/delete_1.py[examples\/delete_1.py] - Deletes all PYC files in the project.\n","subject":"Undo include change in readme.","message":"Undo include change in readme.\n","lang":"AsciiDoc","license":"mit","repos":"jeffrimko\/Auxly"} {"commit":"f1b569bfc0f68e487de62febdf6a286d939fa5ae","old_file":"modules\/configuring-scale-bounds-knative.adoc","new_file":"modules\/configuring-scale-bounds-knative.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * serverless\/configuring-knative-serving-autoscaling.adoc\n\n[id=\"configuring-scale-bounds-knative_{context}\"]\n= Configuring scale bounds Knative Serving autoscaling\n\nThe `minScale` and `maxScale` annotations can be used to configure the minimum and maximum number of Pods that can serve applications.\nThese annotations can be used to prevent cold starts or to help control computing costs.\n\nminScale:: If the `minScale` annotation is not set, Pods will scale to zero (or to 1 if enable-scale-to-zero is false per the `ConfigMap`).\n\nmaxScale:: If the `maxScale` annotation is not set, there will be no upper limit for the number of Pods created.\n\n`minScale` and `maxScale` can be configured as follows in the revision template:\n\n[source,yaml]\n----\nspec:\n template:\n metadata:\n autoscaling.knative.dev\/minScale: \"2\"\n autoscaling.knative.dev\/maxScale: \"10\"\n----\n\nUsing these annotations in the revision template will propagate this confguration to `PodAutoscaler` objects.\n\n[NOTE]\n====\nThese annotations apply for the full lifetime of a revision. Even when a revision is not referenced by any route, the minimal Pod count specified by `minScale` will still be provided. Keep in mind that non-routeable revisions may be garbage collected, which enables Knative to reclaim the resources.\n====\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * serverless\/configuring-knative-serving-autoscaling.adoc\n\n[id=\"configuring-scale-bounds-knative_{context}\"]\n= Configuring scale bounds Knative Serving autoscaling\n\nThe `minScale` and `maxScale` annotations can be used to configure the minimum and maximum number of Pods that can serve applications.\nThese annotations can be used to prevent cold starts or to help control computing costs.\n\nminScale:: If the `minScale` annotation is not set, Pods will scale to zero (or to 1 if enable-scale-to-zero is false per the `ConfigMap`).\n\nmaxScale:: If the `maxScale` annotation is not set, there will be no upper limit for the number of Pods created.\n\n`minScale` and `maxScale` can be configured as follows in the revision template:\n\n[source,yaml]\n----\nspec:\n template:\n metadata:\n annotations:\n autoscaling.knative.dev\/minScale: \"2\"\n autoscaling.knative.dev\/maxScale: \"10\"\n----\n\nUsing these annotations in the revision template will propagate this confguration to `PodAutoscaler` objects.\n\n[NOTE]\n====\nThese annotations apply for the full lifetime of a revision. Even when a revision is not referenced by any route, the minimal Pod count specified by `minScale` will still be provided. Keep in mind that non-routeable revisions may be garbage collected, which enables Knative to reclaim the resources.\n====\n","subject":"Fix spec.template.metadata.annotations for min and max scale example","message":"Fix spec.template.metadata.annotations for min and max scale example\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"e0992105f2fbecca2909a19b0cdbbb74aa20a561","old_file":"docs\/index.asciidoc","new_file":"docs\/index.asciidoc","old_contents":"= Packetbeat reference\n:libbeat: http:\/\/www.elastic.co\/guide\/en\/beats\/libbeat\/1.0.0-rc1\n:version: 1.0.0-rc1\n\ninclude::.\/overview.asciidoc[]\n\ninclude::.\/gettingstarted.asciidoc[]\n\ninclude::.\/configuration.asciidoc[]\n\ninclude::.\/command-line.asciidoc[]\n\ninclude::.\/capturing.asciidoc[]\n\ninclude::.\/https.asciidoc[]\n\ninclude::.\/fields.asciidoc[]\n\ninclude::.\/thrift.asciidoc[]\n\ninclude::.\/windows.asciidoc[]\n\ninclude::.\/kibana3.asciidoc[]\n\ninclude::.\/filtering.asciidoc[]\n\ninclude::.\/troubleshooting.asciidoc[]\n\ninclude::.\/new_protocol.asciidoc[]\n","new_contents":"= Packetbeat reference\n:libbeat: http:\/\/www.elastic.co\/guide\/en\/beats\/libbeat\/master\n:version: master\n\ninclude::.\/overview.asciidoc[]\n\ninclude::.\/gettingstarted.asciidoc[]\n\ninclude::.\/configuration.asciidoc[]\n\ninclude::.\/command-line.asciidoc[]\n\ninclude::.\/capturing.asciidoc[]\n\ninclude::.\/https.asciidoc[]\n\ninclude::.\/fields.asciidoc[]\n\ninclude::.\/thrift.asciidoc[]\n\ninclude::.\/windows.asciidoc[]\n\ninclude::.\/kibana3.asciidoc[]\n\ninclude::.\/filtering.asciidoc[]\n\ninclude::.\/troubleshooting.asciidoc[]\n\ninclude::.\/new_protocol.asciidoc[]\n","subject":"Use master version in docs","message":"Use master version in docs\n","lang":"AsciiDoc","license":"mit","repos":"yapdns\/yapdnsbeat,yapdns\/yapdnsbeat"} {"commit":"0563338e61781db621d9bfbcf201a4c2c753dae4","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= AsciiBinder\n\nimage:https:\/\/badge.fury.io\/rb\/ascii_binder.svg[\"Gem Version\", link=\"https:\/\/badge.fury.io\/rb\/ascii_binder\"]\n\nAsciiBinder is an AsciiDoc-based system for authoring and publishing closely related documentation sets from a single source.\n\n== Learn More\n\n* See the http:\/\/www.asciibinder.org[homepage].\n* Have a gander at the http:\/\/www.asciibinder.org\/latest\/welcome\/[AsciiBinder documentation].\n* Or just take the https:\/\/rubygems.org\/gems\/ascii_binder[ascii_binder Ruby Gem] for a spin.\n\nThe AsciiBinder system was initially developed for https:\/\/github.com\/openshift\/openshift-docs[OpenShift documentation], but has been revised to work for documenting a wide variety of complex, multi-versioned software projects.\n\n== Contributing\n\nWe are using the https:\/\/github.com\/redhataccess\/ascii_binder\/issues[Issues] page to track bugs and feature ideas on the code, so have a look and feel free to ask questions there. You can also chat with us on IRC at FreeNode, http:\/\/webchat.freenode.net\/?randomnick=1&channels=asciibinder&uio=d4[#asciibinder] channel, or on Twitter - https:\/\/twitter.com\/AsciiBinder[@AsciiBinder].\n\n== License\n\nThe gem is available as open source under the terms of the http:\/\/opensource.org\/licenses\/MIT[MIT License].\n","new_contents":"= AsciiBinder\n\nimage:https:\/\/badge.fury.io\/rb\/ascii_binder.svg[\"Gem Version\", link=\"https:\/\/badge.fury.io\/rb\/ascii_binder\"]\n\nAsciiBinder is an AsciiDoc-based system for authoring and publishing closely related documentation sets from a single source.\n\n== Learn More\n\n* Have a gander at the https:\/\/github.com\/redhataccess\/ascii_binder-docs\/blob\/master\/welcome\/index.adoc[AsciiBinder documentation].\n* Or just take the https:\/\/rubygems.org\/gems\/ascii_binder[ascii_binder Ruby Gem] for a spin.\n\nThe AsciiBinder system was initially developed for https:\/\/github.com\/openshift\/openshift-docs[OpenShift documentation], but has been revised to work for documenting a wide variety of complex, multi-versioned software projects.\n\n== Contributing\n\nWe are using the https:\/\/github.com\/redhataccess\/ascii_binder\/issues[Issues] page to track bugs and feature ideas on the code, so have a look and feel free to ask questions there. You can also chat with us on IRC at FreeNode, http:\/\/webchat.freenode.net\/?randomnick=1&channels=asciibinder&uio=d4[#asciibinder] channel, or on Twitter - https:\/\/twitter.com\/AsciiBinder[@AsciiBinder].\n\n== License\n\nThe gem is available as open source under the terms of the http:\/\/opensource.org\/licenses\/MIT[MIT License].\n","subject":"Update docs link to point to docs repo","message":"Update docs link to point to docs repo\n","lang":"AsciiDoc","license":"mit","repos":"nhr\/ascii_binder,redhataccess\/doc_site_builder,redhataccess\/ascii_binder,redhataccess\/ascii_binder,redhataccess\/doc_site_builder,nhr\/ascii_binder"} {"commit":"3ab42490a909b1b2ba73652ffa172172bea9ad85","old_file":"README.adoc","new_file":"README.adoc","old_contents":":figure-caption!:\n\nimage::https:\/\/travis-ci.org\/mmjmanders\/ng-iban.svg?branch=master[title=\"travis status\", alt=\"travis status\", link=\"https:\/\/travis-ci.org\/mmjmanders\/ng-iban\"]\n\nimage::https:\/\/app.wercker.com\/status\/eb4337041c62e162c5dd7af43122647c\/m[title=\"wercker status\", alt=\"wercker status\", link=\"https:\/\/app.wercker.com\/project\/bykey\/eb4337041c62e162c5dd7af43122647c\"]\n\n= ng-iban - validate input fields as IBAN\nThe goal is to provide an easy way to validate an input field as an IBAN number with https:\/\/angularjs.org\/[AngularJS].\nFrom version `0.4.0` the module uses https:\/\/github.com\/arhs\/iban.js[iban.js] for validation.\n\n== Usage\nFirst add\n\n* `AngularJS`\n* `ng-iban`\n\nto your HTML file.\n\nMake sure you require `mm.iban` as a dependency of your AngularJS module.\n\n== Installation\n`bower install ng-iban`\n\n=== directive\n[source,html]\n----\n\n----\n\nTo use this directive the `ngModel` directive must also be used because this directive depends on it.\n","new_contents":":figure-caption!:\n\nimage::https:\/\/travis-ci.org\/mmjmanders\/ng-iban.svg?branch=master[title=\"travis status\", alt=\"travis status\", link=\"https:\/\/travis-ci.org\/mmjmanders\/ng-iban\"]\n\nimage::https:\/\/app.wercker.com\/status\/eb4337041c62e162c5dd7af43122647c\/m[title=\"wercker status\", alt=\"wercker status\", link=\"https:\/\/app.wercker.com\/project\/bykey\/eb4337041c62e162c5dd7af43122647c\"]\n\n= ng-iban - validate input fields as IBAN\nThe goal is to provide an easy way to validate an input field as an IBAN number with https:\/\/angularjs.org\/[AngularJS].\nFrom version `0.4.0` the module uses https:\/\/github.com\/arhs\/iban.js[iban.js] for validation.\n\n== Installation\n\n=== Bower\n\n`bower install ng-iban`\n\n=== NPM\n\n`npm install ng-iban`\n\n=== Other\n\nDownload file `dist\/ng-iban.mni.js`.\n\n== Usage\n\nAdd `mm.iban` as a dependency of your AngularJS module.\n\n=== directive\n[source,html]\n----\n\n----\n\nTo use this directive the `ngModel` directive must also be used because this directive depends on it.\n","subject":"Update documentation for NPM support","message":"Update documentation for NPM support\n","lang":"AsciiDoc","license":"mit","repos":"mmjmanders\/ng-iban"} {"commit":"768aa1fd4d785b7ab5ccbeca3949f7ed8e73d6d6","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Infinispan Cluster Manager\n\nimage:https:\/\/vertx.ci.cloudbees.com\/buildStatus\/icon?job=vert.x3-infinispan[\"Build Status\",link=\"https:\/\/vertx.ci.cloudbees.com\/view\/vert.x-3\/job\/vert.x3-infinispan\/\"]\n\nThis is a cluster manager implementation for Vert.x that uses http:\/\/infinispan.org[Infinispan].\n\nPlease see the in-source asciidoc documentation or the main documentation on the web-site for a full description\nof this component:\n\n* link:http:\/\/vertx.io\/docs\/vertx-infinispan\/java\/[web-site docs]\n* link:src\/main\/asciidoc\/java\/index.adoc[in-source docs]\n","new_contents":"= Infinispan Cluster Manager\n\nimage:https:\/\/vertx.ci.cloudbees.com\/buildStatus\/icon?job=vert.x3-infinispan[\"Build Status\",link=\"https:\/\/vertx.ci.cloudbees.com\/view\/vert.x-3\/job\/vert.x3-infinispan\/\"]\n\nThis is a cluster manager implementation for Vert.x that uses http:\/\/infinispan.org[Infinispan].\n\nPlease see the in-source asciidoc documentation or the main documentation on the web-site for a full description\nof this component:\n\n* link:http:\/\/vertx.io\/docs\/vertx-infinispan\/java\/[web-site docs]\n* link:src\/main\/asciidoc\/java\/index.adoc[in-source docs]\n\n-- will remove --\n","subject":"Revert \"Revert \"Revert \"Revert \"Test trigger on push\"\"\"\"","message":"Revert \"Revert \"Revert \"Revert \"Test trigger on push\"\"\"\"\n\nThis reverts commit 2e835acb457e13f3fc5a49459604488388d80cae.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vert-x3\/vertx-infinispan"} {"commit":"bea0a3216104837de75798f1cea3ad6202791160","old_file":"documentation\/src\/main\/asciidoc\/ch14.asciidoc","new_file":"documentation\/src\/main\/asciidoc\/ch14.asciidoc","old_contents":"[[validator-further-reading]]\n== Further reading\n\nLast but not least, a few pointers to further information.\n\nA great source for examples is the Bean Validation TCK which is available for anonymous access on\nhttps:\/\/github.com\/beanvalidation\/beanvalidation-tck\/[GitHub]. In particular the TCK's\nhttps:\/\/github.com\/beanvalidation\/beanvalidation-tck\/tree\/master\/tests[tests] might be\nof interest. {bvSpecUrl}[The JSR 380] specification itself\nis also a great way to deepen your understanding of Bean Validation and Hibernate Validator.\n\nIf you have any further questions about Hibernate Validator or want to share some of your use cases,\nhave a look at the http:\/\/community.jboss.org\/en\/hibernate\/validator[Hibernate Validator\nWiki], the https:\/\/forum.hibernate.org\/viewforum.php?f=9[Hibernate Validator Forum] and the\nhttps:\/\/stackoverflow.com\/questions\/tagged\/hibernate-validator[Hibernate Validator tag on Stack Overflow].\n\nIn case you would like to report a bug use\nhttps:\/\/hibernate.atlassian.net\/projects\/HV\/[Hibernate's Jira] instance.\nFeedback is always welcome!\n","new_contents":"[[validator-further-reading]]\n== Further reading\n\nLast but not least, a few pointers to further information.\n\nA great source for examples is the Bean Validation TCK which is available for anonymous access on\nhttps:\/\/github.com\/beanvalidation\/beanvalidation-tck\/[GitHub]. In particular the TCK's\nhttps:\/\/github.com\/beanvalidation\/beanvalidation-tck\/tree\/master\/tests[tests] might be\nof interest. {bvSpecUrl}[The JSR 380] specification itself\nis also a great way to deepen your understanding of Bean Validation and Hibernate Validator.\n\nIf you have any further questions about Hibernate Validator or want to share some of your use cases,\nhave a look at the http:\/\/community.jboss.org\/en\/hibernate\/validator[Hibernate Validator\nWiki], the https:\/\/discourse.hibernate.org\/c\/hibernate-validator[Hibernate Validator Forum] and the\nhttps:\/\/stackoverflow.com\/questions\/tagged\/hibernate-validator[Hibernate Validator tag on Stack Overflow].\n\nIn case you would like to report a bug use\nhttps:\/\/hibernate.atlassian.net\/projects\/HV\/[Hibernate's Jira] instance.\nFeedback is always welcome!\n","subject":"Update the links to the forum","message":"Update the links to the forum\n","lang":"AsciiDoc","license":"apache-2.0","repos":"marko-bekhta\/hibernate-validator,marko-bekhta\/hibernate-validator,hibernate\/hibernate-validator,marko-bekhta\/hibernate-validator,hibernate\/hibernate-validator,hibernate\/hibernate-validator"} {"commit":"77ccf579cb4a5d8795337d2b85b946c5ecf85475","old_file":"adoc\/regtest-intro.adoc","new_file":"adoc\/regtest-intro.adoc","old_contents":"== Introduction to Regression Test Mode\n\nBitcoin 0.9 and later include support for Regression Test Mode (aka RegTest mode). RegTest mode creates a single node Bitcoin \"network\" that can confirm blocks upon command. (RegTest mode can also be used to create small, multi-node networks and even to simulate blockchain reorganizations.)\n\nFor example the following command will generate 101 blocks\n\n .\/bitcoin-cli -regtest setgenerate true 101\n\nAnd yes, you get the newly mined coins. They can't be spent anywhere, but they're great for testing.\n\nThe best documentation of RegTest mode that I've seen so far is https:\/\/bitcoinj.github.io\/testing[How to test applications] on the new https:\/\/bitcoinj.github.io[Bitcoinj website].\n\n\nOther Links::\n* http:\/\/geraldkaszuba.com\/creating-your-own-experimental-bitcoin-network\/[Creating your own experimental Bitcoin network]\n* https:\/\/github.com\/gak\/docker-bitcoin-regtest[docker-bitcoin-regtest]\n\n== Simple Demo of RegTest mode with Bash Scripts\n\nThese are some really rough Bash scripts that can drive bitcoind in RegTest mode.\n\nProcedure::\n* Make sure Bitcoin Core 0.9 or later is installed and in your path.\n* Run the server script\n\n .\/server.sh &\n\n* Run the client setup script to mine some coins to get started:\n\n .\/setup-client.sh\n\n* Run the client script (repeat as desired)\n\n .\/client.sh\n\n* A directory named +regtest-datadir+ is created in the current directory.\n","new_contents":"== Introduction to Regression Test Mode\n\nBitcoin 0.9 and later include support for Regression Test Mode (aka RegTest mode). RegTest mode creates a single node Bitcoin \"network\" that can confirm blocks upon command. (RegTest mode can also be used to create small, multi-node networks and even to simulate blockchain reorganizations.)\n\nFor example the following command will generate 101 blocks\n\n .\/bitcoin-cli -regtest setgenerate true 101\n\nAnd yes, you get the newly mined coins. They can't be spent anywhere, but they're great for testing.\n\nThe best documentation of RegTest mode that I've seen so far is https:\/\/bitcoinj.github.io\/testing[How to test applications] on the new https:\/\/bitcoinj.github.io[Bitcoinj website].\n\n\nOther Links::\n* http:\/\/geraldkaszuba.com\/creating-your-own-experimental-bitcoin-network\/[Creating your own experimental Bitcoin network]\n* https:\/\/github.com\/gak\/docker-bitcoin-regtest[docker-bitcoin-regtest]\n","subject":"Remove reference to deleted scripts.","message":"Remove reference to deleted scripts.","lang":"AsciiDoc","license":"apache-2.0","repos":"OmniLayer\/OmniJ,OmniLayer\/OmniJ,OmniLayer\/OmniJ"} {"commit":"d0d63e6172efc6e7eb7ca3e8fd29b3a670c18899","old_file":"subprojects\/docs\/src\/docs\/userguide\/licenses.adoc","new_file":"subprojects\/docs\/src\/docs\/userguide\/licenses.adoc","old_contents":"\/\/ Copyright 2017 the original author or authors.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\n= Documentation licenses\n\n\n[[sec:gradle_documentation]]\n== Gradle Documentation\n\n_Copyright © 2007-2018 Gradle, Inc._\n\nGradle build tool source code is open and licensed under the link:https:\/\/github.com\/gradle\/gradle\/blob\/master\/LICENSE[Apache License 2.0].\nGradle user manual and DSL references are licensed under link:http:\/\/creativecommons.org\/licenses\/by-nc-sa\/4.0\/[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License].\n","new_contents":"\/\/ Copyright 2017 the original author or authors.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\n[[licenses]]\n= License Information\n\n\n[[sec:gradle_documentation]]\n== Gradle Documentation\n\n_Copyright © 2007-2018 Gradle, Inc._\n\nGradle build tool source code is open-source and licensed under the link:https:\/\/github.com\/gradle\/gradle\/blob\/master\/LICENSE[Apache License 2.0].\n\n\nGradle user manual and DSL references are licensed under link:http:\/\/creativecommons.org\/licenses\/by-nc-sa\/4.0\/[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License].\n\n\n[[licenses:build_scan_plugin]]\n== Gradle Build Scan Plugin\n\nUse of the link:https:\/\/scans.gradle.com\/plugin\/[build scan plugin] is subject to link:https:\/\/gradle.com\/legal\/terms-of-service\/[Gradle's Terms of Service].\n","subject":"Add license information to docs clarifying build scan plugin license","message":"Add license information to docs clarifying build scan plugin license\n","lang":"AsciiDoc","license":"apache-2.0","repos":"blindpirate\/gradle,blindpirate\/gradle,robinverduijn\/gradle,robinverduijn\/gradle,robinverduijn\/gradle,robinverduijn\/gradle,robinverduijn\/gradle,gradle\/gradle,robinverduijn\/gradle,lsmaira\/gradle,gradle\/gradle,lsmaira\/gradle,blindpirate\/gradle,lsmaira\/gradle,blindpirate\/gradle,robinverduijn\/gradle,blindpirate\/gradle,lsmaira\/gradle,gradle\/gradle,gradle\/gradle,gradle\/gradle,blindpirate\/gradle,robinverduijn\/gradle,lsmaira\/gradle,blindpirate\/gradle,lsmaira\/gradle,blindpirate\/gradle,gradle\/gradle,lsmaira\/gradle,robinverduijn\/gradle,gradle\/gradle,blindpirate\/gradle,gradle\/gradle,gradle\/gradle,lsmaira\/gradle,lsmaira\/gradle,robinverduijn\/gradle,lsmaira\/gradle,gradle\/gradle,robinverduijn\/gradle,blindpirate\/gradle"} {"commit":"aba970033b1101b2c1e175a4ba49e513bd4519f7","old_file":"monitoring\/monitoring.adoc","new_file":"monitoring\/monitoring.adoc","old_contents":"[id='monitoring']\n= Monitoring\ninclude::modules\/common-attributes.adoc[]\n:context: monitoring\n\ntoc::[]\n\n{product-title} uses the Prometheus open source monitoring system. The stack built around Prometheus provides {product-title} cluster monitoring by default. It also provides custom-configured application monitoring as a technology preview. The cluster monitoring stack is only supported for monitoring {product-title} clusters.\n\n[id='cluster-monitoring']\n== Cluster monitoring\n\ninclude::modules\/monitoring-monitoring-overview.adoc[leveloffset=+1]\ninclude::monitoring\/configuring-monitoring-stack.adoc[leveloffset=+1]\ninclude::modules\/monitoring-configuring-etcd-monitoring.adoc[leveloffset=+1]\ninclude::modules\/monitoring-accessing-prometheus-alertmanager-grafana.adoc[leveloffset=+1]\n\n[id='application-monitoring']\n== Application monitoring\n\nYou can do custom metrics scraping for your applications. This is done using the Prometheus Operator and a custom Prometheus instance.\n\n[IMPORTANT]\n====\nApplication monitoring is a technology preview. Exposing custom metrics will change without the consent of the user of the cluster.\n====\n\ninclude::modules\/monitoring-configuring-cluster-for-application-monitoring.adoc[leveloffset=+1]\ninclude::modules\/monitoring-configuring-monitoring-for-application.adoc[leveloffset=+1]\ninclude::modules\/monitoring-exposing-application-metrics-for-horizontal-pod-autoscaling.adoc[leveloffset=+1]\n","new_contents":"[id='monitoring']\n= Monitoring\ninclude::modules\/common-attributes.adoc[]\n:context: monitoring\n\ntoc::[]\n\n{product-title} uses the Prometheus open source monitoring system. The stack built around Prometheus provides {product-title} cluster monitoring by default. It also provides custom-configured application monitoring as a technology preview. The cluster monitoring stack is only supported for monitoring {product-title} clusters.\n\n[id='cluster-monitoring']\n== Cluster monitoring\n\ninclude::modules\/monitoring-monitoring-overview.adoc[leveloffset=+1]\ninclude::monitoring\/configuring-monitoring-stack.adoc[leveloffset=+1]\ninclude::modules\/monitoring-accessing-prometheus-alertmanager-grafana.adoc[leveloffset=+1]\n\n[id='application-monitoring']\n== Application monitoring\n\nYou can do custom metrics scraping for your applications. This is done using the Prometheus Operator and a custom Prometheus instance.\n\n[IMPORTANT]\n====\nApplication monitoring is a technology preview. Exposing custom metrics will change without the consent of the user of the cluster.\n====\n\ninclude::modules\/monitoring-configuring-cluster-for-application-monitoring.adoc[leveloffset=+1]\ninclude::modules\/monitoring-configuring-monitoring-for-application.adoc[leveloffset=+1]\ninclude::modules\/monitoring-exposing-application-metrics-for-horizontal-pod-autoscaling.adoc[leveloffset=+1]\n","subject":"Remove the deprecated etcd section","message":"Remove the deprecated etcd section\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"e71e5cab507a8949b72782b92c3b9f74b33ec729","old_file":"modules\/openshift-developer-cli-installing-odo-on-linux.adoc","new_file":"modules\/openshift-developer-cli-installing-odo-on-linux.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * cli_reference\/openshift_developer_cli\/installing-odo.adoc \n\n[id=\"installing-odo-on-linux\"]\n\n= Installing {odo-title} on Linux\n\n== Binary installation\n\n----\n# curl -L https:\/\/mirror.openshift.com\/pub\/openshift-v4\/clients\/odo\/latest\/odo-darwin-amd64 -o \/usr\/local\/bin\/odo\n# chmod +x \/usr\/local\/bin\/odo\n----\n\n== Tarball installation\n\n----\n# sh -c 'curl -L https:\/\/mirror.openshift.com\/pub\/openshift-v4\/clients\/odo\/latest\/odo-linux-amd64.tar.gz | gzip -d > \/usr\/local\/bin\/odo'\n# chmod +x \/usr\/local\/bin\/odo\n----","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * cli_reference\/openshift_developer_cli\/installing-odo.adoc \n\n[id=\"installing-odo-on-linux\"]\n\n= Installing {odo-title} on Linux\n\n== Binary installation\n\n----\n# curl -L https:\/\/mirror.openshift.com\/pub\/openshift-v4\/clients\/odo\/latest\/odo-linux-amd64 -o \/usr\/local\/bin\/odo\n# chmod +x \/usr\/local\/bin\/odo\n----\n\n== Tarball installation\n\n----\n# sh -c 'curl -L https:\/\/mirror.openshift.com\/pub\/openshift-v4\/clients\/odo\/latest\/odo-linux-amd64.tar.gz | gzip -d > \/usr\/local\/bin\/odo'\n# chmod +x \/usr\/local\/bin\/odo\n----","subject":"Fix url to odo linux binary","message":"Fix url to odo linux binary\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"4d61fa8fd9011eb6cf4e899c64a8b81fcb2c152c","old_file":"Documentation\/ArchitectureDocumentation.asciidoc","new_file":"Documentation\/ArchitectureDocumentation.asciidoc","old_contents":"ifdef::env-github[]\n:imagesdir: https:\/\/github.com\/Moose2Model\/Moose2Model\/blob\/master\/Documentation\/images\/\nendif::[]\n\n:toc:\n:toc-placement!:\ntoc::[]\n\nThis documentation follows the arc42 template for architecture documentation (https:\/\/arc42.org\/).\n\n1 Introduction and Goals\n========================\n\n1.1 Requirements Overview\n-------------------------\n- Provide diagrams for developers that can be easily kept correct\n- Reduces the cognitive load of developers who work in complex software systems\n- Supports only diagram that show the dependencies between components of a software\n- Supports dependencies between entities of code that are more detailed then a class (method, attribute, ...)\n- Works in the moment best with models that are extracted by the SAP2Moose project\n- Shall support all models that are compatible with Moose (http:\/\/moosetechnology.org\/)\n\n1.2 Quality Goals\n-----------------\n- Shows all dependencies between elements in a diagram\n- Shows all elements that should be in a diagram\n\n1.3 Stake Holders\n-----------------\n\n.Stake Holders\n|===\n| Role\/Name |Expectations\n\n|Developer\n|Build diagrams where the customiziation is not lost when they are regenerated with new informations. Build diagrams that are sufficiently detailed to support the development.\n\n|Software Architect\n|Have a tool to compare the planned architecture with the realized architecture\n|===\n\n","new_contents":"ifdef::env-github[]\n:imagesdir: https:\/\/github.com\/Moose2Model\/Moose2Model\/blob\/master\/Documentation\/images\/\nendif::[]\n\n:toc:\n:toc-placement!:\ntoc::[]\n\nThis documentation follows the arc42 template for architecture documentation (https:\/\/arc42.org\/).\n\n1 Introduction and Goals\n========================\n\n1.1 Requirements Overview\n-------------------------\n- Provide diagrams for developers that can be easily kept correct\n- Reduces the cognitive load of developers who work in complex software systems\n- Supports only diagram that show the dependencies between components of a software\n- Supports dependencies between entities of code that are more detailed then a class (method, attribute, ...)\n- Works in the moment best with models that are extracted by the SAP2Moose project\n- Shall support all models that are compatible with Moose (http:\/\/moosetechnology.org\/)\n\n1.2 Quality Goals\n-----------------\n- Shows all dependencies between elements in a diagram\n- Shows all elements that should be in a diagram\n\n1.3 Stake Holders\n-----------------\n\n.Stake Holders\n|===\n| Role\/Name |Expectations\n\n|Developer\n|Build diagrams where the customiziation is not lost when they are regenerated with new informations. Build diagrams that are sufficiently detailed to support the development.\n\n|Software Architect\n|Have a tool to compare the planned architecture with the realized architecture\n|===\n\n2 Architecture Constraints\n==========================\n- Easy to install\n\n\n","subject":"Add arc 42 Architecture Constraints","message":"Add arc 42 Architecture Constraints","lang":"AsciiDoc","license":"mit","repos":"RainerWinkler\/Moose-Diagram"} {"commit":"f31704a0bf79e8a86e03ad938eb4cdd12295d4ff","old_file":"community\/forum.adoc","new_file":"community\/forum.adoc","old_contents":"= Forum (free support)\n:awestruct-layout: base\n:showtitle:\n\n== Usage questions\n\nIf you have a question about OptaPlanner, just ask our friendly community:\n\n* Ask on http:\/\/www.jboss.org\/drools\/lists[the Drools user mailing list] (recommended).\n\n* Or ask on http:\/\/stackoverflow.com\/questions\/tagged\/optaplanner[StackOverflow].\n\nPlease follow these recommendations when posting a question:\n\n* Get to the point. Keep it as short as possible.\n* Include _relevant_ technical details (stacktrace, short code snippet, ...).\n* Be polite, friendly and clear. Reread your question before posting it.\n* Be patient. This isn't link:product.html[paid support].\n\n== Development discussions\n\nIf you've link:..\/code\/sourceCode.html[build OptaPlanner from source] and you would like to improve it,\nthen come talk with us:\n\n* Join us on http:\/\/www.jboss.org\/drools\/lists[the Drools developer mailing list].\n\n* And link:chat.html[chat with us] (recommended).\n","new_contents":"= Forum\n:awestruct-layout: base\n:showtitle:\n\n== Usage questions\n\nIf you have a question about OptaPlanner, just ask our friendly community:\n\n* *http:\/\/stackoverflow.com\/questions\/tagged\/optaplanner[Ask a usage question on StackOverflow.]*\n\n* To start a discussion, use https:\/\/groups.google.com\/forum\/#!forum\/optaplanner-dev[the OptaPlanner developer forum].\n\nPlease follow these recommendations when posting a question or a discussion:\n\n* Get to the point. Keep it as short as possible.\n* Include _relevant_ technical details (stacktrace, short code snippet, ...).\n* Be polite, friendly and clear. Reread your question before posting it.\n* Be patient. This isn't link:product.html[paid support].\n\n== Development discussions\n\nIf you've link:..\/code\/sourceCode.html[build OptaPlanner from source] and want to improve something, come talk with us:\n\n* Join https:\/\/groups.google.com\/forum\/#!forum\/optaplanner-dev[the OptaPlanner developer google group].\n\n** Mail directly to the group via mailto:optaplanner-dev@googlegroups.com[optaplanner-dev@googlegroups.com].\n\n* And link:chat.html[chat with us] (recommended).\n\n** Or ping us on link:socialMedia.html[any social media].\n","subject":"Split optaplanner's dev list away from drools's mailing list","message":"Split optaplanner's dev list away from drools's mailing list\n","lang":"AsciiDoc","license":"apache-2.0","repos":"oskopek\/optaplanner-website,psiroky\/optaplanner-website,psiroky\/optaplanner-website,psiroky\/optaplanner-website,bibryam\/optaplanner-website,bibryam\/optaplanner-website,droolsjbpm\/optaplanner-website,oskopek\/optaplanner-website,oskopek\/optaplanner-website,bibryam\/optaplanner-website,droolsjbpm\/optaplanner-website,droolsjbpm\/optaplanner-website"} {"commit":"964b9a214abd95783bc74eeb7a91a091a9deb2cc","old_file":"pages\/apim\/3.x\/kubernetes\/apim-kubernetes-overview.adoc","new_file":"pages\/apim\/3.x\/kubernetes\/apim-kubernetes-overview.adoc","old_contents":"[[apim-kubernetes-overview]]\n= Kubernetes plugin\n:page-sidebar: apim_3_x_sidebar\n:page-permalink: apim\/3.x\/apim_kubernetes_overview.html\n:page-folder: apim\/kubernetes\n:page-layout: apim3x\n:page-liquid:\n\n[label label-version]#New in version 3.7#\n\n== Overview\n\nAPIM 3.7.0 introduces a Kubernetes plugin for APIM Gateway allowing the deployment of APIs using https:\/\/kubernetes.io\/docs\/concepts\/extend-kubernetes\/api-extension\/custom-resources\/[Custom Resource Definitions (CRDs)^].\n\nAPIs deployed using CRDs are not visible through APIM Console.\n\nWARNING: This plugin is currently in Alpha version; the API key policy isn't available for APIs deployed using this plugin.\n\nYou can find more detailed information about the plugin in the following sections:\n\n* link:\/apim\/3.x\/apim_kubernetes_quick_start.html[Quick Start]\n* link:\/apim\/3.x\/apim_kubernetes_installation.html[How to install]\n* link:\/apim\/3.x\/apim_kubernetes_custom_resources.html[Custom Resources]\n* link:\/apim\/3.x\/apim_kubernetes_admission_hook.html[Admission hook]\n","new_contents":"[[apim-kubernetes-overview]]\n= Kubernetes plugin\n:page-sidebar: apim_3_x_sidebar\n:page-permalink: apim\/3.x\/apim_kubernetes_overview.html\n:page-folder: apim\/kubernetes\n:page-layout: apim3x\n:page-liquid:\n\n[label label-version]#New in version 3.13#\n\n== Overview\n\nAPIM 3.13 introduces a Kubernetes plugin for APIM Gateway allowing the deployment of APIs using https:\/\/kubernetes.io\/docs\/concepts\/extend-kubernetes\/api-extension\/custom-resources\/[Custom Resource Definitions (CRDs)^].\n\nAPIs deployed using CRDs are not visible through APIM Console.\n\nWARNING: This plugin is currently in Alpha version; the API key policy isn't available for APIs deployed using this plugin.\n\nYou can find more detailed information about the plugin in the following sections:\n\n* link:\/apim\/3.x\/apim_kubernetes_quick_start.html[Quick Start]\n* link:\/apim\/3.x\/apim_kubernetes_installation.html[How to install]\n* link:\/apim\/3.x\/apim_kubernetes_custom_resources.html[Custom Resources]\n* link:\/apim\/3.x\/apim_kubernetes_admission_hook.html[Admission hook]\n","subject":"Fix APIM version to 3.13","message":"Fix APIM version to 3.13\n","lang":"AsciiDoc","license":"apache-2.0","repos":"gravitee-io\/gravitee-docs,gravitee-io\/gravitee-docs,gravitee-io\/gravitee-docs"} {"commit":"fbd8d2ed399230a8e3e1d469e9825eb0602fb981","old_file":"dsl\/camel-cli-connector\/src\/main\/docs\/cli-connector.adoc","new_file":"dsl\/camel-cli-connector\/src\/main\/docs\/cli-connector.adoc","old_contents":"= CLI Connector Component\n:doctitle: CLI Connector\n:shortname: cli-connector\n:artifactid: camel-cli-connector\n:description: Runtime adapter connecting with Camel CLI\n:since: 3.19\n:supportlevel: Preview\n\n*Since Camel {since}*\n\nThe camel-cli-connector allows the Camel CLI to be able to manage running Camel integrations.\n\nCurrently, only a local connector is provided, which means that the Camel CLI can only be\nmanaging local running Camel integrations.\n\nThese integrations can be using different runtimes such as Camel Main, Camel Spring Boot or Camel Quarkus etc.\n\n\n== Auto-detection from classpath\n\nTo use this implementation all you need to do is to add the `camel-cli-connector` dependency to the classpath,\nand Camel should auto-detect this on startup and log as follows:\n\n[source,text]\n----\nLocal CLI Connector started\n----\n","new_contents":"= CLI Connector Component\n:doctitle: CLI Connector\n:shortname: cli-connector\n:artifactid: camel-cli-connector\n:description: Runtime adapter connecting with Camel CLI\n:since: 3.19\n:supportlevel: Preview\n\/\/Manually maintained attributes\n:camel-spring-boot-name: cli-connector\n\n*Since Camel {since}*\n\nThe camel-cli-connector allows the Camel CLI to be able to manage running Camel integrations.\n\nCurrently, only a local connector is provided, which means that the Camel CLI can only be\nmanaging local running Camel integrations.\n\nThese integrations can be using different runtimes such as Camel Main, Camel Spring Boot or Camel Quarkus etc.\n\n\n== Auto-detection from classpath\n\nTo use this implementation all you need to do is to add the `camel-cli-connector` dependency to the classpath,\nand Camel should auto-detect this on startup and log as follows:\n\n[source,text]\n----\nLocal CLI Connector started\n----\n\n\ninclude::spring-boot:partial$starter.adoc[]\n","subject":"Add spring-boot link in doc","message":"Add spring-boot link in doc\n","lang":"AsciiDoc","license":"apache-2.0","repos":"apache\/camel,apache\/camel,tadayosi\/camel,cunningt\/camel,tadayosi\/camel,cunningt\/camel,christophd\/camel,cunningt\/camel,cunningt\/camel,christophd\/camel,apache\/camel,tadayosi\/camel,tadayosi\/camel,apache\/camel,cunningt\/camel,christophd\/camel,cunningt\/camel,tadayosi\/camel,christophd\/camel,tadayosi\/camel,apache\/camel,christophd\/camel,apache\/camel,christophd\/camel"} {"commit":"5059698c58cac5335abdf4bb35de4830764ca308","old_file":"documentation\/src\/docs\/asciidoc\/release-notes.adoc","new_file":"documentation\/src\/docs\/asciidoc\/release-notes.adoc","old_contents":"[[release-notes]]\n== Release Notes\n\n:numbered!:\n\ninclude::release-notes-5.0.0-ALPHA.adoc[]\n\ninclude::release-notes-5.0.0-M1.adoc[]\n\ninclude::release-notes-5.0.0-M2.adoc[]\n\ninclude::release-notes-5.0.0-M3.adoc[]\n\ninclude::release-notes-5.0.0-M4.adoc[]\n\ninclude::release-notes-5.0.0-M5.adoc[]\n\ninclude::release-notes-5.0.0-M6.adoc[]\n\ninclude::release-notes-5.0.0-RC1.adoc[]\n\ninclude::release-notes-5.0.0-RC2.adoc[]\n\ninclude::release-notes-5.0.0-RC3.adoc[]\n\ninclude::release-notes-5.0.0.adoc[]\n\ninclude::release-notes-5.1.0-M1.adoc[]\n\n:numbered:\n","new_contents":"[[release-notes]]\n== Release Notes\n\n:numbered!:\n\ninclude::release-notes-5.1.0-M1.adoc[]\n\ninclude::release-notes-5.0.0.adoc[]\n\ninclude::release-notes-5.0.0-RC3.adoc[]\n\ninclude::release-notes-5.0.0-RC2.adoc[]\n\ninclude::release-notes-5.0.0-RC1.adoc[]\n\ninclude::release-notes-5.0.0-M6.adoc[]\n\ninclude::release-notes-5.0.0-M5.adoc[]\n\ninclude::release-notes-5.0.0-M4.adoc[]\n\ninclude::release-notes-5.0.0-M3.adoc[]\n\ninclude::release-notes-5.0.0-M2.adoc[]\n\ninclude::release-notes-5.0.0-M1.adoc[]\n\ninclude::release-notes-5.0.0-ALPHA.adoc[]\n\n:numbered:\n","subject":"Order release notes from newest to oldest","message":"Order release notes from newest to oldest\n\nIssue: #1066\n","lang":"AsciiDoc","license":"epl-1.0","repos":"sbrannen\/junit-lambda,junit-team\/junit-lambda"} {"commit":"6b09164a364abe0e0b7531aca2380a4f33f5c8e4","old_file":"README.asciidoc","new_file":"README.asciidoc","old_contents":"== Fusioninventory Plugin\n\nhttps:\/\/coveralls.io\/r\/fusioninventory\/fusioninventory-for-glpi[image:https:\/\/coveralls.io\/repos\/fusioninventory\/fusioninventory-for-glpi\/badge.svg]\n\nThis plugin makes GLPI to process various types of tasks for Fusioninventory agents:\n\n* Computer inventory\n* Network discovery\n* Network (SNMP) inventory\n* Software deployment\n* VMWare ESX host remote inventory\n\nFor further information and documentation, please check http:\/\/www.fusioninventory.org .\n\nIf you want to report bugs or check for development status, you can check http:\/\/forge.fusioninventory.org .\n\n== Third-party code\n\n* PluginFusioninventoryFindFiles() is copyright http:\/\/rosettacode.org\/wiki\/Walk_a_directory\/Recursively#PHP[rosettacode.org] and\n made available under GNU Free Documentation License.\n\n== Third-party icons and images\n\nSome icons used in the project comes from the following set of\ngraphics licensed:\n\n* Dortmund is copyright by http:\/\/pc.de\/icons\/[PC.DE] and made available under a\n http:\/\/creativecommons.org\/licenses\/by\/3.0\/deed[Creative Commons Attribution 3.0 License].\n\n* Fugue Icons is copyright by http:\/\/p.yusukekamiyamane.com\/[Yusuke Kamiyamame] and made\n available under a http:\/\/creativecommons.org\/licenses\/by\/3.0\/deed[Creative Commons Attribution 3.0 License].\n","new_contents":"== Fusioninventory Plugin\n\nimage:https:\/\/travis-ci.org\/fusioninventory\/fusioninventory-for-glpi.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/fusioninventory\/fusioninventory-for-glpi\"]\nimage:https:\/\/coveralls.io\/repos\/fusioninventory\/fusioninventory-for-glpi\/badge.svg[\"Coverage Status\", link=\"https:\/\/coveralls.io\/r\/fusioninventory\/fusioninventory-for-glpi\"]\n\nThis plugin makes GLPI to process various types of tasks for Fusioninventory agents:\n\n* Computer inventory\n* Network discovery\n* Network (SNMP) inventory\n* Software deployment\n* VMWare ESX host remote inventory\n\nFor further information and documentation, please check http:\/\/www.fusioninventory.org .\n\nIf you want to report bugs or check for development status, you can check http:\/\/forge.fusioninventory.org .\n\n== Third-party code\n\n* PluginFusioninventoryFindFiles() is copyright http:\/\/rosettacode.org\/wiki\/Walk_a_directory\/Recursively#PHP[rosettacode.org] and\n made available under GNU Free Documentation License.\n\n== Third-party icons and images\n\nSome icons used in the project comes from the following set of\ngraphics licensed:\n\n* Dortmund is copyright by http:\/\/pc.de\/icons\/[PC.DE] and made available under a\n http:\/\/creativecommons.org\/licenses\/by\/3.0\/deed[Creative Commons Attribution 3.0 License].\n\n* Fugue Icons is copyright by http:\/\/p.yusukekamiyamane.com\/[Yusuke Kamiyamame] and made\n available under a http:\/\/creativecommons.org\/licenses\/by\/3.0\/deed[Creative Commons Attribution 3.0 License].\n","subject":"Add travis badge + fix coverage badge","message":"Add travis badge + fix coverage badge\n","lang":"AsciiDoc","license":"agpl-3.0","repos":"orthagh\/fusioninventory-for-glpi,orthagh\/fusioninventory-for-glpi,orthagh\/fusioninventory-for-glpi,orthagh\/fusioninventory-for-glpi,orthagh\/fusioninventory-for-glpi"} {"commit":"d9579412a0c893779ad2ab5399bb95a667667309","old_file":"README.asciidoc","new_file":"README.asciidoc","old_contents":"== Fusioninventory Plugin\n\nhttps:\/\/coveralls.io\/r\/fusioninventory\/fusioninventory-for-glpi[image:https:\/\/coveralls.io\/repos\/fusioninventory\/fusioninventory-for-glpi\/badge.svg]\n\nThis plugin makes GLPI to process various types of tasks for Fusioninventory agents:\n\n* Computer inventory\n* Network discovery\n* Network (SNMP) inventory\n* Software deployment\n* VMWare ESX host remote inventory\n\nFor further information and documentation, please check http:\/\/www.fusioninventory.org .\n\nIf you want to report bugs or check for development status, you can check http:\/\/forge.fusioninventory.org .\n\n== Third-party code\n\n* PluginFusioninventoryFindFiles() is copyright http:\/\/rosettacode.org\/wiki\/Walk_a_directory\/Recursively#PHP[rosettacode.org] and\n made available under GNU Free Documentation License.\n\n== Third-party icons and images\n\nSome icons used in the project comes from the following set of\ngraphics licensed:\n\n* Dortmund is copyright by http:\/\/pc.de\/icons\/[PC.DE] and made available under a\n http:\/\/creativecommons.org\/licenses\/by\/3.0\/deed[Creative Commons Attribution 3.0 License].\n\n* Fugue Icons is copyright by http:\/\/p.yusukekamiyamane.com\/[Yusuke Kamiyamame] and made\n available under a http:\/\/creativecommons.org\/licenses\/by\/3.0\/deed[Creative Commons Attribution 3.0 License].\n","new_contents":"== Fusioninventory Plugin\n\nimage:https:\/\/travis-ci.org\/fusioninventory\/fusioninventory-for-glpi.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/fusioninventory\/fusioninventory-for-glpi\"]\nimage:https:\/\/coveralls.io\/repos\/fusioninventory\/fusioninventory-for-glpi\/badge.svg[\"Coverage Status\", link=\"https:\/\/coveralls.io\/r\/fusioninventory\/fusioninventory-for-glpi\"]\n\nThis plugin makes GLPI to process various types of tasks for Fusioninventory agents:\n\n* Computer inventory\n* Network discovery\n* Network (SNMP) inventory\n* Software deployment\n* VMWare ESX host remote inventory\n\nFor further information and documentation, please check http:\/\/www.fusioninventory.org .\n\nIf you want to report bugs or check for development status, you can check http:\/\/forge.fusioninventory.org .\n\n== Third-party code\n\n* PluginFusioninventoryFindFiles() is copyright http:\/\/rosettacode.org\/wiki\/Walk_a_directory\/Recursively#PHP[rosettacode.org] and\n made available under GNU Free Documentation License.\n\n== Third-party icons and images\n\nSome icons used in the project comes from the following set of\ngraphics licensed:\n\n* Dortmund is copyright by http:\/\/pc.de\/icons\/[PC.DE] and made available under a\n http:\/\/creativecommons.org\/licenses\/by\/3.0\/deed[Creative Commons Attribution 3.0 License].\n\n* Fugue Icons is copyright by http:\/\/p.yusukekamiyamane.com\/[Yusuke Kamiyamame] and made\n available under a http:\/\/creativecommons.org\/licenses\/by\/3.0\/deed[Creative Commons Attribution 3.0 License].\n","subject":"Add travis badge + fix coverage badge","message":"Add travis badge + fix coverage badge\n","lang":"AsciiDoc","license":"agpl-3.0","repos":"TECLIB\/fusioninventory-for-glpi,mohierf\/fusioninventory-for-glpi,TECLIB\/fusioninventory-for-glpi,mohierf\/fusioninventory-for-glpi,itinside\/fusioninventory-for-glpi,fusioninventory\/fusioninventory-for-glpi,fusioninventory\/fusioninventory-for-glpi,fusioninventory\/fusioninventory-for-glpi,orthagh\/fusioninventory-for-glpi,TECLIB\/fusioninventory-for-glpi,itinside\/fusioninventory-for-glpi,orthagh\/fusioninventory-for-glpi,mohierf\/fusioninventory-for-glpi,orthagh\/fusioninventory-for-glpi,itinside\/fusioninventory-for-glpi,TECLIB\/fusioninventory-for-glpi,mohierf\/fusioninventory-for-glpi,itinside\/fusioninventory-for-glpi,fusioninventory\/fusioninventory-for-glpi,orthagh\/fusioninventory-for-glpi,fusioninventory\/fusioninventory-for-glpi,orthagh\/fusioninventory-for-glpi,itinside\/fusioninventory-for-glpi,mohierf\/fusioninventory-for-glpi,fusioninventory\/fusioninventory-for-glpi,TECLIB\/fusioninventory-for-glpi,TECLIB\/fusioninventory-for-glpi,mohierf\/fusioninventory-for-glpi"} {"commit":"89e7da34b9c4b072e3caab12dbe765b0a33be272","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Hawkular Android Client\n\nThis repository contains the source code for the Hawkular Android application.\n\n== License\n\n* http:\/\/www.apache.org\/licenses\/LICENSE-2.0.html[Apache Version 2.0]\n\n== Building\n\nifdef::env-github[]\n[link=https:\/\/travis-ci.org\/hawkular\/hawkular-android-client]\nimage:https:\/\/travis-ci.org\/hawkular\/hawkular-android-client.svg[\"Build Status\", link=\"https:\/\/travis-ci.org\/hawkular\/hawkular-android-client\"]\nendif::[]\n\nYou will need JDK 1.7+ installed.\nGradle, Android SDK and all dependencies will be downloaded automatically.\n\n----\n$ .\/gradlew clean assembleDebug\n----\n","new_contents":"= Hawkular Android Client\n\nThis repository contains the source code for the Hawkular Android application.\n\n== License\n\n* http:\/\/www.apache.org\/licenses\/LICENSE-2.0.html[Apache Version 2.0]\n\n== Building\n\nifdef::env-github[]\n[link=https:\/\/travis-ci.org\/hawkular\/hawkular-android-client]\nimage:https:\/\/travis-ci.org\/hawkular\/hawkular-android-client.svg[\"Build Status\", link=\"https:\/\/travis-ci.org\/hawkular\/hawkular-android-client\"]\nendif::[]\n\nYou will need JDK 1.7+ installed.\nGradle, Android SDK and all dependencies will be downloaded automatically.\n\n----\n$ .\/gradlew clean assembleDebug\n----\n\n== Reading\n\nThere are some documents on the link:..\/..\/wiki[Wiki], including API overview, UI mockups\nand instructions on running necessary servers for using the client in common and\npush notifications specifically.\n","subject":"Update readme with Wiki reference.","message":"Update readme with Wiki reference.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"sauravvishal8797\/hawkular-android-client,shubhamvashisht\/hawkular-android-client,anuj1708\/hawkular-android-client,danielpassos\/hawkular-android-client,anuj1708\/hawkular-android-buff,pg301\/hawkular-android-client,hawkular\/hawkular-android-client"} {"commit":"81ac2b91b6a6b7cf2422f6aabdd4164434b295dd","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Spring Boot and Two DataSources\n\nThis project demonstrates how to use two `DataSource` s with Spring Boot 2.0.\n\nIt utilizes: \n\n* Spring Data https:\/\/github.com\/spring-projects\/spring-data-jpa[JPA] \/ https:\/\/github.com\/spring-projects\/spring-data-rest[REST]\n* https:\/\/github.com\/flyway\/flyway[Flyway] migrations for the two `DataSource` s\n* Separate Hibernate properties for each `DataSource` defined in the application.yml\n* https:\/\/github.com\/thymeleaf\/thymeleaf[Thymeleaf] 3\n* https:\/\/github.com\/DataTables\/DataTablesSrc[DataTables]\n* Unit tests for components\n\n Note: It may take a few seconds for the app to start if no one has not accessed it recently","new_contents":"= Spring Boot and Two DataSources\n\nThis project demonstrates how to use two `DataSource` s with Spring Boot 2.1.\n\nIt utilizes: \n\n* Spring Data https:\/\/github.com\/spring-projects\/spring-data-jpa[JPA] \/ https:\/\/github.com\/spring-projects\/spring-data-rest[REST]\n* https:\/\/github.com\/flyway\/flyway[Flyway] migrations for the two `DataSource` s\n* Separate Hibernate properties for each `DataSource` defined in the application.yml\n* https:\/\/github.com\/thymeleaf\/thymeleaf[Thymeleaf] 3\n* https:\/\/github.com\/DataTables\/DataTablesSrc[DataTables]\n* Unit tests for components\n\n Note: It may take a few seconds for the app to start if no one has not accessed it recently","subject":"Adjust readme to Spring Boot 2.1","message":"Adjust readme to Spring Boot 2.1\n","lang":"AsciiDoc","license":"unlicense","repos":"drumonii\/SpringBootTwoDataSources"} {"commit":"ed1b52faf367fc3867a877f0fb63b3cf7034dcab","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Snoop - A Discovery Service for Java EE\n\nSnoop is an experimental registration and discovery service for Java EE based microservices.\n\n== Getting Started\n\n. Start the link:snoop-service.adoc[Snoop Service]\n. link:service-registration.adoc[Service Registration]\n. link:service-discovery.adoc[Service Discovery]\n\n== Maven\n\n. Released artifacts are available in link:http:\/\/search.maven.org\/#search%7Cga%7C1%7Csnoop[Maven Central]\n. Snapshots configuration:\n\n \n \n agilejava-snapshots<\/id>\n http:\/\/nexus.agilejava.eu\/content\/groups\/public<\/url>\n \n true<\/enabled>\n <\/snapshots>\n <\/repository>\n <\/repositories>\n\n== Examples\n\n- link:https:\/\/github.com\/ivargrimstad\/snoop-samples[snoop-samples@GitHub] \n- link:https:\/\/github.com\/arun-gupta\/microservices[https:\/\/github.com\/arun-gupta\/microservices]\n\n== FAQ\n\n- link:FAQ.adoc[Frequently Asked Questions]\n","new_contents":"= Snoop - A Discovery Service for Java EE\n\nSnoop is an experimental registration and discovery service for Java EE based microservices.\n\n== Getting Started\n\n. Start the link:snoop-service.adoc[Snoop Service]\n. link:service-registration.adoc[Service Registration]\n. link:service-discovery.adoc[Service Discovery]\n\n== Maven\n\n. Released artifacts are available in link:http:\/\/search.maven.org\/#search%7Cga%7C1%7Csnoop[Maven Central]\n. Snapshots configuration:\n\n \n \n agilejava-snapshots<\/id>\n http:\/\/nexus.agilejava.eu\/content\/groups\/public<\/url>\n \n true<\/enabled>\n <\/snapshots>\n <\/repository>\n <\/repositories>\n\n== Classloader Issue\n\n- link:classloader-issue.adoc[Description and Workaround]\n\n== Examples\n\n- link:https:\/\/github.com\/ivargrimstad\/snoop-samples[snoop-samples@GitHub]\n- link:https:\/\/github.com\/arun-gupta\/microservices[https:\/\/github.com\/arun-gupta\/microservices]\n\n== FAQ\n\n- link:FAQ.adoc[Frequently Asked Questions]\n","subject":"Add reference to classloader issue and workaround","message":"Add reference to classloader issue and workaround\n","lang":"AsciiDoc","license":"mit","repos":"ivargrimstad\/snoopee,ivargrimstad\/snoopee,ivargrimstad\/snoopee,ivargrimstad\/snoop,ivargrimstad\/snoop,ivargrimstad\/snoop"} {"commit":"475366b5f1daeb419f2805ee1e9eefad4df70803","old_file":"dsl\/camel-cli-connector\/src\/main\/docs\/cli-connector.adoc","new_file":"dsl\/camel-cli-connector\/src\/main\/docs\/cli-connector.adoc","old_contents":"= CLI Connector Component\n:doctitle: CLI Connector\n:shortname: cli-connector\n:artifactid: camel-cli-connector\n:description: Runtime adapter connecting with Camel CLI\n:since: 3.19\n:supportlevel: Preview\n\/\/Manually maintained attributes\n:camel-spring-boot-name: cli-connector\n\n*Since Camel {since}*\n\nThe camel-cli-connector allows the Camel CLI to be able to manage running Camel integrations.\n\nCurrently, only a local connector is provided, which means that the Camel CLI can only be\nmanaging local running Camel integrations.\n\nThese integrations can be using different runtimes such as Camel Main, Camel Spring Boot or Camel Quarkus etc.\n\n\n== Auto-detection from classpath\n\nTo use this implementation all you need to do is to add the `camel-cli-connector` dependency to the classpath,\nand Camel should auto-detect this on startup and log as follows:\n\n[source,text]\n----\nLocal CLI Connector started\n----\n\n\ninclude::spring-boot:partial$starter.adoc[]\n","new_contents":"= CLI Connector Component\n:doctitle: CLI Connector\n:shortname: cli-connector\n:artifactid: camel-cli-connector\n:description: Runtime adapter connecting with Camel CLI\n:since: 3.19\n:supportlevel: Preview\n\n*Since Camel {since}*\n\nThe camel-cli-connector allows the Camel CLI to be able to manage running Camel integrations.\n\nCurrently, only a local connector is provided, which means that the Camel CLI can only be\nmanaging local running Camel integrations.\n\nThese integrations can be using different runtimes such as Camel Main, Camel Spring Boot or Camel Quarkus etc.\n\n\n== Auto-detection from classpath\n\nTo use this implementation all you need to do is to add the `camel-cli-connector` dependency to the classpath,\nand Camel should auto-detect this on startup and log as follows:\n\n[source,text]\n----\nLocal CLI Connector started\n----\n","subject":"Revert \"Add spring-boot link in doc\"","message":"Revert \"Add spring-boot link in doc\"\n\nThis reverts commit fbd8d2ed399230a8e3e1d469e9825eb0602fb981.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"cunningt\/camel,christophd\/camel,tadayosi\/camel,cunningt\/camel,tadayosi\/camel,christophd\/camel,apache\/camel,apache\/camel,tadayosi\/camel,christophd\/camel,cunningt\/camel,tadayosi\/camel,christophd\/camel,cunningt\/camel,cunningt\/camel,christophd\/camel,cunningt\/camel,apache\/camel,tadayosi\/camel,apache\/camel,apache\/camel,christophd\/camel,apache\/camel,tadayosi\/camel"} {"commit":"c55eb2c72d299f4d15f5f711ab62d13a59b39f28","old_file":"LICENSE.adoc","new_file":"LICENSE.adoc","old_contents":"\nCopyright 2016 higherfrequencytrading.com\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.","new_contents":"\n== Copyright 2016 higherfrequencytrading.com\n\nLicensed under the *Apache License, Version 2.0* (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.","subject":"Migrate to Apache v2.0 license","message":"Migrate to Apache v2.0 license\n","lang":"AsciiDoc","license":"apache-2.0","repos":"OpenHFT\/Chronicle-Bytes"} {"commit":"009eb4b932af11292fcd86c9427a867dfc4486dc","old_file":"operators\/olm-webhooks.adoc","new_file":"operators\/olm-webhooks.adoc","old_contents":"[id=\"olm-webhooks\"]\n= Managing admission webhooks in Operator Lifecycle Manager\ninclude::modules\/common-attributes.adoc[]\n:context: olm-webhooks\n\ntoc::[]\n\nValidating and mutating admission webhooks allow Operator authors to intercept,\nmodify, and accept or reject resources before they are handled by the Operator\ncontroller. Operator Lifecycle Manager (OLM) can manage the lifecycle of these\nwebhooks when they are shipped alongside your Operator.\n\ninclude::modules\/olm-defining-csv-webhooks.adoc[leveloffset=+1]\ninclude::modules\/olm-webhook-considerations.adoc[leveloffset=+1]\n\n[id=\"olm-webhooks-additional-resources\"]\n== Additional resources\n\n* xref:..\/architecture\/admission-plug-ins.adoc#admission-webhook-types_admission-plug-ins[Types of webhook admission plug-ins]\n","new_contents":"[id=\"olm-webhooks\"]\n= Managing admission webhooks in Operator Lifecycle Manager\ninclude::modules\/common-attributes.adoc[]\n:context: olm-webhooks\n\ntoc::[]\n\nValidating and mutating admission webhooks allow Operator authors to intercept,\nmodify, and accept or reject resources before they are saved to the object store\nand handled by the Operator controller. Operator Lifecycle Manager (OLM) can\nmanage the lifecycle of these webhooks when they are shipped alongside your\nOperator.\n\ninclude::modules\/olm-defining-csv-webhooks.adoc[leveloffset=+1]\ninclude::modules\/olm-webhook-considerations.adoc[leveloffset=+1]\n\n[id=\"olm-webhooks-additional-resources\"]\n== Additional resources\n\n* xref:..\/architecture\/admission-plug-ins.adoc#admission-webhook-types_admission-plug-ins[Types of webhook admission plug-ins]\n","subject":"Edit to OLM webhook workflow","message":"Edit to OLM webhook workflow\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"e84b61358f35d622c1da53330f5140b011053dbb","old_file":"docs\/reference\/migration\/index.asciidoc","new_file":"docs\/reference\/migration\/index.asciidoc","old_contents":"[[breaking-changes]]\n= Breaking changes\n\n[partintro]\n--\nThis section discusses the changes that you need to be aware of when migrating\nyour application from one version of Elasticsearch to another.\n\nAs a general rule:\n\n* Migration between major versions -- e.g. `1.x` to `2.x` --\n requires a <>.\n\n* Migration between minor versions -- e.g. `1.x` to `1.y` -- can be\n performed by <>.\n\nSee <> for more info.\n--\ninclude::migrate_3_0.asciidoc[]\n\ninclude::migrate_2_1.asciidoc[]\n\ninclude::migrate_2_2.asciidoc[]\n\ninclude::migrate_2_0.asciidoc[]\n\ninclude::migrate_1_6.asciidoc[]\n\ninclude::migrate_1_4.asciidoc[]\n\ninclude::migrate_1_0.asciidoc[]\n","new_contents":"[[breaking-changes]]\n= Breaking changes\n\n[partintro]\n--\nThis section discusses the changes that you need to be aware of when migrating\nyour application from one version of Elasticsearch to another.\n\nAs a general rule:\n\n* Migration between major versions -- e.g. `1.x` to `2.x` --\n requires a <>.\n\n* Migration between minor versions -- e.g. `1.x` to `1.y` -- can be\n performed by <>.\n\nSee <> for more info.\n--\ninclude::migrate_3_0.asciidoc[]\n\ninclude::migrate_2_2.asciidoc[]\n\ninclude::migrate_2_1.asciidoc[]\n\ninclude::migrate_2_0.asciidoc[]\n\ninclude::migrate_1_6.asciidoc[]\n\ninclude::migrate_1_4.asciidoc[]\n\ninclude::migrate_1_0.asciidoc[]\n","subject":"Fix version order for breaking changes docs","message":"Fix version order for breaking changes docs\n","lang":"AsciiDoc","license":"apache-2.0","repos":"ESamir\/elasticsearch,uschindler\/elasticsearch,s1monw\/elasticsearch,henakamaMSFT\/elasticsearch,StefanGor\/elasticsearch,masaruh\/elasticsearch,awislowski\/elasticsearch,strapdata\/elassandra,camilojd\/elasticsearch,kalimatas\/elasticsearch,brandonkearby\/elasticsearch,IanvsPoplicola\/elasticsearch,diendt\/elasticsearch,gmarz\/elasticsearch,JervyShi\/elasticsearch,snikch\/elasticsearch,jchampion\/elasticsearch,bawse\/elasticsearch,mapr\/elasticsearch,gingerwizard\/elasticsearch,jimczi\/elasticsearch,fred84\/elasticsearch,MisterAndersen\/elasticsearch,rajanm\/elasticsearch,masaruh\/elasticsearch,sreeramjayan\/elasticsearch,JSCooke\/elasticsearch,jbertouch\/elasticsearch,gmarz\/elasticsearch,pozhidaevak\/elasticsearch,sneivandt\/elasticsearch,fforbeck\/elasticsearch,avikurapati\/elasticsearch,artnowo\/elasticsearch,scottsom\/elasticsearch,wuranbo\/elasticsearch,gingerwizard\/elasticsearch,Shepard1212\/elasticsearch,glefloch\/elasticsearch,shreejay\/elasticsearch,vroyer\/elasticassandra,jchampion\/elasticsearch,pozhidaevak\/elasticsearch,davidvgalbraith\/elasticsearch,liweinan0423\/elasticsearch,ricardocerq\/elasticsearch,ivansun1010\/elasticsearch,jchampion\/elasticsearch,davidvgalbraith\/elasticsearch,umeshdangat\/elasticsearch,obourgain\/elasticsearch,Helen-Zhao\/elasticsearch,liweinan0423\/elasticsearch,mohit\/elasticsearch,episerver\/elasticsearch,tebriel\/elasticsearch,uschindler\/elasticsearch,spiegela\/elasticsearch,trangvh\/elasticsearch,ivansun1010\/elasticsearch,ivansun1010\/elasticsearch,strapdata\/elassandra,avikurapati\/elasticsearch,dpursehouse\/elasticsearch,awislowski\/elasticsearch,markharwood\/elasticsearch,GlenRSmith\/elasticsearch,HonzaKral\/elasticsearch,coding0011\/elasticsearch,nknize\/elasticsearch,mortonsykes\/elasticsearch,dpursehouse\/elasticsearch,HonzaKral\/elasticsearch,nezirus\/elasticsearch,scottsom\/elasticsearch,i-am-Nathan\/elasticsearch,mikemccand\/elasticsearch,trangvh\/elasticsearch,geidies\/elasticsearch,geidies\/elasticsearch,yanjunh\/elasticsearch,yynil\/elasticsearch,fforbeck\/elasticsearch,yynil\/elasticsearch,scorpionvicky\/elasticsearch,wenpos\/elasticsearch,Stacey-Gammon\/elasticsearch,markharwood\/elasticsearch,qwerty4030\/elasticsearch,coding0011\/elasticsearch,avikurapati\/elasticsearch,myelin\/elasticsearch,nilabhsagar\/elasticsearch,maddin2016\/elasticsearch,naveenhooda2000\/elasticsearch,zkidkid\/elasticsearch,s1monw\/elasticsearch,JSCooke\/elasticsearch,LewayneNaidoo\/elasticsearch,snikch\/elasticsearch,episerver\/elasticsearch,mmaracic\/elasticsearch,a2lin\/elasticsearch,njlawton\/elasticsearch,alexshadow007\/elasticsearch,spiegela\/elasticsearch,gingerwizard\/elasticsearch,jimczi\/elasticsearch,s1monw\/elasticsearch,jchampion\/elasticsearch,elasticdog\/elasticsearch,spiegela\/elasticsearch,henakamaMSFT\/elasticsearch,StefanGor\/elasticsearch,fforbeck\/elasticsearch,pozhidaevak\/elasticsearch,a2lin\/elasticsearch,girirajsharma\/elasticsearch,wenpos\/elasticsearch,sreeramjayan\/elasticsearch,glefloch\/elasticsearch,vroyer\/elasticassandra,mohit\/elasticsearch,jpountz\/elasticsearch,geidies\/elasticsearch,strapdata\/elassandra,alexshadow007\/elasticsearch,markharwood\/elasticsearch,mapr\/elasticsearch,qwerty4030\/elasticsearch,nilabhsagar\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,jbertouch\/elasticsearch,diendt\/elasticsearch,LewayneNaidoo\/elasticsearch,xuzha\/elasticsearch,sneivandt\/elasticsearch,sreeramjayan\/elasticsearch,rlugojr\/elasticsearch,JervyShi\/elasticsearch,qwerty4030\/elasticsearch,trangvh\/elasticsearch,henakamaMSFT\/elasticsearch,tebriel\/elasticsearch,jprante\/elasticsearch,elasticdog\/elasticsearch,cwurm\/elasticsearch,markwalkom\/elasticsearch,nomoa\/elasticsearch,trangvh\/elasticsearch,martinstuga\/elasticsearch,strapdata\/elassandra5-rc,sneivandt\/elasticsearch,kalimatas\/elasticsearch,episerver\/elasticsearch,wuranbo\/elasticsearch,tebriel\/elasticsearch,shreejay\/elasticsearch,fernandozhu\/elasticsearch,wuranbo\/elasticsearch,rlugojr\/elasticsearch,artnowo\/elasticsearch,scottsom\/elasticsearch,awislowski\/elasticsearch,awislowski\/elasticsearch,uschindler\/elasticsearch,C-Bish\/elasticsearch,clintongormley\/elasticsearch,mmaracic\/elasticsearch,nilabhsagar\/elasticsearch,njlawton\/elasticsearch,a2lin\/elasticsearch,nknize\/elasticsearch,dongjoon-hyun\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,gfyoung\/elasticsearch,fforbeck\/elasticsearch,JervyShi\/elasticsearch,gingerwizard\/elasticsearch,JervyShi\/elasticsearch,brandonkearby\/elasticsearch,xuzha\/elasticsearch,a2lin\/elasticsearch,Stacey-Gammon\/elasticsearch,tebriel\/elasticsearch,lks21c\/elasticsearch,kalimatas\/elasticsearch,jprante\/elasticsearch,davidvgalbraith\/elasticsearch,sneivandt\/elasticsearch,nknize\/elasticsearch,HonzaKral\/elasticsearch,naveenhooda2000\/elasticsearch,JackyMai\/elasticsearch,gingerwizard\/elasticsearch,mohit\/elasticsearch,martinstuga\/elasticsearch,umeshdangat\/elasticsearch,i-am-Nathan\/elasticsearch,nezirus\/elasticsearch,scorpionvicky\/elasticsearch,markwalkom\/elasticsearch,C-Bish\/elasticsearch,mmaracic\/elasticsearch,JackyMai\/elasticsearch,rajanm\/elasticsearch,LeoYao\/elasticsearch,jimczi\/elasticsearch,myelin\/elasticsearch,markwalkom\/elasticsearch,GlenRSmith\/elasticsearch,ESamir\/elasticsearch,spiegela\/elasticsearch,snikch\/elasticsearch,MaineC\/elasticsearch,elasticdog\/elasticsearch,JSCooke\/elasticsearch,nknize\/elasticsearch,s1monw\/elasticsearch,mmaracic\/elasticsearch,snikch\/elasticsearch,ivansun1010\/elasticsearch,mikemccand\/elasticsearch,ESamir\/elasticsearch,martinstuga\/elasticsearch,davidvgalbraith\/elasticsearch,nezirus\/elasticsearch,MaineC\/elasticsearch,C-Bish\/elasticsearch,masaruh\/elasticsearch,tebriel\/elasticsearch,nknize\/elasticsearch,nazarewk\/elasticsearch,jpountz\/elasticsearch,nazarewk\/elasticsearch,cwurm\/elasticsearch,scorpionvicky\/elasticsearch,IanvsPoplicola\/elasticsearch,camilojd\/elasticsearch,Shepard1212\/elasticsearch,MisterAndersen\/elasticsearch,girirajsharma\/elasticsearch,trangvh\/elasticsearch,avikurapati\/elasticsearch,winstonewert\/elasticsearch,lks21c\/elasticsearch,Helen-Zhao\/elasticsearch,C-Bish\/elasticsearch,yynil\/elasticsearch,palecur\/elasticsearch,gfyoung\/elasticsearch,gingerwizard\/elasticsearch,martinstuga\/elasticsearch,xuzha\/elasticsearch,tebriel\/elasticsearch,nomoa\/elasticsearch,henakamaMSFT\/elasticsearch,sreeramjayan\/elasticsearch,fred84\/elasticsearch,i-am-Nathan\/elasticsearch,clintongormley\/elasticsearch,sreeramjayan\/elasticsearch,camilojd\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,nezirus\/elasticsearch,obourgain\/elasticsearch,IanvsPoplicola\/elasticsearch,StefanGor\/elasticsearch,mjason3\/elasticsearch,a2lin\/elasticsearch,fforbeck\/elasticsearch,dongjoon-hyun\/elasticsearch,scorpionvicky\/elasticsearch,qwerty4030\/elasticsearch,umeshdangat\/elasticsearch,nilabhsagar\/elasticsearch,lks21c\/elasticsearch,mjason3\/elasticsearch,brandonkearby\/elasticsearch,njlawton\/elasticsearch,GlenRSmith\/elasticsearch,mapr\/elasticsearch,markharwood\/elasticsearch,wangtuo\/elasticsearch,LewayneNaidoo\/elasticsearch,njlawton\/elasticsearch,winstonewert\/elasticsearch,C-Bish\/elasticsearch,mikemccand\/elasticsearch,palecur\/elasticsearch,scottsom\/elasticsearch,s1monw\/elasticsearch,winstonewert\/elasticsearch,ivansun1010\/elasticsearch,yynil\/elasticsearch,rlugojr\/elasticsearch,Helen-Zhao\/elasticsearch,xuzha\/elasticsearch,jpountz\/elasticsearch,snikch\/elasticsearch,mortonsykes\/elasticsearch,davidvgalbraith\/elasticsearch,ZTE-PaaS\/elasticsearch,mortonsykes\/elasticsearch,winstonewert\/elasticsearch,maddin2016\/elasticsearch,girirajsharma\/elasticsearch,ivansun1010\/elasticsearch,yynil\/elasticsearch,elasticdog\/elasticsearch,GlenRSmith\/elasticsearch,vroyer\/elassandra,polyfractal\/elasticsearch,girirajsharma\/elasticsearch,umeshdangat\/elasticsearch,nazarewk\/elasticsearch,Helen-Zhao\/elasticsearch,obourgain\/elasticsearch,dongjoon-hyun\/elasticsearch,jbertouch\/elasticsearch,Shepard1212\/elasticsearch,MaineC\/elasticsearch,robin13\/elasticsearch,wuranbo\/elasticsearch,sneivandt\/elasticsearch,xuzha\/elasticsearch,Shepard1212\/elasticsearch,fernandozhu\/elasticsearch,ESamir\/elasticsearch,LeoYao\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,markwalkom\/elasticsearch,yynil\/elasticsearch,shreejay\/elasticsearch,ESamir\/elasticsearch,vroyer\/elassandra,palecur\/elasticsearch,umeshdangat\/elasticsearch,mmaracic\/elasticsearch,artnowo\/elasticsearch,jprante\/elasticsearch,Shepard1212\/elasticsearch,myelin\/elasticsearch,kalimatas\/elasticsearch,strapdata\/elassandra5-rc,markwalkom\/elasticsearch,ESamir\/elasticsearch,gfyoung\/elasticsearch,martinstuga\/elasticsearch,scorpionvicky\/elasticsearch,awislowski\/elasticsearch,maddin2016\/elasticsearch,strapdata\/elassandra5-rc,rajanm\/elasticsearch,clintongormley\/elasticsearch,rajanm\/elasticsearch,lks21c\/elasticsearch,uschindler\/elasticsearch,zkidkid\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,polyfractal\/elasticsearch,artnowo\/elasticsearch,vroyer\/elasticassandra,ricardocerq\/elasticsearch,ricardocerq\/elasticsearch,JackyMai\/elasticsearch,LeoYao\/elasticsearch,JackyMai\/elasticsearch,LewayneNaidoo\/elasticsearch,maddin2016\/elasticsearch,shreejay\/elasticsearch,robin13\/elasticsearch,ZTE-PaaS\/elasticsearch,JSCooke\/elasticsearch,coding0011\/elasticsearch,avikurapati\/elasticsearch,LeoYao\/elasticsearch,diendt\/elasticsearch,JervyShi\/elasticsearch,yanjunh\/elasticsearch,geidies\/elasticsearch,wenpos\/elasticsearch,LeoYao\/elasticsearch,ZTE-PaaS\/elasticsearch,coding0011\/elasticsearch,mohit\/elasticsearch,jprante\/elasticsearch,artnowo\/elasticsearch,nazarewk\/elasticsearch,mjason3\/elasticsearch,jchampion\/elasticsearch,kalimatas\/elasticsearch,shreejay\/elasticsearch,njlawton\/elasticsearch,rajanm\/elasticsearch,geidies\/elasticsearch,cwurm\/elasticsearch,clintongormley\/elasticsearch,rlugojr\/elasticsearch,Helen-Zhao\/elasticsearch,elasticdog\/elasticsearch,martinstuga\/elasticsearch,mjason3\/elasticsearch,robin13\/elasticsearch,qwerty4030\/elasticsearch,myelin\/elasticsearch,Stacey-Gammon\/elasticsearch,yanjunh\/elasticsearch,strapdata\/elassandra,glefloch\/elasticsearch,naveenhooda2000\/elasticsearch,gingerwizard\/elasticsearch,obourgain\/elasticsearch,nazarewk\/elasticsearch,MisterAndersen\/elasticsearch,strapdata\/elassandra5-rc,JackyMai\/elasticsearch,liweinan0423\/elasticsearch,nomoa\/elasticsearch,MisterAndersen\/elasticsearch,jpountz\/elasticsearch,bawse\/elasticsearch,MaineC\/elasticsearch,wangtuo\/elasticsearch,mapr\/elasticsearch,pozhidaevak\/elasticsearch,zkidkid\/elasticsearch,brandonkearby\/elasticsearch,Stacey-Gammon\/elasticsearch,jbertouch\/elasticsearch,nezirus\/elasticsearch,jimczi\/elasticsearch,IanvsPoplicola\/elasticsearch,MisterAndersen\/elasticsearch,fernandozhu\/elasticsearch,pozhidaevak\/elasticsearch,LewayneNaidoo\/elasticsearch,masaruh\/elasticsearch,gfyoung\/elasticsearch,fernandozhu\/elasticsearch,gmarz\/elasticsearch,mikemccand\/elasticsearch,GlenRSmith\/elasticsearch,cwurm\/elasticsearch,mmaracic\/elasticsearch,jpountz\/elasticsearch,yanjunh\/elasticsearch,maddin2016\/elasticsearch,strapdata\/elassandra,glefloch\/elasticsearch,IanvsPoplicola\/elasticsearch,fred84\/elasticsearch,alexshadow007\/elasticsearch,LeoYao\/elasticsearch,mortonsykes\/elasticsearch,StefanGor\/elasticsearch,wenpos\/elasticsearch,rajanm\/elasticsearch,xuzha\/elasticsearch,clintongormley\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,strapdata\/elassandra5-rc,yanjunh\/elasticsearch,episerver\/elasticsearch,MaineC\/elasticsearch,gfyoung\/elasticsearch,ZTE-PaaS\/elasticsearch,StefanGor\/elasticsearch,diendt\/elasticsearch,nomoa\/elasticsearch,markwalkom\/elasticsearch,winstonewert\/elasticsearch,polyfractal\/elasticsearch,dpursehouse\/elasticsearch,dpursehouse\/elasticsearch,JervyShi\/elasticsearch,fred84\/elasticsearch,Stacey-Gammon\/elasticsearch,bawse\/elasticsearch,geidies\/elasticsearch,lks21c\/elasticsearch,palecur\/elasticsearch,wangtuo\/elasticsearch,spiegela\/elasticsearch,mapr\/elasticsearch,polyfractal\/elasticsearch,henakamaMSFT\/elasticsearch,jpountz\/elasticsearch,palecur\/elasticsearch,diendt\/elasticsearch,jimczi\/elasticsearch,JSCooke\/elasticsearch,ricardocerq\/elasticsearch,jbertouch\/elasticsearch,davidvgalbraith\/elasticsearch,uschindler\/elasticsearch,robin13\/elasticsearch,alexshadow007\/elasticsearch,cwurm\/elasticsearch,markharwood\/elasticsearch,bawse\/elasticsearch,LeoYao\/elasticsearch,polyfractal\/elasticsearch,mohit\/elasticsearch,camilojd\/elasticsearch,mortonsykes\/elasticsearch,jprante\/elasticsearch,wangtuo\/elasticsearch,scottsom\/elasticsearch,wenpos\/elasticsearch,nomoa\/elasticsearch,coding0011\/elasticsearch,jchampion\/elasticsearch,myelin\/elasticsearch,masaruh\/elasticsearch,fernandozhu\/elasticsearch,camilojd\/elasticsearch,alexshadow007\/elasticsearch,girirajsharma\/elasticsearch,wuranbo\/elasticsearch,sreeramjayan\/elasticsearch,gmarz\/elasticsearch,jbertouch\/elasticsearch,gmarz\/elasticsearch,dpursehouse\/elasticsearch,i-am-Nathan\/elasticsearch,bawse\/elasticsearch,mapr\/elasticsearch,ZTE-PaaS\/elasticsearch,mjason3\/elasticsearch,zkidkid\/elasticsearch,liweinan0423\/elasticsearch,ricardocerq\/elasticsearch,clintongormley\/elasticsearch,markharwood\/elasticsearch,naveenhooda2000\/elasticsearch,polyfractal\/elasticsearch,mikemccand\/elasticsearch,fred84\/elasticsearch,obourgain\/elasticsearch,dongjoon-hyun\/elasticsearch,snikch\/elasticsearch,i-am-Nathan\/elasticsearch,naveenhooda2000\/elasticsearch,girirajsharma\/elasticsearch,nilabhsagar\/elasticsearch,diendt\/elasticsearch,liweinan0423\/elasticsearch,HonzaKral\/elasticsearch,robin13\/elasticsearch,rlugojr\/elasticsearch,brandonkearby\/elasticsearch,zkidkid\/elasticsearch,camilojd\/elasticsearch,wangtuo\/elasticsearch,episerver\/elasticsearch,dongjoon-hyun\/elasticsearch,vroyer\/elassandra,glefloch\/elasticsearch"} {"commit":"bb696411acc9f2bed981b1f3c9aa5a13cdfd91c8","old_file":"doc\/resources\/doc\/sources\/index.adoc","new_file":"doc\/resources\/doc\/sources\/index.adoc","old_contents":"= Edge Documentation\n\nEdge is a starting point for creating Clojure projects.\nNot sure if Edge is for you? See <>.\n\n== Get Started\n\nAre you new to Edge?\nThis is the place to start!\n\n. link:https:\/\/clojure.org\/guides\/getting_started[Install clj] (<>)\n. <>\n. <>\n. <>\n\n== Using Edge\n\n\/\/. Configuration\n\/\/. Components\n* <>\n* <>\n* <>\n* <>\n\n== The Edge Project\n\n* <>\n* <>\n\/\/* Getting help\n\/\/* How to get involved\n\/\/* License\n","new_contents":"= Edge Documentation\n\nEdge is a starting point for creating Clojure projects of all sizes.\n\n== Get Started\n\nAre you new to Edge?\nThis is the place to start!\n\n. link:https:\/\/clojure.org\/guides\/getting_started[Install clj] (<>)\n. <>\n. <>\n. <>\n\n== Using Edge\n\n\/\/. Configuration\n\/\/. Components\n* <>\n* <>\n* <>\n* <>\n\n== The Edge Project\n\n* <>\n* <>\n\/\/* Getting help\n\/\/* How to get involved\n\/\/* License\n","subject":"Remove Why Edge? link from preamble","message":"Remove Why Edge? link from preamble\n\nIt was not useful.\n","lang":"AsciiDoc","license":"mit","repos":"juxt\/edge,juxt\/edge"} {"commit":"920d5fe7ab3e56c7a2bc8ebaa186698948ab9b23","old_file":"documentation\/src\/docs\/asciidoc\/overview.adoc","new_file":"documentation\/src\/docs\/asciidoc\/overview.adoc","old_contents":"[[overview]]\n== Overview\n\nThe goal of this document is to provide comprehensive reference documentation for both\nprogrammers writing tests and extension authors.\n\nWARNING: Work in progress!\n\n\n=== Supported Java Versions\n\nJUnit 5 only supports Java 8 and above. However, you can still test classes compiled with\nlower versions.\n\n\n== Installation\n\nSnapshot artifacts are deployed to Sonatype's {snapshot-repo}[snapshots repository].\n\n[[dependency-metadata]]\n=== Dependency Metadata\n\n* *Group ID*: `org.junit`\n* *Version*: `{junit-version}` \n* *Artifact IDs*:\n** `junit-commons`\n** `junit-console`\n** `junit-engine-api`\n** `junit-gradle`\n** `junit-launcher`\n** `junit4-engine`\n** `junit4-runner`\n** `junit5-api`\n** `junit5-engine`\n** `surefire-junit5`\n\nSee also: {snapshot-repo}\/org\/junit\/\n\n=== JUnit 5 Sample Projects\n\nThe {junit5-samples-repo}[`junit5-samples`] repository hosts a collection of sample\nprojects based on JUnit 5. You'll find the respective `build.gradle` and `pom.xml` in\nthe projects below.\n\n* For Gradle, check out the `{junit5-gradle-consumer}` project.\n* For Maven, check out the `{junit5-maven-consumer}` project.\n","new_contents":"[[overview]]\n== Overview\n\nThe goal of this document is to provide comprehensive reference documentation for both\nprogrammers writing tests and extension authors.\n\nWARNING: Work in progress!\n\n\n=== Supported Java Versions\n\nJUnit 5 only supports Java 8 and above. However, you can still test classes compiled with\nlower versions.\n\n\n== Installation\n\nSnapshot artifacts are deployed to Sonatype's {snapshot-repo}[snapshots repository].\n\n[[dependency-metadata]]\n=== Dependency Metadata\n\n* *Group ID*: `org.junit`\n* *Version*: `{junit-version}`\n* *Artifact IDs*:\n** `junit-commons`\n** `junit-console`\n** `junit-engine-api`\n** `junit-gradle`\n** `junit-launcher`\n** `junit4-engine`\n** `junit4-runner`\n** `junit5-api`\n** `junit5-engine`\n** `surefire-junit5`\n\nSee also: {snapshot-repo}\/org\/junit\/\n\n=== JUnit 5 Sample Projects\n\nThe {junit5-samples-repo}[`junit5-samples`] repository hosts a collection of sample\nprojects based on JUnit 5. You'll find the respective `build.gradle` and `pom.xml` in\nthe projects below.\n\n* For Gradle, check out the `{junit5-gradle-consumer}` project.\n* For Maven, check out the `{junit5-maven-consumer}` project.\n","subject":"Apply Spotless to User Guide","message":"Apply Spotless to User Guide\n\n------------------------------------------------------------------------\nOn behalf of the community, the JUnit Lambda Team thanks Klarna AB\n(http:\/\/www.klarna.com) for supporting the JUnit crowdfunding campaign!\n------------------------------------------------------------------------\n","lang":"AsciiDoc","license":"epl-1.0","repos":"marcphilipp\/junit5,marcphilipp\/junit-lambda,sbrannen\/junit-lambda,junit-team\/junit-lambda"} {"commit":"babf52d8f8101d018e357bdd47e5ccb9d8af14d5","old_file":"src\/jqassistant\/structure.adoc","new_file":"src\/jqassistant\/structure.adoc","old_contents":"[[structure:Default]]\n[role=group,includesConstraints=\"structure:packagesShouldConformToTheMainBuildingBlocks\"]\n\nAll the blackboxes above should correspond to Java packages. Those packages should have no dependencies to other packages outside themselves but for the support or shared package:\n\n[[structure:packagesShouldConformToTheMainBuildingBlocks]]\n[source,cypher,role=constraint,requiresConcepts=\"structure:configPackages,structure:supportingPackages\"]\n.Top level packages should conform to the main building blocks.\n----\nMATCH (a:Artifact {type: 'jar'})\nMATCH (a) -[:CONTAINS]-> (p1:Package) -[:DEPENDS_ON]-> (p2:Package) <-[:CONTAINS]- (a)\nWHERE not p1:Config\n and not (p1) -[:CONTAINS]-> (p2)\n and not p2:Support\n and not p1.fqn = 'ac.simons.biking2.summary'\nRETURN p1, p2\n----","new_contents":"[[structure:Default]]\n[role=group,includesConstraints=\"structure:packagesShouldConformToTheMainBuildingBlocks\"]\n\nAll the blackboxes above should correspond to Java packages. Those packages should have no dependencies to other packages outside themselves but for the support or shared package:\n\n[[structure:packagesShouldConformToTheMainBuildingBlocks]]\n[source,cypher,role=constraint,requiresConcepts=\"structure:configPackages,structure:supportingPackages\"]\n.Top level packages should conform to the main building blocks.\n----\nMATCH (a:Main:Artifact)\nMATCH (a) -[:CONTAINS]-> (p1:Package) -[:DEPENDS_ON]-> (p2:Package) <-[:CONTAINS]- (a)\nWHERE not p1:Config\n and not (p1) -[:CONTAINS]-> (p2)\n and not p2:Support\n and not p1.fqn = 'ac.simons.biking2.summary'\nRETURN p1, p2\n----","subject":"Use 'Main'-Label instead of type-attribute.","message":"Use 'Main'-Label instead of type-attribute.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"tullo\/biking2,michael-simons\/biking2,tullo\/biking2,tullo\/biking2,tullo\/biking2,michael-simons\/biking2,michael-simons\/biking2,michael-simons\/biking2"} {"commit":"8299e439b97f466d83a34db371b265dd265a1267","old_file":"documentation\/src\/docs\/asciidoc\/release-notes\/release-notes-5.5.0-M2.adoc","new_file":"documentation\/src\/docs\/asciidoc\/release-notes\/release-notes-5.5.0-M2.adoc","old_contents":"[[release-notes-5.5.0-M2]]\n== 5.5.0-M2️\n\n*Date of Release:* ❓\n\n*Scope:* ❓\n\nFor a complete list of all _closed_ issues and pull requests for this release, consult\nthe link:{junit5-repo}+\/milestone\/37?closed=1+[5.5 M2] milestone page in the JUnit repository\non GitHub.\n\n\n[[release-notes-5.5.0-M2-junit-platform]]\n=== JUnit Platform\n\n==== Bug Fixes\n\n* ❓\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* ❓\n\n\n[[release-notes-5.5.0-M2-junit-jupiter]]\n=== JUnit Jupiter\n\n==== Bug Fixes\n\n* Parameterized tests no longer throw an `ArrayStoreException` when creating human-readable\n test names.\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* New `booleans` property in `ValueSource`.\n\n\n[[release-notes-5.5.0-M2-junit-vintage]]\n=== JUnit Vintage\n\n==== Bug Fixes\n\n* ❓\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* ❓\n","new_contents":"[[release-notes-5.5.0-M2]]\n== 5.5.0-M2️\n\n*Date of Release:* ❓\n\n*Scope:* ❓\n\nFor a complete list of all _closed_ issues and pull requests for this release, consult\nthe link:{junit5-repo}+\/milestone\/37?closed=1+[5.5 M2] milestone page in the JUnit repository\non GitHub.\n\n\n[[release-notes-5.5.0-M2-junit-platform]]\n=== JUnit Platform\n\n==== Bug Fixes\n\n* ❓\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* ❓\n\n\n[[release-notes-5.5.0-M2-junit-jupiter]]\n=== JUnit Jupiter\n\n==== Bug Fixes\n\n* Parameterized tests no longer throw an `ArrayStoreException` when creating human-readable\n test names.\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* ❓\n\n\n[[release-notes-5.5.0-M2-junit-vintage]]\n=== JUnit Vintage\n\n==== Bug Fixes\n\n* ❓\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* ❓\n","subject":"Clean up 5.5 M2 release notes","message":"Clean up 5.5 M2 release notes\n\nThe following feature enhancement was already shipped with 5.5 M1:\n\n* `@ValueSource` now additionally supports literal values\n of type `boolean` for parameterized tests.\n","lang":"AsciiDoc","license":"epl-1.0","repos":"sbrannen\/junit-lambda,junit-team\/junit-lambda"} {"commit":"15d46988dc74d29a3c4567e83de60717b4683561","old_file":"docs\/reference\/analysis\/tokenfilters\/keyword-marker-tokenfilter.asciidoc","new_file":"docs\/reference\/analysis\/tokenfilters\/keyword-marker-tokenfilter.asciidoc","old_contents":"[[analysis-keyword-marker-tokenfilter]]\n=== Keyword Marker Token Filter\n\nProtects words from being modified by stemmers. Must be placed before\nany stemming filters.\n\n[cols=\"<,<\",options=\"header\",]\n|=======================================================================\n|Setting |Description\n|`keywords` |A list of words to use.\n\n|`keywords_path` |A path (either relative to `config` location, or\nabsolute) to a list of words.\n\n|`ignore_case` |Set to `true` to lower case all words first. Defaults to\n`false`.\n|=======================================================================\n\nHere is an example:\n\n[source,js]\n--------------------------------------------------\nindex :\n analysis :\n analyzer :\n myAnalyzer :\n type : custom\n tokenizer : standard\n filter : [lowercase, protwods, porter_stem] \n filter :\n protwods :\n type : keyword_marker\n keywords_path : analysis\/protwords.txt\n--------------------------------------------------\n","new_contents":"[[analysis-keyword-marker-tokenfilter]]\n=== Keyword Marker Token Filter\n\nProtects words from being modified by stemmers. Must be placed before\nany stemming filters.\n\n[cols=\"<,<\",options=\"header\",]\n|=======================================================================\n|Setting |Description\n|`keywords` |A list of words to use.\n\n|`keywords_path` |A path (either relative to `config` location, or\nabsolute) to a list of words.\n\n|`ignore_case` |Set to `true` to lower case all words first. Defaults to\n`false`.\n|=======================================================================\n\nHere is an example:\n\n[source,js]\n--------------------------------------------------\nindex :\n analysis :\n analyzer :\n myAnalyzer :\n type : custom\n tokenizer : standard\n filter : [lowercase, protwords, porter_stem] \n filter :\n protwords :\n type : keyword_marker\n keywords_path : analysis\/protwords.txt\n--------------------------------------------------\n","subject":"Fix typo in sample json","message":"Fix typo in sample json\n\nFixes #9253\n","lang":"AsciiDoc","license":"apache-2.0","repos":"jimczi\/elasticsearch,mute\/elasticsearch,linglaiyao1314\/elasticsearch,schonfeld\/elasticsearch,huanzhong\/elasticsearch,girirajsharma\/elasticsearch,Widen\/elasticsearch,jeteve\/elasticsearch,ricardocerq\/elasticsearch,gingerwizard\/elasticsearch,nazarewk\/elasticsearch,Clairebi\/ElasticsearchClone,liweinan0423\/elasticsearch,sauravmondallive\/elasticsearch,pritishppai\/elasticsearch,strapdata\/elassandra-test,vingupta3\/elasticsearch,uschindler\/elasticsearch,MisterAndersen\/elasticsearch,kalburgimanjunath\/elasticsearch,karthikjaps\/elasticsearch,mapr\/elasticsearch,MetSystem\/elasticsearch,avikurapati\/elasticsearch,jsgao0\/elasticsearch,kalimatas\/elasticsearch,strapdata\/elassandra,mmaracic\/elasticsearch,mjhennig\/elasticsearch,wimvds\/elasticsearch,mute\/elasticsearch,mmaracic\/elasticsearch,karthikjaps\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,jeteve\/elasticsearch,C-Bish\/elasticsearch,dongjoon-hyun\/elasticsearch,nrkkalyan\/elasticsearch,kenshin233\/elasticsearch,kimimj\/elasticsearch,avikurapati\/elasticsearch,cwurm\/elasticsearch,iantruslove\/elasticsearch,henakamaMSFT\/elasticsearch,masaruh\/elasticsearch,kubum\/elasticsearch,markllama\/elasticsearch,areek\/elasticsearch,polyfractal\/elasticsearch,ydsakyclguozi\/elasticsearch,diendt\/elasticsearch,Charlesdong\/elasticsearch,jango2015\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,a2lin\/elasticsearch,wbowling\/elasticsearch,caengcjd\/elasticsearch,linglaiyao1314\/elasticsearch,mapr\/elasticsearch,franklanganke\/elasticsearch,davidvgalbraith\/elasticsearch,ivansun1010\/elasticsearch,overcome\/elasticsearch,feiqitian\/elasticsearch,yuy168\/elasticsearch,maddin2016\/elasticsearch,mm0\/elasticsearch,amit-shar\/elasticsearch,iantruslove\/elasticsearch,artnowo\/elasticsearch,i-am-Nathan\/elasticsearch,trangvh\/elasticsearch,JackyMai\/elasticsearch,beiske\/elasticsearch,winstonewert\/elasticsearch,NBSW\/elasticsearch,javachengwc\/elasticsearch,wimvds\/elasticsearch,lydonchandra\/elasticsearch,djschny\/elasticsearch,Ansh90\/elasticsearch,Collaborne\/elasticsearch,fforbeck\/elasticsearch,Rygbee\/elasticsearch,smflorentino\/elasticsearch,springning\/elasticsearch,rhoml\/elasticsearch,caengcjd\/elasticsearch,rhoml\/elasticsearch,ImpressTV\/elasticsearch,scorpionvicky\/elasticsearch,myelin\/elasticsearch,robin13\/elasticsearch,kunallimaye\/elasticsearch,kkirsche\/elasticsearch,spiegela\/elasticsearch,henakamaMSFT\/elasticsearch,nezirus\/elasticsearch,SergVro\/elasticsearch,coding0011\/elasticsearch,rlugojr\/elasticsearch,tsohil\/elasticsearch,JackyMai\/elasticsearch,dylan8902\/elasticsearch,palecur\/elasticsearch,camilojd\/elasticsearch,ydsakyclguozi\/elasticsearch,pranavraman\/elasticsearch,wimvds\/elasticsearch,jchampion\/elasticsearch,vvcephei\/elasticsearch,petabytedata\/elasticsearch,ouyangkongtong\/elasticsearch,nazarewk\/elasticsearch,hydro2k\/elasticsearch,onegambler\/elasticsearch,mjason3\/elasticsearch,alexbrasetvik\/elasticsearch,beiske\/elasticsearch,vingupta3\/elasticsearch,SergVro\/elasticsearch,btiernay\/elasticsearch,MjAbuz\/elasticsearch,Widen\/elasticsearch,pritishppai\/elasticsearch,hanst\/elasticsearch,qwerty4030\/elasticsearch,mjhennig\/elasticsearch,fooljohnny\/elasticsearch,ZTE-PaaS\/elasticsearch,EasonYi\/elasticsearch,EasonYi\/elasticsearch,yynil\/elasticsearch,himanshuag\/elasticsearch,clintongormley\/elasticsearch,Microsoft\/elasticsearch,hanst\/elasticsearch,gingerwizard\/elasticsearch,elasticdog\/elasticsearch,mkis-\/elasticsearch,tkssharma\/elasticsearch,strapdata\/elassandra-test,KimTaehee\/elasticsearch,mikemccand\/elasticsearch,strapdata\/elassandra5-rc,bawse\/elasticsearch,winstonewert\/elasticsearch,onegambler\/elasticsearch,franklanganke\/elasticsearch,MjAbuz\/elasticsearch,mohit\/elasticsearch,HarishAtGitHub\/elasticsearch,Brijeshrpatel9\/elasticsearch,apepper\/elasticsearch,beiske\/elasticsearch,drewr\/elasticsearch,tahaemin\/elasticsearch,C-Bish\/elasticsearch,pritishppai\/elasticsearch,onegambler\/elasticsearch,wayeast\/elasticsearch,Uiho\/elasticsearch,Charlesdong\/elasticsearch,StefanGor\/elasticsearch,tsohil\/elasticsearch,Widen\/elasticsearch,ckclark\/elasticsearch,linglaiyao1314\/elasticsearch,truemped\/elasticsearch,andrestc\/elasticsearch,onegambler\/elasticsearch,wayeast\/elasticsearch,franklanganke\/elasticsearch,jw0201\/elastic,pozhidaevak\/elasticsearch,springning\/elasticsearch,sc0ttkclark\/elasticsearch,vroyer\/elassandra,i-am-Nathan\/elasticsearch,sposam\/elasticsearch,kunallimaye\/elasticsearch,ThalaivaStars\/OrgRepo1,nknize\/elasticsearch,zhiqinghuang\/elasticsearch,vietlq\/elasticsearch,brandonkearby\/elasticsearch,mute\/elasticsearch,mcku\/elasticsearch,xuzha\/elasticsearch,kalburgimanjunath\/elasticsearch,nellicus\/elasticsearch,kubum\/elasticsearch,YosuaMichael\/elasticsearch,jaynblue\/elasticsearch,sreeramjayan\/elasticsearch,huanzhong\/elasticsearch,Liziyao\/elasticsearch,dataduke\/elasticsearch,tsohil\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,Widen\/elasticsearch,mapr\/elasticsearch,rhoml\/elasticsearch,amaliujia\/elasticsearch,infusionsoft\/elasticsearch,sposam\/elasticsearch,yynil\/elasticsearch,xingguang2013\/elasticsearch,rajanm\/elasticsearch,polyfractal\/elasticsearch,umeshdangat\/elasticsearch,ivansun1010\/elasticsearch,queirozfcom\/elasticsearch,smflorentino\/elasticsearch,dpursehouse\/elasticsearch,camilojd\/elasticsearch,geidies\/elasticsearch,sc0ttkclark\/elasticsearch,yuy168\/elasticsearch,bawse\/elasticsearch,strapdata\/elassandra,MichaelLiZhou\/elasticsearch,tkssharma\/elasticsearch,apepper\/elasticsearch,strapdata\/elassandra-test,ThalaivaStars\/OrgRepo1,codebunt\/elasticsearch,hanst\/elasticsearch,javachengwc\/elasticsearch,cwurm\/elasticsearch,yuy168\/elasticsearch,sc0ttkclark\/elasticsearch,AshishThakur\/elasticsearch,aglne\/elasticsearch,loconsolutions\/elasticsearch,kkirsche\/elasticsearch,loconsolutions\/elasticsearch,girirajsharma\/elasticsearch,HarishAtGitHub\/elasticsearch,khiraiwa\/elasticsearch,ydsakyclguozi\/elasticsearch,mnylen\/elasticsearch,drewr\/elasticsearch,lydonchandra\/elasticsearch,chirilo\/elasticsearch,thecocce\/elasticsearch,iacdingping\/elasticsearch,MisterAndersen\/elasticsearch,episerver\/elasticsearch,Collaborne\/elasticsearch,diendt\/elasticsearch,jeteve\/elasticsearch,fekaputra\/elasticsearch,mkis-\/elasticsearch,sreeramjayan\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,mapr\/elasticsearch,zeroctu\/elasticsearch,Uiho\/elasticsearch,rhoml\/elasticsearch,obourgain\/elasticsearch,xingguang2013\/elasticsearch,fernandozhu\/elasticsearch,easonC\/elasticsearch,Siddartha07\/elasticsearch,Fsero\/elasticsearch,awislowski\/elasticsearch,StefanGor\/elasticsearch,humandb\/elasticsearch,sarwarbhuiyan\/elasticsearch,fred84\/elasticsearch,mrorii\/elasticsearch,HonzaKral\/elasticsearch,springning\/elasticsearch,Collaborne\/elasticsearch,franklanganke\/elasticsearch,yanjunh\/elasticsearch,areek\/elasticsearch,wayeast\/elasticsearch,kunallimaye\/elasticsearch,vroyer\/elasticassandra,zeroctu\/elasticsearch,huypx1292\/elasticsearch,Shekharrajak\/elasticsearch,dylan8902\/elasticsearch,LewayneNaidoo\/elasticsearch,mjason3\/elasticsearch,socialrank\/elasticsearch,maddin2016\/elasticsearch,girirajsharma\/elasticsearch,dongjoon-hyun\/elasticsearch,shreejay\/elasticsearch,iamjakob\/elasticsearch,s1monw\/elasticsearch,wittyameta\/elasticsearch,nomoa\/elasticsearch,hanswang\/elasticsearch,queirozfcom\/elasticsearch,kaneshin\/elasticsearch,MichaelLiZhou\/elasticsearch,markllama\/elasticsearch,milodky\/elasticsearch,gmarz\/elasticsearch,lchennup\/elasticsearch,iantruslove\/elasticsearch,C-Bish\/elasticsearch,nezirus\/elasticsearch,jimczi\/elasticsearch,fooljohnny\/elasticsearch,Chhunlong\/elasticsearch,mgalushka\/elasticsearch,Asimov4\/elasticsearch,onegambler\/elasticsearch,szroland\/elasticsearch,mcku\/elasticsearch,lzo\/elasticsearch-1,robin13\/elasticsearch,wangyuxue\/elasticsearch,petabytedata\/elasticsearch,GlenRSmith\/elasticsearch,amaliujia\/elasticsearch,loconsolutions\/elasticsearch,fekaputra\/elasticsearch,yuy168\/elasticsearch,chrismwendt\/elasticsearch,EasonYi\/elasticsearch,tebriel\/elasticsearch,dataduke\/elasticsearch,nomoa\/elasticsearch,mute\/elasticsearch,Flipkart\/elasticsearch,ouyangkongtong\/elasticsearch,s1monw\/elasticsearch,palecur\/elasticsearch,HonzaKral\/elasticsearch,yanjunh\/elasticsearch,bestwpw\/elasticsearch,wenpos\/elasticsearch,fforbeck\/elasticsearch,kimimj\/elasticsearch,Flipkart\/elasticsearch,cnfire\/elasticsearch-1,vietlq\/elasticsearch,kcompher\/elasticsearch,vietlq\/elasticsearch,vroyer\/elassandra,dataduke\/elasticsearch,njlawton\/elasticsearch,Ansh90\/elasticsearch,wbowling\/elasticsearch,drewr\/elasticsearch,szroland\/elasticsearch,fekaputra\/elasticsearch,Kakakakakku\/elasticsearch,wittyameta\/elasticsearch,mm0\/elasticsearch,masaruh\/elasticsearch,hanswang\/elasticsearch,javachengwc\/elasticsearch,anti-social\/elasticsearch,Shekharrajak\/elasticsearch,Ansh90\/elasticsearch,queirozfcom\/elasticsearch,kaneshin\/elasticsearch,artnowo\/elasticsearch,iacdingping\/elasticsearch,heng4fun\/elasticsearch,henakamaMSFT\/elasticsearch,HarishAtGitHub\/elasticsearch,javachengwc\/elasticsearch,C-Bish\/elasticsearch,davidvgalbraith\/elasticsearch,martinstuga\/elasticsearch,nezirus\/elasticsearch,nknize\/elasticsearch,mjhennig\/elasticsearch,martinstuga\/elasticsearch,Asimov4\/elasticsearch,truemped\/elasticsearch,lightslife\/elasticsearch,lchennup\/elasticsearch,hechunwen\/elasticsearch,tahaemin\/elasticsearch,F0lha\/elasticsearch,Shepard1212\/elasticsearch,MichaelLiZhou\/elasticsearch,sreeramjayan\/elasticsearch,clintongormley\/elasticsearch,mcku\/elasticsearch,lchennup\/elasticsearch,vvcephei\/elasticsearch,elancom\/elasticsearch,TonyChai24\/ESSource,sauravmondallive\/elasticsearch,gingerwizard\/elasticsearch,acchen97\/elasticsearch,nellicus\/elasticsearch,wangyuxue\/elasticsearch,jsgao0\/elasticsearch,sjohnr\/elasticsearch,golubev\/elasticsearch,18098924759\/elasticsearch,rajanm\/elasticsearch,yongminxia\/elasticsearch,jimczi\/elasticsearch,khiraiwa\/elasticsearch,JackyMai\/elasticsearch,MichaelLiZhou\/elasticsearch,uschindler\/elasticsearch,AndreKR\/elasticsearch,MetSystem\/elasticsearch,jaynblue\/elasticsearch,mbrukman\/elasticsearch,mjason3\/elasticsearch,mcku\/elasticsearch,iamjakob\/elasticsearch,SergVro\/elasticsearch,wangtuo\/elasticsearch,markharwood\/elasticsearch,MetSystem\/elasticsearch,kaneshin\/elasticsearch,vvcephei\/elasticsearch,areek\/elasticsearch,AndreKR\/elasticsearch,vroyer\/elasticassandra,JSCooke\/elasticsearch,zhiqinghuang\/elasticsearch,dpursehouse\/elasticsearch,koxa29\/elasticsearch,weipinghe\/elasticsearch,MaineC\/elasticsearch,drewr\/elasticsearch,masaruh\/elasticsearch,truemped\/elasticsearch,hechunwen\/elasticsearch,nknize\/elasticsearch,caengcjd\/elasticsearch,apepper\/elasticsearch,tsohil\/elasticsearch,dpursehouse\/elasticsearch,kimimj\/elasticsearch,kkirsche\/elasticsearch,achow\/elasticsearch,jeteve\/elasticsearch,IanvsPoplicola\/elasticsearch,zeroctu\/elasticsearch,StefanGor\/elasticsearch,Chhunlong\/elasticsearch,hanst\/elasticsearch,dylan8902\/elasticsearch,kevinkluge\/elasticsearch,tebriel\/elasticsearch,javachengwc\/elasticsearch,Flipkart\/elasticsearch,ZTE-PaaS\/elasticsearch,Asimov4\/elasticsearch,hirdesh2008\/elasticsearch,Clairebi\/ElasticsearchClone,wangtuo\/elasticsearch,markllama\/elasticsearch,xuzha\/elasticsearch,luiseduardohdbackup\/elasticsearch,sarwarbhuiyan\/elasticsearch,kaneshin\/elasticsearch,robin13\/elasticsearch,geidies\/elasticsearch,sreeramjayan\/elasticsearch,F0lha\/elasticsearch,bestwpw\/elasticsearch,javachengwc\/elasticsearch,thecocce\/elasticsearch,kalburgimanjunath\/elasticsearch,milodky\/elasticsearch,Rygbee\/elasticsearch,Uiho\/elasticsearch,btiernay\/elasticsearch,MjAbuz\/elasticsearch,zhiqinghuang\/elasticsearch,jimhooker2002\/elasticsearch,mortonsykes\/elasticsearch,fooljohnny\/elasticsearch,gfyoung\/elasticsearch,KimTaehee\/elasticsearch,sc0ttkclark\/elasticsearch,fooljohnny\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,artnowo\/elasticsearch,knight1128\/elasticsearch,huanzhong\/elasticsearch,ImpressTV\/elasticsearch,AshishThakur\/elasticsearch,karthikjaps\/elasticsearch,smflorentino\/elasticsearch,spiegela\/elasticsearch,gfyoung\/elasticsearch,djschny\/elasticsearch,Collaborne\/elasticsearch,chrismwendt\/elasticsearch,Ansh90\/elasticsearch,TonyChai24\/ESSource,rento19962\/elasticsearch,strapdata\/elassandra-test,artnowo\/elasticsearch,sc0ttkclark\/elasticsearch,i-am-Nathan\/elasticsearch,tebriel\/elasticsearch,dylan8902\/elasticsearch,mnylen\/elasticsearch,adrianbk\/elasticsearch,petabytedata\/elasticsearch,strapdata\/elassandra,coding0011\/elasticsearch,caengcjd\/elasticsearch,dongjoon-hyun\/elasticsearch,jaynblue\/elasticsearch,Widen\/elasticsearch,jw0201\/elastic,sarwarbhuiyan\/elasticsearch,hydro2k\/elasticsearch,abibell\/elasticsearch,kcompher\/elasticsearch,zeroctu\/elasticsearch,Fsero\/elasticsearch,sdauletau\/elasticsearch,beiske\/elasticsearch,hafkensite\/elasticsearch,pablocastro\/elasticsearch,JSCooke\/elasticsearch,strapdata\/elassandra,PhaedrusTheGreek\/elasticsearch,abibell\/elasticsearch,HonzaKral\/elasticsearch,trangvh\/elasticsearch,hirdesh2008\/elasticsearch,achow\/elasticsearch,MisterAndersen\/elasticsearch,Siddartha07\/elasticsearch,markwalkom\/elasticsearch,wenpos\/elasticsearch,myelin\/elasticsearch,kingaj\/elasticsearch,mohit\/elasticsearch,kingaj\/elasticsearch,ouyangkongtong\/elasticsearch,markwalkom\/elasticsearch,overcome\/elasticsearch,apepper\/elasticsearch,strapdata\/elassandra5-rc,xpandan\/elasticsearch,mgalushka\/elasticsearch,awislowski\/elasticsearch,dylan8902\/elasticsearch,hirdesh2008\/elasticsearch,jango2015\/elasticsearch,kenshin233\/elasticsearch,drewr\/elasticsearch,hechunwen\/elasticsearch,wuranbo\/elasticsearch,vietlq\/elasticsearch,btiernay\/elasticsearch,markharwood\/elasticsearch,avikurapati\/elasticsearch,Stacey-Gammon\/elasticsearch,MaineC\/elasticsearch,pablocastro\/elasticsearch,vvcephei\/elasticsearch,PhaedrusTheGreek\/elasticsearch,xuzha\/elasticsearch,thecocce\/elasticsearch,jw0201\/elastic,zhiqinghuang\/elasticsearch,chirilo\/elasticsearch,socialrank\/elasticsearch,ckclark\/elasticsearch,phani546\/elasticsearch,amit-shar\/elasticsearch,martinstuga\/elasticsearch,xpandan\/elasticsearch,wuranbo\/elasticsearch,vrkansagara\/elasticsearch,codebunt\/elasticsearch,nrkkalyan\/elasticsearch,golubev\/elasticsearch,Shekharrajak\/elasticsearch,StefanGor\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,sjohnr\/elasticsearch,himanshuag\/elasticsearch,fekaputra\/elasticsearch,hanswang\/elasticsearch,hafkensite\/elasticsearch,camilojd\/elasticsearch,mjason3\/elasticsearch,rhoml\/elasticsearch,Fsero\/elasticsearch,weipinghe\/elasticsearch,codebunt\/elasticsearch,LeoYao\/elasticsearch,NBSW\/elasticsearch,acchen97\/elasticsearch,chrismwendt\/elasticsearch,dataduke\/elasticsearch,LeoYao\/elasticsearch,jbertouch\/elasticsearch,AndreKR\/elasticsearch,LeoYao\/elasticsearch,winstonewert\/elasticsearch,skearns64\/elasticsearch,Clairebi\/ElasticsearchClone,Uiho\/elasticsearch,andrestc\/elasticsearch,abibell\/elasticsearch,petabytedata\/elasticsearch,nazarewk\/elasticsearch,strapdata\/elassandra-test,feiqitian\/elasticsearch,sposam\/elasticsearch,clintongormley\/elasticsearch,MjAbuz\/elasticsearch,easonC\/elasticsearch,sarwarbhuiyan\/elasticsearch,dpursehouse\/elasticsearch,ImpressTV\/elasticsearch,adrianbk\/elasticsearch,golubev\/elasticsearch,TonyChai24\/ESSource,mgalushka\/elasticsearch,masterweb121\/elasticsearch,himanshuag\/elasticsearch,IanvsPoplicola\/elasticsearch,jango2015\/elasticsearch,himanshuag\/elasticsearch,gmarz\/elasticsearch,scorpionvicky\/elasticsearch,pranavraman\/elasticsearch,NBSW\/elasticsearch,huypx1292\/elasticsearch,kaneshin\/elasticsearch,rhoml\/elasticsearch,schonfeld\/elasticsearch,sarwarbhuiyan\/elasticsearch,franklanganke\/elasticsearch,jsgao0\/elasticsearch,AndreKR\/elasticsearch,avikurapati\/elasticsearch,hechunwen\/elasticsearch,snikch\/elasticsearch,jimhooker2002\/elasticsearch,szroland\/elasticsearch,dongjoon-hyun\/elasticsearch,wenpos\/elasticsearch,kkirsche\/elasticsearch,bestwpw\/elasticsearch,codebunt\/elasticsearch,vingupta3\/elasticsearch,nilabhsagar\/elasticsearch,himanshuag\/elasticsearch,markwalkom\/elasticsearch,sc0ttkclark\/elasticsearch,kimimj\/elasticsearch,easonC\/elasticsearch,sjohnr\/elasticsearch,KimTaehee\/elasticsearch,awislowski\/elasticsearch,brandonkearby\/elasticsearch,elancom\/elasticsearch,KimTaehee\/elasticsearch,sreeramjayan\/elasticsearch,mnylen\/elasticsearch,truemped\/elasticsearch,tahaemin\/elasticsearch,abibell\/elasticsearch,cwurm\/elasticsearch,qwerty4030\/elasticsearch,btiernay\/elasticsearch,cnfire\/elasticsearch-1,lmtwga\/elasticsearch,camilojd\/elasticsearch,wangtuo\/elasticsearch,lmtwga\/elasticsearch,dylan8902\/elasticsearch,alexkuk\/elasticsearch,karthikjaps\/elasticsearch,lzo\/elasticsearch-1,fred84\/elasticsearch,sauravmondallive\/elasticsearch,huanzhong\/elasticsearch,Helen-Zhao\/elasticsearch,shreejay\/elasticsearch,mgalushka\/elasticsearch,luiseduardohdbackup\/elasticsearch,sreeramjayan\/elasticsearch,kalburgimanjunath\/elasticsearch,mkis-\/elasticsearch,infusionsoft\/elasticsearch,szroland\/elasticsearch,kcompher\/elasticsearch,snikch\/elasticsearch,sjohnr\/elasticsearch,wangyuxue\/elasticsearch,girirajsharma\/elasticsearch,nellicus\/elasticsearch,phani546\/elasticsearch,andrestc\/elasticsearch,polyfractal\/elasticsearch,kevinkluge\/elasticsearch,xingguang2013\/elasticsearch,milodky\/elasticsearch,likaiwalkman\/elasticsearch,hanswang\/elasticsearch,lightslife\/elasticsearch,jimhooker2002\/elasticsearch,jw0201\/elastic,hirdesh2008\/elasticsearch,queirozfcom\/elasticsearch,anti-social\/elasticsearch,MisterAndersen\/elasticsearch,snikch\/elasticsearch,jbertouch\/elasticsearch,pritishppai\/elasticsearch,gmarz\/elasticsearch,EasonYi\/elasticsearch,linglaiyao1314\/elasticsearch,Clairebi\/ElasticsearchClone,tebriel\/elasticsearch,acchen97\/elasticsearch,cwurm\/elasticsearch,dpursehouse\/elasticsearch,robin13\/elasticsearch,weipinghe\/elasticsearch,beiske\/elasticsearch,jbertouch\/elasticsearch,alexkuk\/elasticsearch,pablocastro\/elasticsearch,kimimj\/elasticsearch,wangtuo\/elasticsearch,schonfeld\/elasticsearch,Siddartha07\/elasticsearch,mkis-\/elasticsearch,apepper\/elasticsearch,winstonewert\/elasticsearch,qwerty4030\/elasticsearch,skearns64\/elasticsearch,slavau\/elasticsearch,luiseduardohdbackup\/elasticsearch,queirozfcom\/elasticsearch,Liziyao\/elasticsearch,huanzhong\/elasticsearch,likaiwalkman\/elasticsearch,yongminxia\/elasticsearch,strapdata\/elassandra5-rc,onegambler\/elasticsearch,Stacey-Gammon\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,andrestc\/elasticsearch,wittyameta\/elasticsearch,socialrank\/elasticsearch,kkirsche\/elasticsearch,golubev\/elasticsearch,MichaelLiZhou\/elasticsearch,shreejay\/elasticsearch,alexkuk\/elasticsearch,zhiqinghuang\/elasticsearch,achow\/elasticsearch,wuranbo\/elasticsearch,feiqitian\/elasticsearch,nellicus\/elasticsearch,infusionsoft\/elasticsearch,polyfractal\/elasticsearch,KimTaehee\/elasticsearch,brandonkearby\/elasticsearch,naveenhooda2000\/elasticsearch,masaruh\/elasticsearch,andrestc\/elasticsearch,IanvsPoplicola\/elasticsearch,linglaiyao1314\/elasticsearch,Helen-Zhao\/elasticsearch,lchennup\/elasticsearch,nazarewk\/elasticsearch,mgalushka\/elasticsearch,MjAbuz\/elasticsearch,polyfractal\/elasticsearch,szroland\/elasticsearch,mcku\/elasticsearch,fred84\/elasticsearch,yongminxia\/elasticsearch,mcku\/elasticsearch,slavau\/elasticsearch,rajanm\/elasticsearch,fforbeck\/elasticsearch,strapdata\/elassandra-test,jw0201\/elastic,apepper\/elasticsearch,Clairebi\/ElasticsearchClone,HarishAtGitHub\/elasticsearch,Shepard1212\/elasticsearch,kcompher\/elasticsearch,Siddartha07\/elasticsearch,mnylen\/elasticsearch,spiegela\/elasticsearch,NBSW\/elasticsearch,cwurm\/elasticsearch,nomoa\/elasticsearch,MaineC\/elasticsearch,nknize\/elasticsearch,iamjakob\/elasticsearch,Microsoft\/elasticsearch,khiraiwa\/elasticsearch,wittyameta\/elasticsearch,humandb\/elasticsearch,umeshdangat\/elasticsearch,nezirus\/elasticsearch,ricardocerq\/elasticsearch,thecocce\/elasticsearch,palecur\/elasticsearch,MetSystem\/elasticsearch,adrianbk\/elasticsearch,smflorentino\/elasticsearch,infusionsoft\/elasticsearch,alexbrasetvik\/elasticsearch,ulkas\/elasticsearch,ulkas\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,phani546\/elasticsearch,yanjunh\/elasticsearch,xuzha\/elasticsearch,mgalushka\/elasticsearch,djschny\/elasticsearch,MichaelLiZhou\/elasticsearch,Brijeshrpatel9\/elasticsearch,springning\/elasticsearch,gingerwizard\/elasticsearch,andrejserafim\/elasticsearch,LewayneNaidoo\/elasticsearch,jeteve\/elasticsearch,hirdesh2008\/elasticsearch,camilojd\/elasticsearch,alexshadow007\/elasticsearch,mapr\/elasticsearch,jprante\/elasticsearch,kalimatas\/elasticsearch,brandonkearby\/elasticsearch,obourgain\/elasticsearch,AshishThakur\/elasticsearch,lzo\/elasticsearch-1,thecocce\/elasticsearch,jango2015\/elasticsearch,chrismwendt\/elasticsearch,JSCooke\/elasticsearch,truemped\/elasticsearch,diendt\/elasticsearch,Fsero\/elasticsearch,fernandozhu\/elasticsearch,djschny\/elasticsearch,elancom\/elasticsearch,scorpionvicky\/elasticsearch,kunallimaye\/elasticsearch,jimhooker2002\/elasticsearch,wbowling\/elasticsearch,jchampion\/elasticsearch,jw0201\/elastic,linglaiyao1314\/elasticsearch,himanshuag\/elasticsearch,Stacey-Gammon\/elasticsearch,rmuir\/elasticsearch,ivansun1010\/elasticsearch,ulkas\/elasticsearch,zeroctu\/elasticsearch,Shekharrajak\/elasticsearch,yuy168\/elasticsearch,kenshin233\/elasticsearch,hanswang\/elasticsearch,tsohil\/elasticsearch,episerver\/elasticsearch,tebriel\/elasticsearch,Microsoft\/elasticsearch,lchennup\/elasticsearch,lightslife\/elasticsearch,koxa29\/elasticsearch,ZTE-PaaS\/elasticsearch,socialrank\/elasticsearch,luiseduardohdbackup\/elasticsearch,jimhooker2002\/elasticsearch,lks21c\/elasticsearch,alexshadow007\/elasticsearch,hanst\/elasticsearch,rmuir\/elasticsearch,weipinghe\/elasticsearch,IanvsPoplicola\/elasticsearch,alexshadow007\/elasticsearch,YosuaMichael\/elasticsearch,Uiho\/elasticsearch,overcome\/elasticsearch,iantruslove\/elasticsearch,hydro2k\/elasticsearch,wenpos\/elasticsearch,jango2015\/elasticsearch,overcome\/elasticsearch,hydro2k\/elasticsearch,mjason3\/elasticsearch,jango2015\/elasticsearch,jaynblue\/elasticsearch,wbowling\/elasticsearch,koxa29\/elasticsearch,lydonchandra\/elasticsearch,yuy168\/elasticsearch,milodky\/elasticsearch,palecur\/elasticsearch,mcku\/elasticsearch,Liziyao\/elasticsearch,truemped\/elasticsearch,koxa29\/elasticsearch,episerver\/elasticsearch,alexkuk\/elasticsearch,liweinan0423\/elasticsearch,kingaj\/elasticsearch,skearns64\/elasticsearch,hafkensite\/elasticsearch,xpandan\/elasticsearch,jchampion\/elasticsearch,jchampion\/elasticsearch,njlawton\/elasticsearch,Flipkart\/elasticsearch,fred84\/elasticsearch,mohit\/elasticsearch,ulkas\/elasticsearch,Collaborne\/elasticsearch,vingupta3\/elasticsearch,maddin2016\/elasticsearch,kaneshin\/elasticsearch,abibell\/elasticsearch,huanzhong\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,pritishppai\/elasticsearch,ulkas\/elasticsearch,rmuir\/elasticsearch,mmaracic\/elasticsearch,ydsakyclguozi\/elasticsearch,shreejay\/elasticsearch,tkssharma\/elasticsearch,socialrank\/elasticsearch,aglne\/elasticsearch,mm0\/elasticsearch,18098924759\/elasticsearch,fernandozhu\/elasticsearch,xpandan\/elasticsearch,mm0\/elasticsearch,MetSystem\/elasticsearch,elancom\/elasticsearch,amaliujia\/elasticsearch,strapdata\/elassandra-test,hafkensite\/elasticsearch,AndreKR\/elasticsearch,ThalaivaStars\/OrgRepo1,Stacey-Gammon\/elasticsearch,cnfire\/elasticsearch-1,geidies\/elasticsearch,kimimj\/elasticsearch,kunallimaye\/elasticsearch,pablocastro\/elasticsearch,StefanGor\/elasticsearch,alexbrasetvik\/elasticsearch,huypx1292\/elasticsearch,andrestc\/elasticsearch,pranavraman\/elasticsearch,markwalkom\/elasticsearch,coding0011\/elasticsearch,fooljohnny\/elasticsearch,mnylen\/elasticsearch,clintongormley\/elasticsearch,GlenRSmith\/elasticsearch,EasonYi\/elasticsearch,LeoYao\/elasticsearch,springning\/elasticsearch,pranavraman\/elasticsearch,avikurapati\/elasticsearch,beiske\/elasticsearch,scorpionvicky\/elasticsearch,sc0ttkclark\/elasticsearch,nknize\/elasticsearch,Kakakakakku\/elasticsearch,tkssharma\/elasticsearch,rento19962\/elasticsearch,hirdesh2008\/elasticsearch,mortonsykes\/elasticsearch,yuy168\/elasticsearch,zhiqinghuang\/elasticsearch,awislowski\/elasticsearch,kcompher\/elasticsearch,knight1128\/elasticsearch,Charlesdong\/elasticsearch,adrianbk\/elasticsearch,sdauletau\/elasticsearch,sneivandt\/elasticsearch,alexshadow007\/elasticsearch,iacdingping\/elasticsearch,liweinan0423\/elasticsearch,KimTaehee\/elasticsearch,nrkkalyan\/elasticsearch,martinstuga\/elasticsearch,njlawton\/elasticsearch,codebunt\/elasticsearch,mrorii\/elasticsearch,nellicus\/elasticsearch,sposam\/elasticsearch,kevinkluge\/elasticsearch,Clairebi\/ElasticsearchClone,zhiqinghuang\/elasticsearch,mgalushka\/elasticsearch,luiseduardohdbackup\/elasticsearch,vietlq\/elasticsearch,aglne\/elasticsearch,andrejserafim\/elasticsearch,zeroctu\/elasticsearch,hechunwen\/elasticsearch,Liziyao\/elasticsearch,polyfractal\/elasticsearch,fekaputra\/elasticsearch,socialrank\/elasticsearch,onegambler\/elasticsearch,MjAbuz\/elasticsearch,fforbeck\/elasticsearch,Helen-Zhao\/elasticsearch,phani546\/elasticsearch,ricardocerq\/elasticsearch,mjhennig\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,ivansun1010\/elasticsearch,alexkuk\/elasticsearch,kalimatas\/elasticsearch,hydro2k\/elasticsearch,clintongormley\/elasticsearch,sneivandt\/elasticsearch,elasticdog\/elasticsearch,glefloch\/elasticsearch,iamjakob\/elasticsearch,i-am-Nathan\/elasticsearch,fred84\/elasticsearch,achow\/elasticsearch,umeshdangat\/elasticsearch,lks21c\/elasticsearch,vrkansagara\/elasticsearch,a2lin\/elasticsearch,scorpionvicky\/elasticsearch,Asimov4\/elasticsearch,amit-shar\/elasticsearch,vingupta3\/elasticsearch,uschindler\/elasticsearch,yynil\/elasticsearch,bawse\/elasticsearch,vrkansagara\/elasticsearch,kevinkluge\/elasticsearch,AshishThakur\/elasticsearch,scottsom\/elasticsearch,vroyer\/elasticassandra,djschny\/elasticsearch,njlawton\/elasticsearch,rajanm\/elasticsearch,mbrukman\/elasticsearch,snikch\/elasticsearch,mohit\/elasticsearch,s1monw\/elasticsearch,Rygbee\/elasticsearch,Kakakakakku\/elasticsearch,iamjakob\/elasticsearch,bestwpw\/elasticsearch,cnfire\/elasticsearch-1,camilojd\/elasticsearch,JervyShi\/elasticsearch,Kakakakakku\/elasticsearch,mikemccand\/elasticsearch,mjhennig\/elasticsearch,YosuaMichael\/elasticsearch,mohit\/elasticsearch,glefloch\/elasticsearch,markharwood\/elasticsearch,mapr\/elasticsearch,wuranbo\/elasticsearch,LewayneNaidoo\/elasticsearch,jimhooker2002\/elasticsearch,mute\/elasticsearch,sneivandt\/elasticsearch,truemped\/elasticsearch,diendt\/elasticsearch,jpountz\/elasticsearch,ckclark\/elasticsearch,kenshin233\/elasticsearch,knight1128\/elasticsearch,ouyangkongtong\/elasticsearch,Chhunlong\/elasticsearch,shreejay\/elasticsearch,sauravmondallive\/elasticsearch,cnfire\/elasticsearch-1,robin13\/elasticsearch,mnylen\/elasticsearch,s1monw\/elasticsearch,mmaracic\/elasticsearch,areek\/elasticsearch,ulkas\/elasticsearch,martinstuga\/elasticsearch,jchampion\/elasticsearch,girirajsharma\/elasticsearch,yanjunh\/elasticsearch,likaiwalkman\/elasticsearch,acchen97\/elasticsearch,franklanganke\/elasticsearch,ESamir\/elasticsearch,geidies\/elasticsearch,kalimatas\/elasticsearch,likaiwalkman\/elasticsearch,huypx1292\/elasticsearch,davidvgalbraith\/elasticsearch,ZTE-PaaS\/elasticsearch,golubev\/elasticsearch,zkidkid\/elasticsearch,hafkensite\/elasticsearch,btiernay\/elasticsearch,YosuaMichael\/elasticsearch,andrejserafim\/elasticsearch,Liziyao\/elasticsearch,NBSW\/elasticsearch,iantruslove\/elasticsearch,yongminxia\/elasticsearch,pozhidaevak\/elasticsearch,JSCooke\/elasticsearch,PhaedrusTheGreek\/elasticsearch,zkidkid\/elasticsearch,pritishppai\/elasticsearch,ricardocerq\/elasticsearch,Rygbee\/elasticsearch,lydonchandra\/elasticsearch,hydro2k\/elasticsearch,maddin2016\/elasticsearch,Chhunlong\/elasticsearch,wuranbo\/elasticsearch,knight1128\/elasticsearch,ImpressTV\/elasticsearch,gmarz\/elasticsearch,sjohnr\/elasticsearch,MichaelLiZhou\/elasticsearch,amit-shar\/elasticsearch,masterweb121\/elasticsearch,iamjakob\/elasticsearch,mute\/elasticsearch,Collaborne\/elasticsearch,gfyoung\/elasticsearch,zkidkid\/elasticsearch,kubum\/elasticsearch,mjhennig\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,F0lha\/elasticsearch,infusionsoft\/elasticsearch,bestwpw\/elasticsearch,girirajsharma\/elasticsearch,mrorii\/elasticsearch,jprante\/elasticsearch,skearns64\/elasticsearch,wittyameta\/elasticsearch,rlugojr\/elasticsearch,ckclark\/elasticsearch,Asimov4\/elasticsearch,njlawton\/elasticsearch,episerver\/elasticsearch,luiseduardohdbackup\/elasticsearch,F0lha\/elasticsearch,Microsoft\/elasticsearch,xingguang2013\/elasticsearch,beiske\/elasticsearch,sdauletau\/elasticsearch,chirilo\/elasticsearch,yynil\/elasticsearch,alexbrasetvik\/elasticsearch,ivansun1010\/elasticsearch,sauravmondallive\/elasticsearch,naveenhooda2000\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,jaynblue\/elasticsearch,jpountz\/elasticsearch,a2lin\/elasticsearch,umeshdangat\/elasticsearch,xuzha\/elasticsearch,khiraiwa\/elasticsearch,jimhooker2002\/elasticsearch,wimvds\/elasticsearch,acchen97\/elasticsearch,Siddartha07\/elasticsearch,hydro2k\/elasticsearch,slavau\/elasticsearch,dylan8902\/elasticsearch,gfyoung\/elasticsearch,obourgain\/elasticsearch,jpountz\/elasticsearch,henakamaMSFT\/elasticsearch,ThalaivaStars\/OrgRepo1,kkirsche\/elasticsearch,sneivandt\/elasticsearch,slavau\/elasticsearch,kalburgimanjunath\/elasticsearch,mikemccand\/elasticsearch,kubum\/elasticsearch,SergVro\/elasticsearch,vvcephei\/elasticsearch,glefloch\/elasticsearch,gingerwizard\/elasticsearch,ouyangkongtong\/elasticsearch,lightslife\/elasticsearch,jaynblue\/elasticsearch,kevinkluge\/elasticsearch,jprante\/elasticsearch,ESamir\/elasticsearch,ckclark\/elasticsearch,areek\/elasticsearch,Fsero\/elasticsearch,gmarz\/elasticsearch,pranavraman\/elasticsearch,kenshin233\/elasticsearch,ouyangkongtong\/elasticsearch,Charlesdong\/elasticsearch,ydsakyclguozi\/elasticsearch,masterweb121\/elasticsearch,drewr\/elasticsearch,LewayneNaidoo\/elasticsearch,thecocce\/elasticsearch,strapdata\/elassandra5-rc,schonfeld\/elasticsearch,henakamaMSFT\/elasticsearch,btiernay\/elasticsearch,markllama\/elasticsearch,yongminxia\/elasticsearch,markllama\/elasticsearch,hanswang\/elasticsearch,knight1128\/elasticsearch,F0lha\/elasticsearch,qwerty4030\/elasticsearch,rento19962\/elasticsearch,lmtwga\/elasticsearch,wimvds\/elasticsearch,MetSystem\/elasticsearch,Rygbee\/elasticsearch,davidvgalbraith\/elasticsearch,uschindler\/elasticsearch,wimvds\/elasticsearch,mortonsykes\/elasticsearch,nrkkalyan\/elasticsearch,apepper\/elasticsearch,gingerwizard\/elasticsearch,ouyangkongtong\/elasticsearch,HonzaKral\/elasticsearch,feiqitian\/elasticsearch,fekaputra\/elasticsearch,chirilo\/elasticsearch,GlenRSmith\/elasticsearch,PhaedrusTheGreek\/elasticsearch,lzo\/elasticsearch-1,amit-shar\/elasticsearch,episerver\/elasticsearch,scottsom\/elasticsearch,Stacey-Gammon\/elasticsearch,slavau\/elasticsearch,masterweb121\/elasticsearch,zkidkid\/elasticsearch,YosuaMichael\/elasticsearch,s1monw\/elasticsearch,dataduke\/elasticsearch,wayeast\/elasticsearch,kubum\/elasticsearch,kingaj\/elasticsearch,rento19962\/elasticsearch,lchennup\/elasticsearch,likaiwalkman\/elasticsearch,nilabhsagar\/elasticsearch,vvcephei\/elasticsearch,mm0\/elasticsearch,jsgao0\/elasticsearch,chirilo\/elasticsearch,sposam\/elasticsearch,ESamir\/elasticsearch,mkis-\/elasticsearch,cnfire\/elasticsearch-1,spiegela\/elasticsearch,Brijeshrpatel9\/elasticsearch,huypx1292\/elasticsearch,Brijeshrpatel9\/elasticsearch,zeroctu\/elasticsearch,acchen97\/elasticsearch,masterweb121\/elasticsearch,EasonYi\/elasticsearch,anti-social\/elasticsearch,18098924759\/elasticsearch,kalburgimanjunath\/elasticsearch,lchennup\/elasticsearch,caengcjd\/elasticsearch,ESamir\/elasticsearch,clintongormley\/elasticsearch,infusionsoft\/elasticsearch,maddin2016\/elasticsearch,LeoYao\/elasticsearch,lzo\/elasticsearch-1,gingerwizard\/elasticsearch,HarishAtGitHub\/elasticsearch,Siddartha07\/elasticsearch,GlenRSmith\/elasticsearch,kalburgimanjunath\/elasticsearch,18098924759\/elasticsearch,khiraiwa\/elasticsearch,wittyameta\/elasticsearch,SergVro\/elasticsearch,Collaborne\/elasticsearch,overcome\/elasticsearch,mm0\/elasticsearch,kunallimaye\/elasticsearch,lmtwga\/elasticsearch,vrkansagara\/elasticsearch,knight1128\/elasticsearch,ThalaivaStars\/OrgRepo1,Flipkart\/elasticsearch,achow\/elasticsearch,sposam\/elasticsearch,Rygbee\/elasticsearch,jeteve\/elasticsearch,artnowo\/elasticsearch,mnylen\/elasticsearch,KimTaehee\/elasticsearch,phani546\/elasticsearch,a2lin\/elasticsearch,jbertouch\/elasticsearch,tsohil\/elasticsearch,mbrukman\/elasticsearch,JervyShi\/elasticsearch,MaineC\/elasticsearch,jprante\/elasticsearch,obourgain\/elasticsearch,iacdingping\/elasticsearch,markharwood\/elasticsearch,18098924759\/elasticsearch,jpountz\/elasticsearch,JervyShi\/elasticsearch,wayeast\/elasticsearch,liweinan0423\/elasticsearch,iacdingping\/elasticsearch,bawse\/elasticsearch,scottsom\/elasticsearch,kimimj\/elasticsearch,F0lha\/elasticsearch,masaruh\/elasticsearch,smflorentino\/elasticsearch,PhaedrusTheGreek\/elasticsearch,Ansh90\/elasticsearch,nrkkalyan\/elasticsearch,jbertouch\/elasticsearch,qwerty4030\/elasticsearch,winstonewert\/elasticsearch,rlugojr\/elasticsearch,AshishThakur\/elasticsearch,jsgao0\/elasticsearch,petabytedata\/elasticsearch,martinstuga\/elasticsearch,Widen\/elasticsearch,drewr\/elasticsearch,masterweb121\/elasticsearch,sarwarbhuiyan\/elasticsearch,alexkuk\/elasticsearch,nazarewk\/elasticsearch,likaiwalkman\/elasticsearch,amaliujia\/elasticsearch,iamjakob\/elasticsearch,szroland\/elasticsearch,iantruslove\/elasticsearch,karthikjaps\/elasticsearch,nomoa\/elasticsearch,mortonsykes\/elasticsearch,skearns64\/elasticsearch,nilabhsagar\/elasticsearch,davidvgalbraith\/elasticsearch,markwalkom\/elasticsearch,pranavraman\/elasticsearch,fekaputra\/elasticsearch,diendt\/elasticsearch,mjhennig\/elasticsearch,petabytedata\/elasticsearch,jpountz\/elasticsearch,caengcjd\/elasticsearch,weipinghe\/elasticsearch,Brijeshrpatel9\/elasticsearch,lydonchandra\/elasticsearch,yynil\/elasticsearch,dataduke\/elasticsearch,mbrukman\/elasticsearch,heng4fun\/elasticsearch,TonyChai24\/ESSource,adrianbk\/elasticsearch,mbrukman\/elasticsearch,wbowling\/elasticsearch,rmuir\/elasticsearch,NBSW\/elasticsearch,bestwpw\/elasticsearch,xingguang2013\/elasticsearch,jbertouch\/elasticsearch,Shepard1212\/elasticsearch,acchen97\/elasticsearch,Ansh90\/elasticsearch,lightslife\/elasticsearch,scottsom\/elasticsearch,tkssharma\/elasticsearch,ckclark\/elasticsearch,LewayneNaidoo\/elasticsearch,scottsom\/elasticsearch,tahaemin\/elasticsearch,YosuaMichael\/elasticsearch,ImpressTV\/elasticsearch,rento19962\/elasticsearch,wayeast\/elasticsearch,chirilo\/elasticsearch,himanshuag\/elasticsearch,adrianbk\/elasticsearch,mrorii\/elasticsearch,socialrank\/elasticsearch,jsgao0\/elasticsearch,yynil\/elasticsearch,palecur\/elasticsearch,djschny\/elasticsearch,ImpressTV\/elasticsearch,feiqitian\/elasticsearch,Microsoft\/elasticsearch,schonfeld\/elasticsearch,rajanm\/elasticsearch,yanjunh\/elasticsearch,vietlq\/elasticsearch,hafkensite\/elasticsearch,milodky\/elasticsearch,Kakakakakku\/elasticsearch,rmuir\/elasticsearch,nrkkalyan\/elasticsearch,lzo\/elasticsearch-1,lzo\/elasticsearch-1,hanst\/elasticsearch,wbowling\/elasticsearch,snikch\/elasticsearch,mute\/elasticsearch,rlugojr\/elasticsearch,kevinkluge\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,feiqitian\/elasticsearch,slavau\/elasticsearch,amit-shar\/elasticsearch,umeshdangat\/elasticsearch,petabytedata\/elasticsearch,ricardocerq\/elasticsearch,andrestc\/elasticsearch,rajanm\/elasticsearch,mortonsykes\/elasticsearch,mkis-\/elasticsearch,springning\/elasticsearch,HarishAtGitHub\/elasticsearch,schonfeld\/elasticsearch,lmtwga\/elasticsearch,xingguang2013\/elasticsearch,ivansun1010\/elasticsearch,lydonchandra\/elasticsearch,fernandozhu\/elasticsearch,Shepard1212\/elasticsearch,geidies\/elasticsearch,glefloch\/elasticsearch,Chhunlong\/elasticsearch,lmtwga\/elasticsearch,loconsolutions\/elasticsearch,kcompher\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,huypx1292\/elasticsearch,pablocastro\/elasticsearch,alexshadow007\/elasticsearch,iacdingping\/elasticsearch,vrkansagara\/elasticsearch,golubev\/elasticsearch,infusionsoft\/elasticsearch,pablocastro\/elasticsearch,Brijeshrpatel9\/elasticsearch,overcome\/elasticsearch,Chhunlong\/elasticsearch,GlenRSmith\/elasticsearch,AndreKR\/elasticsearch,vietlq\/elasticsearch,lmtwga\/elasticsearch,sauravmondallive\/elasticsearch,MjAbuz\/elasticsearch,lks21c\/elasticsearch,easonC\/elasticsearch,markllama\/elasticsearch,rento19962\/elasticsearch,linglaiyao1314\/elasticsearch,codebunt\/elasticsearch,markharwood\/elasticsearch,andrejserafim\/elasticsearch,hechunwen\/elasticsearch,loconsolutions\/elasticsearch,JackyMai\/elasticsearch,iantruslove\/elasticsearch,sjohnr\/elasticsearch,amaliujia\/elasticsearch,PhaedrusTheGreek\/elasticsearch,nomoa\/elasticsearch,Liziyao\/elasticsearch,mbrukman\/elasticsearch,naveenhooda2000\/elasticsearch,xpandan\/elasticsearch,bawse\/elasticsearch,nilabhsagar\/elasticsearch,Helen-Zhao\/elasticsearch,JackyMai\/elasticsearch,TonyChai24\/ESSource,andrejserafim\/elasticsearch,kingaj\/elasticsearch,luiseduardohdbackup\/elasticsearch,wimvds\/elasticsearch,mrorii\/elasticsearch,Siddartha07\/elasticsearch,elancom\/elasticsearch,kubum\/elasticsearch,JervyShi\/elasticsearch,amaliujia\/elasticsearch,xpandan\/elasticsearch,tebriel\/elasticsearch,snikch\/elasticsearch,huanzhong\/elasticsearch,easonC\/elasticsearch,tkssharma\/elasticsearch,Chhunlong\/elasticsearch,fforbeck\/elasticsearch,geidies\/elasticsearch,EasonYi\/elasticsearch,achow\/elasticsearch,ckclark\/elasticsearch,pozhidaevak\/elasticsearch,strapdata\/elassandra5-rc,sdauletau\/elasticsearch,humandb\/elasticsearch,Widen\/elasticsearch,bestwpw\/elasticsearch,jprante\/elasticsearch,kenshin233\/elasticsearch,ImpressTV\/elasticsearch,areek\/elasticsearch,vingupta3\/elasticsearch,18098924759\/elasticsearch,elancom\/elasticsearch,humandb\/elasticsearch,obourgain\/elasticsearch,wayeast\/elasticsearch,TonyChai24\/ESSource,markwalkom\/elasticsearch,ESamir\/elasticsearch,markllama\/elasticsearch,Uiho\/elasticsearch,mrorii\/elasticsearch,rmuir\/elasticsearch,mikemccand\/elasticsearch,Helen-Zhao\/elasticsearch,iacdingping\/elasticsearch,AshishThakur\/elasticsearch,Charlesdong\/elasticsearch,Liziyao\/elasticsearch,naveenhooda2000\/elasticsearch,wangtuo\/elasticsearch,aglne\/elasticsearch,pozhidaevak\/elasticsearch,ulkas\/elasticsearch,lightslife\/elasticsearch,sneivandt\/elasticsearch,tahaemin\/elasticsearch,myelin\/elasticsearch,adrianbk\/elasticsearch,knight1128\/elasticsearch,trangvh\/elasticsearch,myelin\/elasticsearch,franklanganke\/elasticsearch,xingguang2013\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,ZTE-PaaS\/elasticsearch,sdauletau\/elasticsearch,zkidkid\/elasticsearch,dongjoon-hyun\/elasticsearch,gfyoung\/elasticsearch,davidvgalbraith\/elasticsearch,dataduke\/elasticsearch,tkssharma\/elasticsearch,sposam\/elasticsearch,a2lin\/elasticsearch,achow\/elasticsearch,pozhidaevak\/elasticsearch,yongminxia\/elasticsearch,uschindler\/elasticsearch,khiraiwa\/elasticsearch,likaiwalkman\/elasticsearch,tahaemin\/elasticsearch,alexbrasetvik\/elasticsearch,koxa29\/elasticsearch,vingupta3\/elasticsearch,jango2015\/elasticsearch,pablocastro\/elasticsearch,jpountz\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,Brijeshrpatel9\/elasticsearch,C-Bish\/elasticsearch,coding0011\/elasticsearch,JervyShi\/elasticsearch,Ansh90\/elasticsearch,trangvh\/elasticsearch,anti-social\/elasticsearch,trangvh\/elasticsearch,djschny\/elasticsearch,Fsero\/elasticsearch,humandb\/elasticsearch,nezirus\/elasticsearch,elancom\/elasticsearch,weipinghe\/elasticsearch,Rygbee\/elasticsearch,Shepard1212\/elasticsearch,pranavraman\/elasticsearch,karthikjaps\/elasticsearch,mmaracic\/elasticsearch,weipinghe\/elasticsearch,LeoYao\/elasticsearch,easonC\/elasticsearch,andrejserafim\/elasticsearch,TonyChai24\/ESSource,hanswang\/elasticsearch,lks21c\/elasticsearch,YosuaMichael\/elasticsearch,MisterAndersen\/elasticsearch,18098924759\/elasticsearch,MaineC\/elasticsearch,jimczi\/elasticsearch,queirozfcom\/elasticsearch,strapdata\/elassandra,Asimov4\/elasticsearch,kcompher\/elasticsearch,hirdesh2008\/elasticsearch,brandonkearby\/elasticsearch,chrismwendt\/elasticsearch,kevinkluge\/elasticsearch,abibell\/elasticsearch,aglne\/elasticsearch,mmaracic\/elasticsearch,rlugojr\/elasticsearch,kingaj\/elasticsearch,kingaj\/elasticsearch,loconsolutions\/elasticsearch,mbrukman\/elasticsearch,vrkansagara\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,schonfeld\/elasticsearch,coding0011\/elasticsearch,Charlesdong\/elasticsearch,karthikjaps\/elasticsearch,yongminxia\/elasticsearch,Shekharrajak\/elasticsearch,phani546\/elasticsearch,milodky\/elasticsearch,jeteve\/elasticsearch,fernandozhu\/elasticsearch,Kakakakakku\/elasticsearch,xuzha\/elasticsearch,queirozfcom\/elasticsearch,slavau\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,nrkkalyan\/elasticsearch,SergVro\/elasticsearch,wbowling\/elasticsearch,markharwood\/elasticsearch,tsohil\/elasticsearch,Uiho\/elasticsearch,lks21c\/elasticsearch,MetSystem\/elasticsearch,HarishAtGitHub\/elasticsearch,i-am-Nathan\/elasticsearch,ThalaivaStars\/OrgRepo1,nellicus\/elasticsearch,Shekharrajak\/elasticsearch,IanvsPoplicola\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,kubum\/elasticsearch,vroyer\/elassandra,mm0\/elasticsearch,Charlesdong\/elasticsearch,sdauletau\/elasticsearch,kunallimaye\/elasticsearch,Fsero\/elasticsearch,abibell\/elasticsearch,elasticdog\/elasticsearch,koxa29\/elasticsearch,elasticdog\/elasticsearch,spiegela\/elasticsearch,kenshin233\/elasticsearch,nellicus\/elasticsearch,btiernay\/elasticsearch,caengcjd\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,areek\/elasticsearch,sdauletau\/elasticsearch,anti-social\/elasticsearch,alexbrasetvik\/elasticsearch,heng4fun\/elasticsearch,heng4fun\/elasticsearch,skearns64\/elasticsearch,tahaemin\/elasticsearch,smflorentino\/elasticsearch,PhaedrusTheGreek\/elasticsearch,jimczi\/elasticsearch,masterweb121\/elasticsearch,mikemccand\/elasticsearch,lydonchandra\/elasticsearch,kalimatas\/elasticsearch,sarwarbhuiyan\/elasticsearch,LeoYao\/elasticsearch,anti-social\/elasticsearch,jchampion\/elasticsearch,awislowski\/elasticsearch,springning\/elasticsearch,glefloch\/elasticsearch,aglne\/elasticsearch,humandb\/elasticsearch,Shekharrajak\/elasticsearch,fooljohnny\/elasticsearch,ESamir\/elasticsearch,amit-shar\/elasticsearch,diendt\/elasticsearch,wittyameta\/elasticsearch,heng4fun\/elasticsearch,rento19962\/elasticsearch,wenpos\/elasticsearch,hafkensite\/elasticsearch,NBSW\/elasticsearch,cnfire\/elasticsearch-1,lightslife\/elasticsearch,liweinan0423\/elasticsearch,ydsakyclguozi\/elasticsearch,Flipkart\/elasticsearch,JervyShi\/elasticsearch,naveenhooda2000\/elasticsearch,nilabhsagar\/elasticsearch,pritishppai\/elasticsearch,elasticdog\/elasticsearch,JSCooke\/elasticsearch,myelin\/elasticsearch,humandb\/elasticsearch"} {"commit":"b8fb429c0b551c1a34b0fd294dac90a297d774be","old_file":"AUTHORS.adoc","new_file":"AUTHORS.adoc","old_contents":"= Authors and contributors\n\n- Simon Cruanes (`companion_cube`)\n- Drup (Gabriel Radanne)\n- Jacques-Pascal Deplaix\n- Nicolas Braud-Santoni\n- Whitequark (Peter Zotov)\n- hcarty (Hezekiah M. Carty)\n- struktured (Carmelo Piccione)\n- Bernardo da Costa\n- Vincent Bernardoff (vbmithr)\n- Emmanuel Surleau (emm)\n- Guillaume Bury (guigui)\n- JP Rodi\n- Florian Angeletti (@octachron)\n- Johannes Kloos\n- Geoff Gole (@gsg)\n- Roma Sokolov (@little-arhat)\n- Malcolm Matalka (`orbitz`)\n- David Sheets (@dsheets)\n- Glenn Slotte (glennsl)\n- @LemonBoy\n- Leonid Rozenberg (@rleonid)\n- Bikal Gurung (@bikalgurung)\n- Fabian Hemmer (copy)\n- Maciej Woś (@lostman)\n- Orbifx (Stavros Polymenis)\n- Rand (@rand00)\n- Dave Aitken (@actionshrimp)\n- Etienne Millon (@emillon)\n- Christopher Zimmermann (@madroach)\n- Jules Aguillon (@julow)\n","new_contents":"= Authors and contributors\n\n- Simon Cruanes (`companion_cube`)\n- Drup (Gabriel Radanne)\n- Jacques-Pascal Deplaix\n- Nicolas Braud-Santoni\n- Whitequark (Peter Zotov)\n- hcarty (Hezekiah M. Carty)\n- struktured (Carmelo Piccione)\n- Bernardo da Costa\n- Vincent Bernardoff (vbmithr)\n- Emmanuel Surleau (emm)\n- Guillaume Bury (guigui)\n- JP Rodi\n- Florian Angeletti (@octachron)\n- Johannes Kloos\n- Geoff Gole (@gsg)\n- Roma Sokolov (@little-arhat)\n- Malcolm Matalka (`orbitz`)\n- David Sheets (@dsheets)\n- Glenn Slotte (glennsl)\n- @LemonBoy\n- Leonid Rozenberg (@rleonid)\n- Bikal Gurung (@bikalgurung)\n- Fabian Hemmer (copy)\n- Maciej Woś (@lostman)\n- Orbifx (Stavros Polymenis)\n- Rand (@rand00)\n- Dave Aitken (@actionshrimp)\n- Etienne Millon (@emillon)\n- Christopher Zimmermann (@madroach)\n- Jules Aguillon (@julow)\n- Metin Akat (@loxs)\n","subject":"Add myself to the authors file","message":"Add myself to the authors file\n","lang":"AsciiDoc","license":"bsd-2-clause","repos":"c-cube\/ocaml-containers"} {"commit":"f832929a9f279dc9d3bfa6c440179b3453f00a58","old_file":"adoc\/omnij-devguide.adoc","new_file":"adoc\/omnij-devguide.adoc","old_contents":"= OmniJ Developer's Guide\nSean Gilligan\nv0.1, July 30, 2015: Early draft\n:numbered:\n:toc:\n:toclevels: 3\n:linkattrs:\n\nParagraph TBD.\n\n== Introduction to OmniJ\n\nThis section is TBD. For now the project http:\/\/github.com\/OmniLayer\/OmniJ\/README.adoc[README] is the best place to get started.\n\n== JSON-RPC Clients\n\n[plantuml, diagram-classes, svg]\n....\nskinparam packageStyle Rect\nskinparam shadowing false\nhide empty members\n\nnamespace com.msgilligan.bitcoin.rpc {\n class RPCClient\n RPCClient <|-- class DynamicRPCClient << Groovy >>\n RPCClient <|-- BitcoinClient\n BitcoinClient <|-- class BitcoinCLIClient << Groovy >>\n}\n\nnamespace foundation.omni.rpc {\n com.msgilligan.bitcoin.rpc.BitcoinClient <|-- OmniClient\n OmniClient <|-- OmniExtendedClient\n OmniExtendedClient <|-- class OmniCLIClient << Groovy >>\n}\n....\n\n\n\n","new_contents":"= OmniJ Developer's Guide\nSean Gilligan\nv0.1, July 30, 2015: Early draft\n:numbered:\n:toc:\n:toclevels: 3\n:linkattrs:\n:imagesdir: images\n\nParagraph TBD.\n\n== Introduction to OmniJ\n\nThis section is TBD. For now the project http:\/\/github.com\/OmniLayer\/OmniJ\/README.adoc[README] is the best place to get started.\n\n== JSON-RPC Clients\n\n[plantuml, diagram-classes, svg]\n....\nskinparam packageStyle Rect\nskinparam shadowing false\nhide empty members\n\nnamespace com.msgilligan.bitcoin.rpc {\n class RPCClient\n RPCClient <|-- class DynamicRPCClient << Groovy >>\n RPCClient <|-- BitcoinClient\n BitcoinClient <|-- class BitcoinCLIClient << Groovy >>\n}\n\nnamespace foundation.omni.rpc {\n com.msgilligan.bitcoin.rpc.BitcoinClient <|-- OmniClient\n OmniClient <|-- OmniExtendedClient\n OmniExtendedClient <|-- class OmniCLIClient << Groovy >>\n}\n....\n\n\n\n","subject":"Add images directory attribute to devguide","message":"Add images directory attribute to devguide","lang":"AsciiDoc","license":"apache-2.0","repos":"OmniLayer\/OmniJ,OmniLayer\/OmniJ,OmniLayer\/OmniJ"} {"commit":"1873528b34edfa2fc400ead1cfb4d95625e18b79","old_file":"docs\/groundwork.adoc","new_file":"docs\/groundwork.adoc","old_contents":"= Groundwork\n:toc:\n:source-highlighter: pygments\n\nlink:index.html[back to index page]\n\n== Laying the Groundwork\n\nTo redeploy RecordTrac, you need support from key stakeholders _within_ government. The administrator or elected official in charge of overseeing public records request must agree to use this system, and instruct their colleagues to do so. \n\nRecordTrac assumes there is a contact for a given municipality or department within the municipality to handle public records requests. If a government agency has no process at all in place, but is interested in using the system, they could start with one ‘champion’ that is knowledgeable about who has access to different records. The champion can then route requests to the proper parties within government who may have the documents or information a requester needs. \n\n\n== Best Practices to Consider\n\nRecordTrac is flexible and could complement almost any governmental agency's process for fulfilling records requests. There are however, best practices a governmental agency should adopt to really leverage the power of RecordTrac. Below is an example lifted from the City of Oakland:\n\n* Track all public records requests through RecordTrac, even if you originally received it over the phone, by email, fax, or mail. \n\n* Don't reveal sensitive information in your message or upload documents that haven't been thoroughly redacted. Everything you do on the site is immediately viewable to the public.\n\n* Upload scanned copies of the [redacted] records online instead of sending the document only to the requester. This prevents you from answering the same public records request multiple times. It also provides proof you responded to the request and exactly what you provided.\n\n* Communicate with everyone through RecordTrac. Only take conversations offline if it involves confidential or sensitive information.\n\n* Review requests no later than two business days after you receive them. This ensures the person responsible for fulfilling a records request gets it in time if it needs to be re-routed to him or her.\n","new_contents":"= Groundwork\n:toc:\n:source-highlighter: pygments\n\nlink:index.html[back to index page]\n\n== Laying the Groundwork\n\nTo redeploy RecordTrac, you need support from key stakeholders _within_ government. The administrator or elected official in charge of overseeing public records request must agree to use this system, and instruct their colleagues to do so. \n\nRecordTrac assumes there is a contact for a given municipality or department within the municipality to handle public records requests. If a government agency has no process at all in place, but is interested in using the system, they could start with one ‘champion’ that is knowledgeable about who has access to different records. The champion can then route requests to the proper parties within government who may have the documents or information a requester needs. \n\n","subject":"Put Best practices in a separate section.","message":"Put Best practices in a separate section.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"CityOfNewYork\/NYCOpenRecords,CityOfNewYork\/NYCOpenRecords,CityOfNewYork\/NYCOpenRecords,CityOfNewYork\/NYCOpenRecords,CityOfNewYork\/NYCOpenRecords"} {"commit":"fbd313be9d59492957f3cac1437a6304fb06b21d","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Qprompt\n\n== Introduction\nThis project provides a Python 2.x library that allows the user to quickly create CLI prompts for user input. The main features are the following:\n\n - Simple multi-entry menus.\n - Prompt for yes\/no response.\n - Prompt for integer response.\n - Prompt for float response.\n - Optional default value.\n - Optional validity check.\n - Should work on any platform without additional dependencies.\n\n== Status\nCurrently, this project is **under active development**. The contents of the repository should be considered unstable during active development.\n\n== Requirements\nQprompt should run on any Python 2.x interpreter without additional dependencies.\n\n== Installation\nQprompt can be installed with pip using the following command: `pip install qprompt`\n\nAdditional, Qprompt can be installed from source by running: `python setup.py install`\n\n== Examples\nExample of basic information prompting:\n\n--------\ninclude::examples\/ask_1.py[]\n--------\n\nExample of menu usage:\n\n--------\ninclude::examples\/menu_1.py[]\n--------\n\n== Similar\nThe following projects are similar and may be worth checking out:\n\n - https:\/\/github.com\/Sleft\/cliask[cliask]\n - https:\/\/github.com\/aventurella\/promptly[Promptly]\n - https:\/\/github.com\/tylerdave\/prompter[prompter]\n - https:\/\/github.com\/magmax\/python-inquirer[python-inquirer]\n","new_contents":"= Qprompt\n\n== Introduction\nThis project provides a Python 2.x library that allows the user to quickly create CLI prompts for user input. The main features are the following:\n\n - Simple multi-entry menus.\n - Prompt for yes\/no response.\n - Prompt for integer response.\n - Prompt for float response.\n - Optional default value.\n - Optional validity check.\n - Should work on any platform without additional dependencies.\n\n== Status\nCurrently, this project is **under active development**. The contents of the repository should be considered unstable during active development.\n\n== Requirements\nQprompt should run on any Python 2.x interpreter without additional dependencies.\n\n== Installation\nQprompt can be installed with pip using the following command: `pip install qprompt`\n\nAdditional, Qprompt can be installed from source by running: `python setup.py install`\n\n== Examples\nThe following are basic examples of Qprompt (all examples can be found https:\/\/github.com\/jeffrimko\/Qprompt\/tree\/master\/examples[here]):\n\n - https:\/\/github.com\/jeffrimko\/Qprompt\/blob\/master\/examples\/ask_1.py[`examples\/ask_1.py`] - Basic info prompting.\n - https:\/\/github.com\/jeffrimko\/Qprompt\/blob\/master\/examples\/menu_1.py[`examples\/menu_1.py`] - Basic menu usage.\n\n== Similar\nThe following projects are similar and may be worth checking out:\n\n - https:\/\/github.com\/Sleft\/cliask[cliask]\n - https:\/\/github.com\/aventurella\/promptly[Promptly]\n - https:\/\/github.com\/tylerdave\/prompter[prompter]\n - https:\/\/github.com\/magmax\/python-inquirer[python-inquirer]\n","subject":"Update to the example section.","message":"Update to the example section.\n","lang":"AsciiDoc","license":"mit","repos":"jeffrimko\/Qprompt"} {"commit":"e938ebfa19e8742a255592dfa11ac879700dbade","old_file":"adoc\/include\/common_options.adoc","new_file":"adoc\/include\/common_options.adoc","old_contents":"*--map-http-status* 'TEXT'::\n\nMap non success HTTP response codes to exit codes other than 1.\ne.g. \"--map-http-satus 403=0,404=0\" would exit with 0 even if a 403\nor 404 http error code was received. Valid exit codes are 0,1,50-99.\n\ninclude::format_option.adoc[]\n\ninclude::jmespath_option.adoc[]\n\ninclude::help_option.adoc[]\n\ninclude::verbose_option.adoc[]\n","new_contents":"*--map-http-status* 'TEXT'::\n\nMap non success HTTP response codes to exit codes other than 1.\ne.g. \"--map-http-satus 403=0,404=0\" would exit with 0 even if a 403\nor 404 http error code was received. Valid exit codes are 0,1,50-99.\n\n*-F, --format* '[json|text]'::\n\nSet the output format for stdout. Defaults to \"text\".\n\n*--jq, --jmespath* 'EXPR'::\n\nSupply a JMESPath expression to apply to json output.\nTakes precedence over any specified '--format' and forces the format to be json\nprocessed by this expression.\n+\nA full specification of the JMESPath language for querying JSON structures may\nbe found at https:\/\/jmespath.org\/\n\n*-h, --help*::\n\nShow help text for this command.\n\n*-v, --verbose*::\n\nControl the level of output. \n+\nUse -v or --verbose to show warnings and any additional text output.\n+ \nUse -vv to add informative logging.\n+\nUse -vvv to add debug logging and full stack on any errors. (equivalent to\n-v --debug)\n\n","subject":"Remove nested includes from adoc","message":"Remove nested includes from adoc\n","lang":"AsciiDoc","license":"apache-2.0","repos":"globus\/globus-cli,globus\/globus-cli"} {"commit":"52b6608eace07c90c3dbe9e3a87e5510675406f1","old_file":"modules\/dedicated-managing-dedicated-administrators.adoc","new_file":"modules\/dedicated-managing-dedicated-administrators.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ administering_a_cluster\/dedicated-admin-role.adoc\n\n[id=\"dedicated-managing-dedicated-administrators_{context}\"]\n= Managing {product-title} administrators\n\nAdministrator roles are managed using a `dedicated-admins` group on the cluster.\nExisting members of this group can edit membership via the\nlink:https:\/\/cloud.redhat.com\/openshift[{cloud-redhat-com}] site.\n\n[id=\"dedicated-administrators-adding-user_{context}\"]\n== Adding a user\n. Navigate to the *Cluster Details* page and *Users* tab.\n. Click the *Add user* button. (first user only)\n. Enter the user name and select the group (*dedicated-admins*)\n. Click the *Add* button.\n\n[id=\"dedicated-administrators-removing-user_{context}\"]\n== Removing a user\n. Navigate to the *Cluster Details* page and *Users* tab.\n. Click the *X* to the right of the user \/ group combination to be deleted..\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ administering_a_cluster\/dedicated-admin-role.adoc\n\n[id=\"dedicated-managing-dedicated-administrators_{context}\"]\n= Managing {product-title} administrators\n\nAdministrator roles are managed using a `dedicated-admins` group on the cluster.\nExisting members of this group can edit membership via the\nlink:https:\/\/cloud.redhat.com\/openshift[{cloud-redhat-com}] site.\n\n[id=\"dedicated-administrators-adding-user_{context}\"]\n== Adding a user\n. Navigate to the *Cluster Details* page and *Access Control* tab.\n. Click the *Add user* button. (first user only)\n. Enter the user name and select the group (*dedicated-admins*)\n. Click the *Add* button.\n\n[id=\"dedicated-administrators-removing-user_{context}\"]\n== Removing a user\n. Navigate to the *Cluster Details* page and *Access Control* tab.\n. Click the 3 vertical dots to the right of the user \/ group combination to show a menu, then click on *Delete*.\n","subject":"Update documentation to current interface on cloud.rh.c","message":"Update documentation to current interface on cloud.rh.c","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"c5002afeefa5636f66cc673a80f130175f931a60","old_file":"CHANGELOG.asciidoc","new_file":"CHANGELOG.asciidoc","old_contents":"2020\/06\/18: Concuerror integration has been added. It is\n currently minimal but usable. Experimentation\n and feedback is welcome.\n\n2020\/11\/30: Support for publishing Hex releases and docs\n has been added. It is currently experimental.\n Feedback is more than welcome.\n\n2022\/03\/25: The -Wrace_conditions Dialyzer flag was removed\n as it is no longer available starting from OTP 25.\n\n2022\/??\/??: Relx has been updated to v4. Relx v4 is no longer\n an escript, therefore breaking changes were\n introduced. The `RELX`, `RELX_URL` and `RELX_OPTS`\n variables were removed. The `relx` project must\n be added as a `DEPS`, `BUILD_DEPS` or `REL_DEPS`\n dependency to enable building releases. For example:\n `REL_DEPS = relx`. Relx itself has had some\n additional changes: the `start` command has\n been replaced by `daemon`, and configuration\n defaults have changed so that you may need\n to add the following to your relx.config file:\n\n ``` erlang\n {dev_mode, false}.\n {include_erts, true}.\n ```\n","new_contents":"2020\/06\/18: Concuerror integration has been added. It is\n currently minimal but usable. Experimentation\n and feedback is welcome.\n\n2020\/11\/30: Support for publishing Hex releases and docs\n has been added. It is currently experimental.\n Feedback is more than welcome.\n\n2022\/03\/25: The -Wrace_conditions Dialyzer flag was removed\n as it is no longer available starting from OTP 25.\n\n2022\/05\/20: Relx has been updated to v4. Relx v4 is no longer\n an escript, therefore breaking changes were\n introduced. The `RELX`, `RELX_URL` and `RELX_OPTS`\n variables were removed. The `relx` project must\n be added as a `DEPS`, `BUILD_DEPS` or `REL_DEPS`\n dependency to enable building releases. For example:\n `REL_DEPS = relx`. Relx itself has had some\n additional changes: the `start` command has\n been replaced by `daemon`, and configuration\n defaults have changed so that you may need\n to add the following to your relx.config file:\n\n ``` erlang\n {dev_mode, false}.\n {include_erts, true}.\n ```\n","subject":"Set date for breaking Relx 4 change","message":"Set date for breaking Relx 4 change\n","lang":"AsciiDoc","license":"isc","repos":"ninenines\/erlang.mk,rabbitmq\/erlang.mk"} {"commit":"436b3063271078581d376774c2a6d534742dd777","old_file":"doc\/cookbook\/zone.adoc","new_file":"doc\/cookbook\/zone.adoc","old_contents":"== Time Zones & Offset\n\nExtract a zone from a `java.time.ZonedDateTime`:\n====\n[source.code,clojure]\n----\n(t\/zone (t\/zoned-date-time \"2000-01-01T00:00:00Z[Europe\/Paris]\"))\n----\n\n[source.code,clojure]\n----\n(t\/zone)\n----\n\n====\n\nCreate a `java.time.ZonedDateTime` in a particular time zone:\n\n====\n[source.code,clojure]\n----\n(t\/in (t\/instant \"2000-01-01T00:00\") \"Australia\/Darwin\")\n----\n====\n\n\n=== TBD : offsets","new_contents":"== Time Zones & Offset\n\nExtract a zone from a `java.time.ZonedDateTime`:\n====\n[source.code,clojure]\n----\n(t\/zone (t\/zoned-date-time \"2000-01-01T00:00:00Z[Europe\/Paris]\"))\n----\n\n[source.code,clojure]\n----\n(t\/zone)\n----\n\n====\n\nCreate a `java.time.ZonedDateTime` in a particular time zone:\n\n====\n[source.code,clojure]\n----\n(t\/in (t\/instant \"2000-01-01T00:00\") \"Australia\/Darwin\")\n----\n====\n\nGive the `OffsetDateTime` instead of `ZonedDateTime`:\n\n====\n[source.code,clojure]\n----\n(t\/offset-date-time (t\/zoned-date-time \"2000-01-01T00:00:00Z[Australia\/Darwin]\"))\n----\n====\n\nSpecify the offset for a `LocalDateTime`:\n====\n[source.code,clojure]\n----\n(t\/offset-by (t\/date-time \"2018-01-01T00:00\") 9)\n----\n====\n","subject":"Add offset examples to Zones","message":"Add offset examples to Zones\n","lang":"AsciiDoc","license":"mit","repos":"juxt\/tick,juxt\/tick"} {"commit":"7ce834e70d12fb870f79af99daaf22e9f5c6aee8","old_file":"src\/main\/docs\/index.adoc","new_file":"src\/main\/docs\/index.adoc","old_contents":"= geo-shell\nJared Erickson\nv0.7-SNAPSHOT\nifndef::imagesdir[:imagesdir: images]\n\ninclude::intro.adoc[]\n\ninclude::workspace.adoc[]\n\ninclude::layer.adoc[]\n\ninclude::format.adoc[]\n\ninclude::raster.adoc[]\n\ninclude::tile.adoc[]\n\ninclude::style.adoc[]\n\ninclude::map.adoc[]\n\ninclude::builtin.adoc[]","new_contents":"= Geo Shell\nJared Erickson\nv0.7-SNAPSHOT\n:title-logo-image: image:geoshell.png[pdfwidth=5.5in,align=center]\nifndef::imagesdir[:imagesdir: images]\n\ninclude::intro.adoc[]\n\ninclude::workspace.adoc[]\n\ninclude::layer.adoc[]\n\ninclude::format.adoc[]\n\ninclude::raster.adoc[]\n\ninclude::tile.adoc[]\n\ninclude::style.adoc[]\n\ninclude::map.adoc[]\n\ninclude::builtin.adoc[]","subject":"Add title image to pdf","message":"Add title image to pdf\n","lang":"AsciiDoc","license":"mit","repos":"jericks\/geo-shell,jericks\/geo-shell,jericks\/geo-shell"} {"commit":"6b23a4a24353bad169fa4340a30d8a357a512fce","old_file":"impl\/src\/docs\/asciidoc\/index.adoc","new_file":"impl\/src\/docs\/asciidoc\/index.adoc","old_contents":":generated: ..\/..\/..\/target\/generated-docs\/asciidoc\n\ninclude::{generated}\/overview.adoc[]\ninclude::manual_rest_doc.adoc[]\ninclude::{generated}\/paths.adoc[]\n","new_contents":":generated: ..\/..\/..\/target\/generated-docs\/asciidoc\n\ninclude::{generated}\/overview.adoc[]\ninclude::manual_rest_doc.adoc[]\ninclude::{generated}\/paths.adoc[]\ninclude::{generated}\/definitions.adoc[]\n","subject":"Add generated data type definitions to Swagger documentation","message":"Add generated data type definitions to Swagger documentation\n","lang":"AsciiDoc","license":"mit","repos":"jugda\/dukecon_server,dukecon\/dukecon_server,jugda\/dukecon_server,dukecon\/dukecon_server,dukecon\/dukecon_server,jugda\/dukecon_server"} {"commit":"b582f7574430e1946ffaac7ac7365c48fc3ac1b4","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Spring Boot and Two DataSources\n\nThis project demonstrates how to use two `DataSource` s with Spring Boot 2.1.\n\nIt utilizes: \n\n* Spring Data https:\/\/github.com\/spring-projects\/spring-data-jpa[JPA]\n* https:\/\/github.com\/flyway\/flyway[Flyway] migrations for the two `DataSource` s\n* Separate Hibernate properties for each `DataSource` defined in the application.yml\n* Tests for components\n\n Note: It may take a few seconds for the app to start if no one has not accessed it recently","new_contents":"= Spring Boot and Two DataSources\n\nThis project demonstrates how to use two `DataSource` s with Spring Boot 2.1.\n\nIt utilizes: \n\n* Spring Data https:\/\/github.com\/spring-projects\/spring-data-jpa[JPA]\n* https:\/\/github.com\/flyway\/flyway[Flyway] migrations for the two `DataSource` s\n* Separate Hibernate properties for each `DataSource` defined in the application.yml\n* Tests for components\n","subject":"Remove note about app starting up","message":"Remove note about app starting up\n\nIt's no longer applicable to the branch that is purely backend components without any frontend.\n","lang":"AsciiDoc","license":"unlicense","repos":"drumonii\/SpringBootTwoDataSources"} {"commit":"b978bf8d377f09c132050297e45b3c8fbb652a4a","old_file":"src\/main\/asciidoc\/development.adoc","new_file":"src\/main\/asciidoc\/development.adoc","old_contents":"[[development]]\n== Development\n\nGithub repository: {datasource-proxy}\n\n=== Build Documentation\n\n```sh\n> .\/mvnw asciidoctor:process-asciidoc@output-html\n```\n","new_contents":"[[development]]\n== Development\n\nGithub repository: {datasource-proxy}\n\n=== Build Documentation\n\nGenerate `index.html`\n\n```sh\n> .\/mvnw asciidoctor:process-asciidoc@output-html\n```\n\nHttp preview\n\n```sh\n> .\/mvnw asciidoctor:http@output-html\n```","subject":"Add how to use asciidoctor plugin in dev","message":"Add how to use asciidoctor plugin in dev\n","lang":"AsciiDoc","license":"mit","repos":"ttddyy\/datasource-proxy,ttddyy\/datasource-proxy"} {"commit":"2e835acb457e13f3fc5a49459604488388d80cae","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Infinispan Cluster Manager\n\nimage:https:\/\/vertx.ci.cloudbees.com\/buildStatus\/icon?job=vert.x3-infinispan[\"Build Status\",link=\"https:\/\/vertx.ci.cloudbees.com\/view\/vert.x-3\/job\/vert.x3-infinispan\/\"]\n\nThis is a cluster manager implementation for Vert.x that uses http:\/\/infinispan.org[Infinispan].\n\nPlease see the in-source asciidoc documentation or the main documentation on the web-site for a full description\nof this component:\n\n* link:http:\/\/vertx.io\/docs\/vertx-infinispan\/java\/[web-site docs]\n* link:src\/main\/asciidoc\/java\/index.adoc[in-source docs]\n\n-- will remove --\n","new_contents":"= Infinispan Cluster Manager\n\nimage:https:\/\/vertx.ci.cloudbees.com\/buildStatus\/icon?job=vert.x3-infinispan[\"Build Status\",link=\"https:\/\/vertx.ci.cloudbees.com\/view\/vert.x-3\/job\/vert.x3-infinispan\/\"]\n\nThis is a cluster manager implementation for Vert.x that uses http:\/\/infinispan.org[Infinispan].\n\nPlease see the in-source asciidoc documentation or the main documentation on the web-site for a full description\nof this component:\n\n* link:http:\/\/vertx.io\/docs\/vertx-infinispan\/java\/[web-site docs]\n* link:src\/main\/asciidoc\/java\/index.adoc[in-source docs]\n","subject":"Revert \"Revert \"Revert \"Test trigger on push\"\"\"","message":"Revert \"Revert \"Revert \"Test trigger on push\"\"\"\n\nThis reverts commit f235543226884c6293a70b2540441e5b1528ff6c.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vert-x3\/vertx-infinispan"} {"commit":"242825445a9b0adf2b5ef2b3de4d8c612ade0c22","old_file":"docs\/src\/docs\/asciidoc\/multiTenancy\/tenantTransforms.adoc","new_file":"docs\/src\/docs\/asciidoc\/multiTenancy\/tenantTransforms.adoc","old_contents":"The next transformations can be applied to any class to simplify greatly the development of Multi-Tenant applications. These include:\n\n- `@CurrentTenant` - Resolve the current tenant for the context of a class or method\n- `@Tenant` - Use a specific tenant for the context of a class or method\n- `@WithoutTenant` - Execute logic without a specific tenant (using the default connection)\n\nFor example:\n\n[source,groovy]\n----\nimport grails.gorm.multitenancy.*\n\n\/\/ resolve the current tenant for every method\n@CurrentTenant\nclass TeamService {\n\n \/\/ execute the countPlayers method without a tenant id\n @WithoutTenant\n int countPlayers() {\n Player.count()\n }\n\n \/\/ use the tenant id \"another\" for all GORM logic within the method\n @Tenant({\"another\"})\n List allTwoTeams() {\n Team.list()\n }\n\n List listTeams() {\n Team.list(max:10)\n }\n\n @Transactional\n void addTeam(String name) {\n new Team(name:name).save(flush:true)\n }\n}\n----","new_contents":"The following transformations can be applied to any class to simplify greatly the development of Multi-Tenant applications. These include:\n\n- `@CurrentTenant` - Resolve the current tenant for the context of a class or method\n- `@Tenant` - Use a specific tenant for the context of a class or method\n- `@WithoutTenant` - Execute logic without a specific tenant (using the default connection)\n\nFor example:\n\n[source,groovy]\n----\nimport grails.gorm.multitenancy.*\n\n\/\/ resolve the current tenant for every method\n@CurrentTenant\nclass TeamService {\n\n \/\/ execute the countPlayers method without a tenant id\n @WithoutTenant\n int countPlayers() {\n Player.count()\n }\n\n \/\/ use the tenant id \"another\" for all GORM logic within the method\n @Tenant({\"another\"})\n List allTwoTeams() {\n Team.list()\n }\n\n List listTeams() {\n Team.list(max:10)\n }\n\n @Transactional\n void addTeam(String name) {\n new Team(name:name).save(flush:true)\n }\n}\n----\n","subject":"Replace \"the next\" with \"the following\"","message":"Replace \"the next\" with \"the following\"","lang":"AsciiDoc","license":"apache-2.0","repos":"grails\/gorm-hibernate5"} {"commit":"a78ed8d4a2590eb9759cf1283971056af637d94b","old_file":"libbeat\/docs\/communitybeats.asciidoc","new_file":"libbeat\/docs\/communitybeats.asciidoc","old_contents":"[[community-beats]]\n== Community Beats\n\nThe open source community has been hard at work developing new Beats. You can check\nout a few of them here:\n\n[horizontal]\nhttps:\/\/github.com\/Ingensi\/dockerbeat[dockerbeat]:: Reads docker container\nstatistics and indexes them in Elasticsearch\nhttps:\/\/github.com\/christiangalsterer\/httpbeat[httpbeat]:: Polls multiple HTTP(S) endpoints and sends the data to\nLogstash, Elasticsearch. Supports all HTTP methods and proxies.\nhttps:\/\/github.com\/mrkschan\/nginxbeat[nginxbeat]:: Reads status from Nginx\nhttps:\/\/github.com\/joshuar\/pingbeat[pingbeat]:: Sends ICMP pings to a list\nof targets and stores the round trip time (RTT) in Elasticsearch\nhttps:\/\/github.com\/mrkschan\/uwsgibeat[uwsgibeat]:: Reads stats from uWSGI\nhttps:\/\/github.com\/kozlice\/phpfpmbeat[phpfpmbeat]:: Reads status from PHP-FPM\n\nHave you created a Beat that's not listed? Open a pull request to add your link\nhere: https:\/\/github.com\/elastic\/libbeat\/blob\/master\/docs\/communitybeats.asciidoc\n\nNOTE: Elastic provides no warranty or support for community-sourced Beats.\n\n[[contributing-beats]]\n=== Contributing to Beats\n\nRemember, you can be a Beats developer, too. <>\n\n","new_contents":"[[community-beats]]\n== Community Beats\n\nThe open source community has been hard at work developing new Beats. You can check\nout a few of them here:\n\n[horizontal]\nhttps:\/\/github.com\/Ingensi\/dockerbeat[dockerbeat]:: Reads docker container\nstatistics and indexes them in Elasticsearch\nhttps:\/\/github.com\/christiangalsterer\/httpbeat[httpbeat]:: Polls multiple HTTP(S) endpoints and sends the data to\nLogstash, Elasticsearch. Supports all HTTP methods and proxies.\nhttps:\/\/github.com\/mrkschan\/nginxbeat[nginxbeat]:: Reads status from Nginx\nhttps:\/\/github.com\/joshuar\/pingbeat[pingbeat]:: Sends ICMP pings to a list\nof targets and stores the round trip time (RTT) in Elasticsearch\nhttps:\/\/github.com\/mrkschan\/uwsgibeat[uwsgibeat]:: Reads stats from uWSGI\nhttps:\/\/github.com\/kozlice\/phpfpmbeat[phpfpmbeat]:: Reads status from PHP-FPM\nhttps:\/\/github.com\/radoondas\/apachebeat[apachebeat]:: Reads status from Apache HTTPD server-status\n\nHave you created a Beat that's not listed? Open a pull request to add your link\nhere: https:\/\/github.com\/elastic\/libbeat\/blob\/master\/docs\/communitybeats.asciidoc\n\nNOTE: Elastic provides no warranty or support for community-sourced Beats.\n\n[[contributing-beats]]\n=== Contributing to Beats\n\nRemember, you can be a Beats developer, too. <>\n\n","subject":"Add apachebeat to the list of beats from opensource","message":"Add apachebeat to the list of beats from opensource","lang":"AsciiDoc","license":"mit","repos":"yapdns\/yapdnsbeat,yapdns\/yapdnsbeat"} {"commit":"47212b4db9302d1b8f194bc8c43247772c54afbd","old_file":"doc\/src\/main\/asciidoc\/rest-spec.adoc","new_file":"doc\/src\/main\/asciidoc\/rest-spec.adoc","old_contents":"= RESTful API Endpoint specification\n\n== Nodes\n\n=== Idea for accessing fields directly\n\n* RUD: \/nodes\/:uuid\/relatedProducts\/:uuid -> Pageable list of nodes\n* R: \/nodes\/:uuid\/name\n\nTODO: Do we want to restrict the primitiv types to read only? The user can update the node via PUT \/nodes\/:uuid anyway.\n\n== Webroot\n\n\n== Tags\n\nTODO: Define how tag familes are setup and tags are assigned to those families.\n\n== Users \/ Groups \/ Roles\n\n\n== Projects\n\nTODO: Define how languages are assigned to projects\n","new_contents":"= RESTful API Endpoint specification\n\n== Nodes\n\n=== Idea for accessing fields directly\n\n* RUD: \/nodes\/:uuid\/relatedProducts\/:uuid -> Pageable list of nodes\n* R: \/nodes\/:uuid\/name\n\nTODO: Do we want to restrict the primitiv types to read only? The user can update the node via PUT \/nodes\/:uuid anyway.\n\n== Breadcrumbs\n\n`\/breadcrumb\/:uuid` -> object containing breadcrumb to the node specified by uuid in the following format:\n\n[source,json]\n----\n[ \n { \"uuid\": \"e0c64dsgasdgasdgdgasdgasdgasdg33\", \"name\": \"products\" }, \n { \"uuid\": \"e0c64ad00a9343cc864ad00a9373cc23\", \"name\": \"aeroplane.en.html\" }\n]\n----\n\nTODO: Where does the \"name\" property come from? It should be the field specified by \"segmentField\" in the schema. \n\nTwo issues:\n\n1. Should we normalize the property name to \"name\", or retain the name of the field specified by \"segmentField\"?\n2. If the schema of a node in the breadcrumb path does not specify \"segmentField\", what do we do? Just display the uuid?\n\n== Webroot\n\n\n== Tags\n\nTODO: Define how tag familes are setup and tags are assigned to those families.\n\n== Users \/ Groups \/ Roles\n\n\n== Projects\n\nTODO: Define how languages are assigned to projects\n","subject":"Add section on breadcrumbs endpoint","message":"Add section on breadcrumbs endpoint","lang":"AsciiDoc","license":"apache-2.0","repos":"gentics\/mesh,gentics\/mesh,gentics\/mesh,gentics\/mesh"} {"commit":"ccb2545c35c7a88014f2c0dd06a1582b029ab298","old_file":"conoha\/dokku-apps\/README.adoc","new_file":"conoha\/dokku-apps\/README.adoc","old_contents":"= conoha\/dokku-apps\n\n\n.Add pytohn-getting-started app\n----\nalias dokku=\"ssh -t dokku@conoha\"\n\ncd python-getting-started\n\ndokku apps:create python-getting-started\ngit remote add dokku dokku@conoha:python-getting-started\ngit push dokku master\n----\n\nAnd this app can be available at http:\/\/python-getting-started.d.10sr.f5.si .\n","new_contents":"= conoha\/dokku-apps\n\nFirst you have to run:\n\n----\ncat .ssh\/id_rsa.pub | ssh conoha 'sudo sshcommand acl-add dokku dokkudeploy'\n----\n\n\n\n.Add pytohn-getting-started app\n----\nalias dokku=\"ssh -t dokku@conoha\"\n\ncd python-getting-started\n\ndokku apps:create python-getting-started\ngit remote add dokku dokku@conoha:python-getting-started\ngit push dokku master\n----\n\nAnd this app can be available at http:\/\/python-getting-started.d.10sr.f5.si .\n","subject":"Add note to add keys for dokku","message":"Add note to add keys for dokku\n","lang":"AsciiDoc","license":"unlicense","repos":"10sr\/server-provisions,10sr\/machine-setups,10sr\/machine-setups,10sr\/machine-setups,10sr\/server-provisions,10sr\/machine-setups"} {"commit":"d61a7352efcf33d8bcb1bf1fd9052480e2ee15ba","old_file":"code\/continuousIntegration.adoc","new_file":"code\/continuousIntegration.adoc","old_contents":"= Continuous integration\n:awestruct-description: Check if the latest nightly build passes all automated tests.\n:awestruct-layout: normalBase\n:showtitle:\n\n== OptaPlanner\n\nWe use Jenkins for continuous integration.\n\n*Show https:\/\/hudson.jboss.org\/hudson\/job\/optaplanner\/[the public Jenkins job].* This is a mirror of a Red Hat internal Jenkins job.\n\nKeep the build blue!\n\n== Project website (optaplanner.org)\n\nWe use Travis to build this project website, see https:\/\/travis-ci.org\/droolsjbpm\/optaplanner-website[the travis job].\n","new_contents":"= Continuous integration\n:awestruct-description: Check if the latest nightly build passes all automated tests.\n:awestruct-layout: normalBase\n:showtitle:\n\n== OptaPlanner\n\nWe use Jenkins for continuous integration.\n\n*Show https:\/\/jenkins-kieci.rhcloud.com\/job\/optaplanner\/[the public Jenkins job].* This is a mirror of a Red Hat internal Jenkins job.\n\nKeep the build green!\n\n== Project website (optaplanner.org)\n\nWe use Travis to build this project website, see https:\/\/travis-ci.org\/droolsjbpm\/optaplanner-website[the travis job].\n","subject":"Update public Jenkins job URL","message":"Update public Jenkins job URL","lang":"AsciiDoc","license":"apache-2.0","repos":"bibryam\/optaplanner-website,psiroky\/optaplanner-website,oskopek\/optaplanner-website,droolsjbpm\/optaplanner-website,bibryam\/optaplanner-website,oskopek\/optaplanner-website,psiroky\/optaplanner-website,bibryam\/optaplanner-website,psiroky\/optaplanner-website,oskopek\/optaplanner-website,droolsjbpm\/optaplanner-website,droolsjbpm\/optaplanner-website"} {"commit":"c9fd39c5785d21b75d32348f8643409668e985bd","old_file":"modules\/nw-dns-operator-logs.adoc","new_file":"modules\/nw-dns-operator-logs.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * dns\/dns-operator.adoc\n\n[id=\"nw-dns-operator-logs_{context}\"]\n= DNS Operator logs\n\nYou can view DNS Operator logs by using the `oc logs` command.\n\n.Procedure\n\nView the logs of the DNS Operator:\n----\n$ oc logs --namespace=openshift-dns-operator deployment\/dns-operator\n----\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * dns\/dns-operator.adoc\n\n[id=\"nw-dns-operator-logs_{context}\"]\n= DNS Operator logs\n\nYou can view DNS Operator logs by using the `oc logs` command.\n\n.Procedure\n\nView the logs of the DNS Operator:\n----\n$ oc logs -n openshift-dns-operator deployment\/dns-operator -c dns-operator\n----\n","subject":"Fix command to get DNS logs","message":"Fix command to get DNS logs\n\n- https:\/\/bugzilla.redhat.com\/show_bug.cgi?id=1834702\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"04d5d44e744c96aa641b534a22a546ae7262579e","old_file":"src\/docs\/manual\/03_task_exportEA.adoc","new_file":"src\/docs\/manual\/03_task_exportEA.adoc","old_contents":":filename: manual\/03_task_exportEA.adoc\nifndef::imagesdir[:imagesdir: ..\/images]\n\n= exportEA\n\nIMPORTANT: Currently this feature is WINDOWS-only. https:\/\/github.com\/docToolchain\/docToolchain\/issues\/231[See related issue]\n\ninclude::feedback.adoc[]\n\nimage::ea\/Manual\/exportEA.png[]\n\nTIP: Blog-Posts: https:\/\/rdmueller.github.io\/jria2eac\/[JIRA to Sparx EA], https:\/\/rdmueller.github.io\/sparx-ea\/[Did you ever wish you had better Diagrams?]\n\n== Source\n\n.build.gradle\n[source,groovy]\n----\ninclude::..\/..\/..\/scripts\/exportEA.gradle[tags=exportEA]\n----\n\n.scripts\/exportEAP.vbs\n[source]\n----\ninclude::..\/..\/..\/scripts\/exportEAP.vbs[]\n----","new_contents":":filename: manual\/03_task_exportEA.adoc\nifndef::imagesdir[:imagesdir: ..\/images]\n\n= exportEA\n\nIMPORTANT: Currently this feature is WINDOWS-only. https:\/\/github.com\/docToolchain\/docToolchain\/issues\/231[See related issue]\n\ninclude::feedback.adoc[]\n\nimage::ea\/Manual\/exportEA.png[]\n\nTIP: Blog-Posts: https:\/\/rdmueller.github.io\/jria2eac\/[JIRA to Sparx EA], https:\/\/rdmueller.github.io\/sparx-ea\/[Did you ever wish you had better Diagrams?]\n\n== Configuration\nBy default no special configuration is necessary.\nBut, to be more specific on the project and its packages to be used for export,\ntwo optional parameter configurations are available.\nThe parameters can be used independently from each other.\nA sample how to edit your projects Config.groovy is given in the 'Config.groovy'\nof the docToolchain project itself.\n\nconnection::\nSet the connection to a certain project or comment it out to use all project files inside the src folder or its child folder.\n\npackageFilter::\nAdd one or multiple packageGUIDs to be used for export. All packages are analysed, if no packageFilter is set.\n\n== Source\n\n.build.gradle\n[source,groovy]\n----\ninclude::..\/..\/..\/scripts\/exportEA.gradle[tags=exportEA]\n----\n\n.scripts\/exportEAP.vbs\n[source]\n----\ninclude::..\/..\/..\/scripts\/exportEAP.vbs[]\n----\n","subject":"Add documentation for the parameters offered by the exportEA configuration.","message":"Add documentation for the parameters offered by the exportEA configuration.\n","lang":"AsciiDoc","license":"mit","repos":"docToolchain\/docToolchain,docToolchain\/docToolchain,docToolchain\/docToolchain,docToolchain\/docToolchain"} {"commit":"573e2c24a90c6422ec873124f93fc1418c1ea00e","old_file":"python\/template\/docs\/problem.adoc","new_file":"python\/template\/docs\/problem.adoc","old_contents":":doctitle:\r\n:author: Jerod Gawne\r\n:email: jerodgawne@gmail.com\r\n:docdate: June 07, 2018\r\n:revdate: {docdatetime}\r\n:src-uri: https:\/\/github.com\/jerodg\/hackerrank\r\n\r\n:difficulty:\r\n:time-complexity:\r\n:required-knowledge:\r\n:advanced-knowledge:\r\n:solution-variability:\r\n:score:\r\n:keywords: python, {required-knowledge}, {advanced-knowledge}\r\n:summary:\r\n\r\n:doctype: article\r\n:sectanchors:\r\n:sectlinks:\r\n:sectnums:\r\n:toc:\r\n\r\n{summary}\r\n\r\n== Learning\r\n\r\n== Tutorial\r\n\r\n== Improving the Template\r\n=== Convention\r\n.Missing\r\n* shebang\r\n* encoding\r\n* doc-comments\r\n\r\n=== Extraneous\r\nN\/A\r\n\r\n=== Pep8\r\n* No new-line at end of file\r\n\r\n=== Syntax\r\nN\/A\r\n\r\n== Reference\r\n","new_contents":":doctitle:\r\n:author: Jerod Gawne\r\n:email: jerodgawne@gmail.com\r\n:docdate: June 07, 2018\r\n:revdate: {docdatetime}\r\n:src-uri: https:\/\/github.com\/jerodg\/hackerrank\r\n\r\n:difficulty:\r\n:time-complexity:\r\n:required-knowledge:\r\n:advanced-knowledge:\r\n:solution-variability:\r\n:score:\r\n:keywords: python, {required-knowledge}, {advanced-knowledge}\r\n:summary:\r\n\r\n:doctype: article\r\n:sectanchors:\r\n:sectlinks:\r\n:sectnums:\r\n:toc:\r\n\r\n{summary}\r\n\r\n== Learning\r\n\r\n== Tutorial\r\n\r\n== Improving the Problem\r\n\r\n== Improving the Template\r\n=== Convention\r\n.Missing\r\n* shebang\r\n* encoding\r\n* doc-comments\r\n\r\n=== Extraneous\r\nN\/A\r\n\r\n=== Pep8\r\n* No new-line at end of file\r\n\r\n=== Syntax\r\nN\/A\r\n\r\n== Reference\r\n","subject":"Add Improving the Problem section.","message":"Add Improving the Problem section.\n","lang":"AsciiDoc","license":"mit","repos":"jerodg\/hackerrank-python"} {"commit":"5ba5e9426c278aba34de90e183f8e7e8a74556e5","old_file":"examples\/camel-example-spring-boot-supervising-route-controller\/readme.adoc","new_file":"examples\/camel-example-spring-boot-supervising-route-controller\/readme.adoc","old_contents":"# Camel Supervising Route Controller Example Spring Boot\n\nThis example shows how to work with a simple Apache Camel application using Spring Boot and a Supervising Route Controller.\n\n## How to run\n\nYou can run this example using\n\n mvn spring-boot:run\n\nBeside JMX you can use Spring Boot Endpoints to interact with the routes:\n\n* To get info about the routes\n+\n[source]\n----\ncurl -XGET -s http:\/\/localhost:8080\/actuator\/camelroutes\n----\n+\n+* To get details about a route\n++\n+[source]\n+----\n+curl -XGET -s http:\/\/localhost:8080\/actuator\/camelroutes\/{id}\/detail\n+----\n\n* To get info about a route\n+\n[source]\n----\ncurl -XGET -s http:\/\/localhost:8080\/actuator\/camelroutes\/{id}\/info\n----\n\n* To stop a route\n+\n[source]\n----\ncurl -XPOST -H \"Content-Type: application\/json\" -s http:\/\/localhost:8080\/actuator\/camelroutes\/{id}\/stop\n----\n\n* To start a route\n+\n[source]\n----\ncurl -XPOST -H \"Content-Type: application\/json\" -s http:\/\/localhost:8080\/actuator\/camelroutes\/{id}\/start\n----\n\n\n## More information\n\nYou can find more information about Apache Camel at the website: http:\/\/camel.apache.org\/\n","new_contents":"# Camel Supervising Route Controller Example Spring Boot\n\nThis example shows how to work with a simple Apache Camel application using Spring Boot and a Supervising Route Controller.\n\n## How to run\n\nYou can run this example using\n\n mvn spring-boot:run\n\nBeside JMX you can use Spring Boot Endpoints to interact with the routes:\n\n* To get info about the routes\n+\n[source]\n----\ncurl -XGET -s http:\/\/localhost:8080\/actuator\/camelroutes\n----\n\n* To get details about a route\n+\n[source]\n----\ncurl -XGET -s http:\/\/localhost:8080\/actuator\/camelroutes\/{id}\/detail\n----\n\n* To get info about a route\n+\n[source]\n----\ncurl -XGET -s http:\/\/localhost:8080\/actuator\/camelroutes\/{id}\/info\n----\n\n* To stop a route\n+\n[source]\n----\ncurl -XPOST -H \"Content-Type: application\/json\" -s http:\/\/localhost:8080\/actuator\/camelroutes\/{id}\/stop\n----\n\n* To start a route\n+\n[source]\n----\ncurl -XPOST -H \"Content-Type: application\/json\" -s http:\/\/localhost:8080\/actuator\/camelroutes\/{id}\/start\n----\n\n\n## More information\n\nYou can find more information about Apache Camel at the website: http:\/\/camel.apache.org\/\n","subject":"Fix the example document error","message":"Fix the example document error \n\nFixed the document error of camel-example-spring-boot-supervising-route-controller","lang":"AsciiDoc","license":"apache-2.0","repos":"gnodet\/camel,pax95\/camel,mcollovati\/camel,alvinkwekel\/camel,apache\/camel,tdiesler\/camel,Fabryprog\/camel,Fabryprog\/camel,adessaigne\/camel,gnodet\/camel,cunningt\/camel,tadayosi\/camel,tdiesler\/camel,DariusX\/camel,pax95\/camel,pmoerenhout\/camel,pmoerenhout\/camel,mcollovati\/camel,zregvart\/camel,pax95\/camel,nikhilvibhav\/camel,adessaigne\/camel,pmoerenhout\/camel,adessaigne\/camel,objectiser\/camel,DariusX\/camel,punkhorn\/camel-upstream,CodeSmell\/camel,objectiser\/camel,nicolaferraro\/camel,nikhilvibhav\/camel,tdiesler\/camel,apache\/camel,tadayosi\/camel,christophd\/camel,pmoerenhout\/camel,apache\/camel,alvinkwekel\/camel,adessaigne\/camel,apache\/camel,gnodet\/camel,cunningt\/camel,adessaigne\/camel,cunningt\/camel,cunningt\/camel,alvinkwekel\/camel,pmoerenhout\/camel,tadayosi\/camel,punkhorn\/camel-upstream,pax95\/camel,ullgren\/camel,christophd\/camel,zregvart\/camel,mcollovati\/camel,tdiesler\/camel,objectiser\/camel,ullgren\/camel,tdiesler\/camel,DariusX\/camel,nicolaferraro\/camel,CodeSmell\/camel,davidkarlsen\/camel,gnodet\/camel,nicolaferraro\/camel,apache\/camel,davidkarlsen\/camel,pmoerenhout\/camel,gnodet\/camel,Fabryprog\/camel,christophd\/camel,ullgren\/camel,objectiser\/camel,pax95\/camel,CodeSmell\/camel,nicolaferraro\/camel,punkhorn\/camel-upstream,cunningt\/camel,alvinkwekel\/camel,nikhilvibhav\/camel,pax95\/camel,davidkarlsen\/camel,punkhorn\/camel-upstream,tadayosi\/camel,davidkarlsen\/camel,tadayosi\/camel,zregvart\/camel,apache\/camel,christophd\/camel,nikhilvibhav\/camel,mcollovati\/camel,Fabryprog\/camel,ullgren\/camel,adessaigne\/camel,zregvart\/camel,DariusX\/camel,tadayosi\/camel,christophd\/camel,CodeSmell\/camel,christophd\/camel,cunningt\/camel,tdiesler\/camel"} {"commit":"324d6806d57251e53f54e9baf541aa06a1a372a5","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= The Ehcache 3.x line is currently the development line.\n\nStatus of the build: image:https:\/\/ehcache.ci.cloudbees.com\/buildStatus\/icon?job=ehcache3\n\nFor more information, you might want to go check the https:\/\/github.com\/ehcache\/ehcache3\/wiki[wiki].\n\nimage:http:\/\/cloudbees.prod.acquia-sites.com\/sites\/default\/files\/styles\/large\/public\/Button-Built-on-CB-1.png?itok=3Tnkun-C","new_contents":"= The Ehcache 3.x line is currently the development line.\n\nStatus of the build: image:https:\/\/ehcache.ci.cloudbees.com\/buildStatus\/icon?job=ehcache3[Ehcache@Cloudbees, link=\"https:\/\/ehcache.ci.cloudbees.com\/job\/ehcache3\/\"]\n\nFor more information, you might want to go check the https:\/\/github.com\/ehcache\/ehcache3\/wiki[wiki].\n\nimage:http:\/\/cloudbees.prod.acquia-sites.com\/sites\/default\/files\/styles\/large\/public\/Button-Powered-by-CB.png?itok=uMDWINfY[Cloudbees, link=\"http:\/\/www.cloudbees.com\/resources\/foss\"]","subject":"Fix image tags in updated readme","message":"Fix image tags in updated readme\n","lang":"AsciiDoc","license":"apache-2.0","repos":"rkavanap\/ehcache3,palmanojkumar\/ehcache3,mingyaaaa\/ehcache3,lorban\/ehcache3,sreekanth-r\/ehcache3,aurbroszniowski\/ehcache3,lorban\/ehcache3,kedar031\/ehcache3,GaryWKeim\/ehcache3,wantstudy\/ehcache3,jhouserizer\/ehcache3,AbfrmBlr\/ehcache3,GaryWKeim\/ehcache3,rishabhmonga\/ehcache3,ehcache\/ehcache3,ljacomet\/ehcache3,albinsuresh\/ehcache3,292388900\/ehcache3,henri-tremblay\/ehcache3,ehcache\/ehcache3,albinsuresh\/ehcache3,AbfrmBlr\/ehcache3,aurbroszniowski\/ehcache3,chrisdennis\/ehcache3,ljacomet\/ehcache3,CapeSepias\/ehcache3,akomakom\/ehcache3,jhouserizer\/ehcache3,cljohnso\/ehcache3,cljohnso\/ehcache3,rkavanap\/ehcache3,chenrui2014\/ehcache3,chrisdennis\/ehcache3,cschanck\/ehcache3,alexsnaps\/ehcache3,anthonydahanne\/ehcache3,cschanck\/ehcache3"} {"commit":"b1b639d60403f3fc22318bbc013bfaca8acd470f","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= clublist - Club Membership List\n\nTrack members for a small non-profit club.\n\nThis shows off some basic functionality of JPA and DeltaSpike Data in a JSF environment.\n\n== Deployment\n\n. Copy config-sample.properties to config.properties, change the name in the orgName property\nin this file from 'Sample Club' to your organization's name (keep it short).\n. Setup the datasource in your app server\n. Setup the deployment as needed (e.g., edit jboss-deployment.xml)\n. Create a user in the role of club_exec in your app server.\n. Deploy (e.g., mvn wildfly:deploy if you use JBoss WildFly).\n. Enjoy!\n\n== ToDo\n\nSecurity: Maybe allow members to update their own record (only!)\n\nUse redirect after editing to really go back to the List page.\n\n\"Position\" should be a relationship to another Entity, with a dropdown chooser.\n\n\"Membership Type\" should be a relationship to another Entity, with a dropdown.\n\nSearch with 'Like' method in DS Data\n\nA confirmation (p:dialog?) on the Edit->Delete button would be a good idea.\n\nImplement the Mailing List page.\n\nImplement the Print Member Badge\/Label page.\n\nEven though people should not use spreadsheets for database work, you will probably\nbe pressured to impelement the \"Export\" capability. You will need Apache POI for this.\n\nRefactor Home object to merge w\/ darwinsys-ee EntityHome\n","new_contents":"= clublist - Club Membership List\n\nTrack members for a small non-profit club.\n\nThis shows off some basic functionality of JPA and DeltaSpike Data in a JSF environment.\n\n== Deployment\n\n. Copy config-sample.properties to config.properties, change the name in the orgName property\nin this file from 'Sample Club' to your organization's name (keep it short).\n. Setup the datasource in your app server\n. Setup the deployment as needed (e.g., edit jboss-deployment.xml)\n. Create a user in the role of club_exec in your app server.\n. Deploy (e.g., mvn wildfly:deploy if you use JBoss WildFly).\n. Enjoy!\n\n== ToDo\n\nHere are some things that should be added. https:\/\/github.com\/IanDarwin\/clublist[Fork this project on GitHub] and send pull requests when you get one working!\n\n. Search with 'Like' method in DS Data\n. Use redirect after editing to really go back to the List page.\n. Maybe allow members to update their own record (only!)\n\tProbably requires moving to app-managed security since you already have a record for each person.\n. \"Position\" should be a relationship to another Entity, with a dropdown chooser.\n. \"Membership Type\" should be a relationship to another Entity, with a dropdown.\n. A confirmation (p:dialog?) on the Edit->Delete button would be a good idea.\n. Implement the Mailing List page.\n. Implement the Print Member Badge\/Label page.\n. Even though people should not use spreadsheets for database work, you will probably\nbe pressured to impelement the \"Export\" capability. You will need Apache POI for this.\n. Refactor Home object to merge w\/ darwinsys-ee EntityHome\n","subject":"Format ToDo as a list","message":"Format ToDo as a list\n","lang":"AsciiDoc","license":"bsd-2-clause","repos":"IanDarwin\/clublist,IanDarwin\/clublist"} {"commit":"463ffdf5dc24117a2d245ca293ddb3bf1ad19ee8","old_file":"README.adoc","new_file":"README.adoc","old_contents":"proxy\n=====\n\n[quote]\nA development proxy with logging and redirect-rewriting\n\nInstallation\n------------\n\n[source,bash]\n----\ngo get -u github.com\/ciarand\/proxy\n----\n\nUsage\n-----\n\n[source,bash]\n----\n# start the proxy in one shell:\nproxy -from=https:\/\/www.google.com -to=http:\/\/0.0.0.0:8080\n\n# and in another, run curl:\ncurl -s http:\/\/localhost:8080\/ | head -c 15\n\n\n# result from proxy shell (shortened for width):\nINFO[0022] request started client_address=[::1]:58988 method=GET uri=\/\nINFO[0023] request complete elapsed=624.644152ms status=200\n----\n\nLicense\n-------\nSee the link:LICENSE[LICENSE] file.\n","new_contents":"proxy\n=====\n\n[quote]\nA development proxy with logging and redirect-rewriting\n\nInstallation\n------------\n\nDownload a prebuilt binary for your platform and architecture from the\nlink:https:\/\/github.com\/ciarand\/proxy\/releases[release page].\n\nOr, build from source:\n\n[source,bash]\n----\n# from source\ngo get -u github.com\/ciarand\/proxy\n----\n\nUsage\n-----\n\n[source,bash]\n----\n# start the proxy in one shell:\nproxy -from=https:\/\/www.google.com -to=http:\/\/0.0.0.0:8080\n\n# and in another, run curl:\ncurl -s http:\/\/localhost:8080\/ | head -c 15\n\n\n# result from proxy shell (shortened for width):\nINFO[0022] request started client_address=[::1]:58988 method=GET uri=\/\nINFO[0023] request complete elapsed=624.644152ms status=200\n----\n\nLicense\n-------\nSee the link:LICENSE[LICENSE] file.\n","subject":"Add prebuilt binary installation instructions","message":"Add prebuilt binary installation instructions\n","lang":"AsciiDoc","license":"isc","repos":"ciarand\/proxy"} {"commit":"99db481af16fdd49197e96ce8e67ac31b38577e3","old_file":"README.adoc","new_file":"README.adoc","old_contents":"# android-images\nYet another repo with docker images for Android developers\n\n[source,planzuml]\n------\nnode \"java jdk-8\" as jdk8\nnode \"java jdk-7\" as jdk7\nartifact \"Android\" {\nnode \"gradle\" as gradle\nnode \"sdk\" as sdk\nnode \"ndk 11\" as ndk11\nnode \"ndk 13\" as ndk13\nnode \"vlc\" as vlc\n}\nartifact \"Tools\" {\nnode \"ruby\" as ruby\nnode \"Asciidoctor\" as asciidoctor\n}\n\ngradle -up-> jdk8 \nsdk -up-> gradle\nndk11 -up-> sdk\nndk13 -up-> sdk\nvlc -up-> ndk11\n\n\nruby -up-> jdk8 \nasciidoctor -up-> ruby\n------","new_contents":"# android-images\nYet another repo with docker images for Android developers\n\n[source,plantuml]\n------\nnode \"java jdk-8\" as jdk8\nnode \"java jdk-7\" as jdk7\nartifact \"Android\" {\nnode \"gradle\" as gradle\nnode \"sdk\" as sdk\nnode \"ndk 11\" as ndk11\nnode \"ndk 13\" as ndk13\nnode \"vlc\" as vlc\n}\nartifact \"Tools\" {\nnode \"ruby\" as ruby\nnode \"Asciidoctor\" as asciidoctor\n}\n\ngradle -up-> jdk8 \nsdk -up-> gradle\nndk11 -up-> sdk\nndk13 -up-> sdk\nvlc -up-> ndk11\n\n\nruby -up-> jdk8 \nasciidoctor -up-> ruby\n------\n","subject":"Fix typo in plantuml definition","message":"Fix typo in plantuml definition","lang":"AsciiDoc","license":"apache-2.0","repos":"michalharakal\/android-images"} {"commit":"8379c9433703f7a107d5618528ec7066dcfc4f34","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Blueprint\n:author: Hafid Haddouti\n\nimage:https:\/\/travis-ci.org\/haf-tech\/blueprint.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/haf-tech\/blueprint\"] \nimage:https:\/\/img.shields.io\/badge\/License-Apache%202.0-blue.svg[\"License\", link=\"https:\/\/opensource.org\/licenses\/Apache-2.0\"]\n\n....\nBlueprint is a playground for illustrating different paradigms.\n\nIn the meantime the following concepts are integrated or planned:\n- Spring Boot\n- AsciiDoctor integration, with UML and different outputs\n- Onion architecture\n- Docker build\/push\n\nNext:\n- reactive programming\n\n","new_contents":"= Blueprint\n:author: Hafid Haddouti\n\nimage:https:\/\/travis-ci.org\/haf-tech\/blueprint.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/haf-tech\/blueprint\"] \nimage:https:\/\/img.shields.io\/badge\/License-Apache%202.0-blue.svg[\"License\", link=\"https:\/\/opensource.org\/licenses\/Apache-2.0\"]\n\n\nBlueprint is a playground for illustrating different paradigms.\n\nIn the meantime the following concepts are integrated or planned:\n- Spring Boot\n- AsciiDoctor integration, with UML and different outputs\n- Onion architecture\n- Docker build\/push\n\nNext:\n- reactive programming\n\nAn up to date documentation is https:\/\/haf-tech.github.io\/blueprint\/[online] available.\n","subject":"Add link to GitHup page","message":"Add link to GitHup page","lang":"AsciiDoc","license":"apache-2.0","repos":"haf-tech\/blueprint"} {"commit":"0a6537d3ad2914b49e7a104ddf6bb9fb236b96b7","old_file":"community\/users.asciidoc","new_file":"community\/users.asciidoc","old_contents":"= Who's Using Debezium?\n:awestruct-layout: doc\n:linkattrs:\n:icons: font\n:source-highlighter: highlight.js\n\nDebezium is used in production by a wide range of companies and organizations.\nThis list contains users of Debezium who agreed to serve as public reference;\nwhere available, further resources with more details are linked.\n\nIf your organization would like to be added to (or removed from) this list,\nplease send a pull request for updating the https:\/\/github.com\/debezium\/debezium.github.io\/blob\/develop\/docs\/users.asciidoc[source of this page].\n\n* Convoy (https:\/\/medium.com\/convoy-tech\/logs-offsets-near-real-time-elt-with-apache-kafka-snowflake-473da1e4d776[details])\n* JW Player (https:\/\/www.slideshare.net\/jwplayer\/polylog-a-logbased-architecture-for-distributed-systems-124997666[details])\n* OYO\n* Usabilla by Surveymonkey\n* WePay, Inc. (https:\/\/wecode.wepay.com\/posts\/streaming-databases-in-realtime-with-mysql-debezium-kafka[details], https:\/\/wecode.wepay.com\/posts\/streaming-cassandra-at-wepay-part-1[more details])\n* ... and you? Then let us know and get added to the list, too. Thanks!\n","new_contents":"= Who's Using Debezium?\n:awestruct-layout: doc\n:linkattrs:\n:icons: font\n:source-highlighter: highlight.js\n\nDebezium is used in production by a wide range of companies and organizations.\nThis list contains users of Debezium who agreed to serve as public reference;\nwhere available, further resources with more details are linked.\n\nIf your organization would like to be added to (or removed from) this list,\nplease send a pull request for updating the https:\/\/github.com\/debezium\/debezium.github.io\/blob\/develop\/community\/users.asciidoc[source of this page].\n\n* Convoy (https:\/\/medium.com\/convoy-tech\/logs-offsets-near-real-time-elt-with-apache-kafka-snowflake-473da1e4d776[details])\n* JW Player (https:\/\/www.slideshare.net\/jwplayer\/polylog-a-logbased-architecture-for-distributed-systems-124997666[details])\n* OYO\n* Usabilla by Surveymonkey\n* WePay, Inc. (https:\/\/wecode.wepay.com\/posts\/streaming-databases-in-realtime-with-mysql-debezium-kafka[details], https:\/\/wecode.wepay.com\/posts\/streaming-cassandra-at-wepay-part-1[more details])\n* ... and you? Then let us know and get added to the list, too. Thanks!\n","subject":"Fix broken link to source of page","message":"Fix broken link to source of page","lang":"AsciiDoc","license":"apache-2.0","repos":"debezium\/debezium.github.io,debezium\/debezium.github.io,debezium\/debezium.github.io"} {"commit":"3ffbb20f3476795d59a9f9e97864531e5ed075aa","old_file":"master.adoc","new_file":"master.adoc","old_contents":"= Sample Book\nAuthor Name \nv1.0, October 4, 2015: First Draft\n:doctype: book\n:docinfo:\n:toc: left\n:toclevels: 2\n:sectnums:\n:linkcss:\n\nAn sample book to show case AsciiDoctor folder structure.\n\ninclude::book\/chapter-1\/chapter-1.adoc[leveloffset=+1]\ninclude::book\/chapter-2\/chapter-2.adoc[leveloffset=+1]\n","new_contents":"= Sample Book\nAuthor Name \nv1.0, October 4, 2015: First Draft\n:doctype: book\n:docinfo:\n:toc: left\n:toclevels: 2\n:sectnums:\n:linkcss:\n\nAn sample book to show case AsciiDoctor folder structure.\n\ninclude::book\/chapter-1\/chapter-1.adoc[leveloffset=+1]\n\ninclude::book\/chapter-2\/chapter-2.adoc[leveloffset=+1]\n","subject":"Add extra line between include.","message":"Add extra line between include.\n","lang":"AsciiDoc","license":"mit","repos":"makzan\/asciidoc-book-starter"} {"commit":"eadf5c1973037cd3ff3a3fcb1fb48df7eb29be68","old_file":"doc\/release-process.adoc","new_file":"doc\/release-process.adoc","old_contents":"= bitcoinj-addons Release Process\n\n== Main Release Process\n\n. Update `CHANGELOG.adoc`\n. Set versions\n.. `README.adoc`\n.. bitcoinj-groovy `ExtensionModule`\n.. `gradle.properties`\n. Commit version bump and changelog.\n. Tag: `git tag -a v0.x.y -m \"Release 0.x.y\"`\n. Push: `git push --tags origin master`\n. Full build, test\n.. `.\/gradlew clean jenkinsBuild regTest`\n.. Recommended: test with *OmniJ* regTests.\n. Publish to Bintray: \n.. `.\/gradlew bintrayUpload`\n.. Confirm publish of artifacts in Bintray Web UI.\n. Update github-pages site (including JavaDoc): `.\/gradlew publishSite`\n\n== Announcements\n\n. Not yet.\n\n== After release\n\n. Set versions back to -SNAPSHOT\n.. `gradle.properties`\n.. bitcoinj-groovy `ExtensionModule`\n.. *Not* `README.adoc` -- it should match release version\n. Commit and push to master\n\n\n\n","new_contents":"= bitcoinj-addons Release Process\n\n== Main Release Process\n\n. Update `CHANGELOG.adoc`\n. Set versions\n.. `README.adoc`\n.. bitcoinj-groovy `ExtensionModule`\n.. `build.gradle` (should move to `gradle.properties`)\n. Commit version bump and changelog.\n. Tag: `git tag -a v0.x.y -m \"Release 0.x.y\"`\n. Push: `git push --tags origin master`\n. Full build, test\n.. `.\/gradlew clean jenkinsBuild regTest`\n.. Recommended: test with *OmniJ* regTests.\n. Publish to Bintray: \n.. `.\/gradlew bintrayUpload`\n.. Confirm publish of artifacts in Bintray Web UI.\n. Update github-pages site (including JavaDoc): `.\/gradlew publishSite`\n\n== Announcements\n\n. Not yet.\n\n== After release\n\n. Set versions back to -SNAPSHOT\n.. `gradle.properties`\n.. bitcoinj-groovy `ExtensionModule`\n.. *Not* `README.adoc` -- it should match release version\n. Commit and push to master\n\n\n\n","subject":"Fix minor error in release process doc.","message":"Fix minor error in release process doc.","lang":"AsciiDoc","license":"apache-2.0","repos":"msgilligan\/bitcoinj-addons,msgilligan\/bitcoinj-addons,msgilligan\/bitcoinj-addons,msgilligan\/bitcoinj-addons"} {"commit":"c07974784ac6d323a1fb8820b609d2a4c3b717e0","old_file":"README.adoc","new_file":"README.adoc","old_contents":"|===\n|image:http:\/\/goreportcard.com\/badge\/spohnan\/ci-bot-01[\"Go Report Card\",link=\"http:\/\/goreportcard.com\/report\/spohnan\/ci-bot-01\", window=\"_blank\"]|image:https:\/\/travis-ci.org\/spohnan\/ci-bot-01.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/spohnan\/ci-bot-01\", window=\"_blank\"]\n|===\n\n=== Automated GitHub Interactions\n","new_contents":"[options=\"header\"]\n|===\n|CI Build and Tests|Static Analysis\n|image:https:\/\/travis-ci.org\/spohnan\/ci-bot-01.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/spohnan\/ci-bot-01\", window=\"_blank\"]|image:http:\/\/goreportcard.com\/badge\/spohnan\/ci-bot-01[\"Go Report Card\",link=\"http:\/\/goreportcard.com\/report\/spohnan\/ci-bot-01\", window=\"_blank\"]\n|===\n\n=== Automated GitHub Interactions\n","subject":"Add travis badge to readme","message":"Add travis badge to readme\n","lang":"AsciiDoc","license":"mit","repos":"spohnan\/ci-bot-01,spohnan\/ci-bot-01"} {"commit":"76e3eeb08f5964513bcd73f57a94e02f019c0301","old_file":"components\/camel-spring-cloud-netflix\/src\/main\/docs\/spring-cloud-netflix.adoc","new_file":"components\/camel-spring-cloud-netflix\/src\/main\/docs\/spring-cloud-netflix.adoc","old_contents":"[[SpringCloud-SpringCloud]]\nSpring Cloud\n~~~~~~~~~~~\n\n*Available as of Camel 2.19*\n\nSpring Cloud component\n\nMaven users will need to add the following dependency to their `pom.xml`\nin order to use this component:\n\n[source,xml]\n------------------------------------------------------------------------------------------------\n\n org.apache.camel<\/groupId>\n camel-spring-cloud<\/artifactId>\n ${camel.version}<\/version> \n<\/dependency>\n------------------------------------------------------------------------------------------------\n\n`camel-spring-cloud` jar comes with the `spring.factories` file, so as\nsoon as you add that dependency into your classpath, Spring Boot will\nautomatically auto-configure Camel for you.\n\n[[SpringCloud-CamelSpringCloudStarter]]\nCamel Spring Cloud Starter\n^^^^^^^^^^^^^^^^^^^^^^^^^\n\n*Available as of Camel 2.19*\n\nTo use the starter, add the following to your spring boot pom.xml file:\n\n[source,xml]\n------------------------------------------------------\n\n org.apache.camel<\/groupId>\n camel-spring-cloud-starter<\/artifactId>\n ${camel.version}<\/version> \n<\/dependency>\n------------------------------------------------------\n","new_contents":"=== Spring Cloud Netflix\n\n*Available as of Camel 2.19*\n\nThe Spring Cloud Netflix component bridges Camel Cloud and Spring Cloud Netflix so you can leverage Spring Cloud Netflix service discovery and load balance features in Camel and\/or you can use Camel Service Discovery implementations as ServerList source for Spring Cloud Netflix's Ribbon load balabncer.\n\nMaven users will need to add the following dependency to their `pom.xml` in order to use this component:\n\n[source,xml]\n----\n\n org.apache.camel<\/groupId>\n camel-spring-cloud-netflix<\/artifactId>\n ${camel.version}<\/version>\n \n<\/dependency>\n----\n\n`camel-spring-cloud-netflix` jar comes with the `spring.factories` file, so as soon as you add that dependency into your classpath, Spring Boot will automatically auto-configure Camel for you.\n\nYou can disable Camel Spring Cloud Netflix with the following properties:\n\n[source,properties]\n----\n# Enable\/Disable the whole integration, default true\ncamel.cloud.netflix = true\n\n# Enable\/Disable the integration with Ribbon, default true\ncamel.cloud.netflix.ribbon = true\n----\n\n=== Spring Cloud Netflix Starter\n\n*Available as of Camel 2.19*\n\nTo use the starter, add the following to your spring boot pom.xml file:\n\n[source,xml]\n----\n\n org.apache.camel<\/groupId>\n camel-spring-cloud-netflix-starter<\/artifactId>\n ${camel.version}<\/version>\n \n<\/dependency>\n----\n","subject":"Fix copy and paste doc","message":"Fix copy and paste doc\n","lang":"AsciiDoc","license":"apache-2.0","repos":"akhettar\/camel,gautric\/camel,akhettar\/camel,punkhorn\/camel-upstream,scranton\/camel,objectiser\/camel,dmvolod\/camel,onders86\/camel,jonmcewen\/camel,objectiser\/camel,nboukhed\/camel,nboukhed\/camel,acartapanis\/camel,gnodet\/camel,jamesnetherton\/camel,dmvolod\/camel,jonmcewen\/camel,dmvolod\/camel,pmoerenhout\/camel,tdiesler\/camel,Thopap\/camel,christophd\/camel,rmarting\/camel,christophd\/camel,isavin\/camel,sverkera\/camel,yuruki\/camel,DariusX\/camel,CodeSmell\/camel,akhettar\/camel,pmoerenhout\/camel,tlehoux\/camel,yuruki\/camel,mcollovati\/camel,anoordover\/camel,alvinkwekel\/camel,christophd\/camel,CodeSmell\/camel,christophd\/camel,apache\/camel,objectiser\/camel,rmarting\/camel,gnodet\/camel,jamesnetherton\/camel,gautric\/camel,pkletsko\/camel,gautric\/camel,jonmcewen\/camel,davidkarlsen\/camel,ullgren\/camel,nikhilvibhav\/camel,acartapanis\/camel,anton-k11\/camel,punkhorn\/camel-upstream,onders86\/camel,jonmcewen\/camel,mgyongyosi\/camel,acartapanis\/camel,cunningt\/camel,pkletsko\/camel,DariusX\/camel,snurmine\/camel,nikhilvibhav\/camel,Fabryprog\/camel,jamesnetherton\/camel,kevinearls\/camel,salikjan\/camel,CodeSmell\/camel,tdiesler\/camel,mgyongyosi\/camel,CodeSmell\/camel,sverkera\/camel,pax95\/camel,christophd\/camel,prashant2402\/camel,rmarting\/camel,pkletsko\/camel,nboukhed\/camel,Thopap\/camel,nicolaferraro\/camel,tdiesler\/camel,dmvolod\/camel,gautric\/camel,onders86\/camel,drsquidop\/camel,prashant2402\/camel,kevinearls\/camel,davidkarlsen\/camel,anoordover\/camel,adessaigne\/camel,curso007\/camel,snurmine\/camel,drsquidop\/camel,akhettar\/camel,tadayosi\/camel,Thopap\/camel,gnodet\/camel,anton-k11\/camel,anoordover\/camel,apache\/camel,alvinkwekel\/camel,scranton\/camel,yuruki\/camel,jamesnetherton\/camel,Thopap\/camel,rmarting\/camel,kevinearls\/camel,curso007\/camel,tadayosi\/camel,acartapanis\/camel,isavin\/camel,tlehoux\/camel,nikhilvibhav\/camel,scranton\/camel,drsquidop\/camel,alvinkwekel\/camel,mgyongyosi\/camel,tdiesler\/camel,snurmine\/camel,mgyongyosi\/camel,prashant2402\/camel,mcollovati\/camel,pkletsko\/camel,anton-k11\/camel,anton-k11\/camel,punkhorn\/camel-upstream,DariusX\/camel,pmoerenhout\/camel,pmoerenhout\/camel,nboukhed\/camel,tdiesler\/camel,drsquidop\/camel,onders86\/camel,pax95\/camel,rmarting\/camel,tadayosi\/camel,isavin\/camel,jamesnetherton\/camel,ullgren\/camel,tlehoux\/camel,pkletsko\/camel,snurmine\/camel,prashant2402\/camel,acartapanis\/camel,tadayosi\/camel,cunningt\/camel,zregvart\/camel,acartapanis\/camel,pax95\/camel,gnodet\/camel,drsquidop\/camel,zregvart\/camel,nboukhed\/camel,kevinearls\/camel,apache\/camel,adessaigne\/camel,sverkera\/camel,tlehoux\/camel,alvinkwekel\/camel,isavin\/camel,sverkera\/camel,adessaigne\/camel,mcollovati\/camel,yuruki\/camel,punkhorn\/camel-upstream,mgyongyosi\/camel,scranton\/camel,pax95\/camel,scranton\/camel,Fabryprog\/camel,snurmine\/camel,yuruki\/camel,davidkarlsen\/camel,gnodet\/camel,isavin\/camel,tdiesler\/camel,sverkera\/camel,cunningt\/camel,drsquidop\/camel,davidkarlsen\/camel,cunningt\/camel,nicolaferraro\/camel,nboukhed\/camel,jonmcewen\/camel,dmvolod\/camel,curso007\/camel,Fabryprog\/camel,dmvolod\/camel,onders86\/camel,Thopap\/camel,sverkera\/camel,cunningt\/camel,kevinearls\/camel,anoordover\/camel,nikhilvibhav\/camel,salikjan\/camel,isavin\/camel,apache\/camel,tlehoux\/camel,mgyongyosi\/camel,onders86\/camel,nicolaferraro\/camel,ullgren\/camel,prashant2402\/camel,nicolaferraro\/camel,adessaigne\/camel,Fabryprog\/camel,yuruki\/camel,rmarting\/camel,anoordover\/camel,anton-k11\/camel,jamesnetherton\/camel,pmoerenhout\/camel,adessaigne\/camel,DariusX\/camel,pax95\/camel,pax95\/camel,anton-k11\/camel,anoordover\/camel,ullgren\/camel,mcollovati\/camel,zregvart\/camel,tadayosi\/camel,christophd\/camel,gautric\/camel,akhettar\/camel,Thopap\/camel,akhettar\/camel,apache\/camel,curso007\/camel,apache\/camel,jonmcewen\/camel,kevinearls\/camel,tadayosi\/camel,curso007\/camel,scranton\/camel,prashant2402\/camel,tlehoux\/camel,objectiser\/camel,gautric\/camel,pmoerenhout\/camel,snurmine\/camel,adessaigne\/camel,curso007\/camel,pkletsko\/camel,cunningt\/camel,zregvart\/camel"} {"commit":"aa949c664a89ab9d6c2c21fa9b36af585b721db9","old_file":"docs\/index.asciidoc","new_file":"docs\/index.asciidoc","old_contents":"= Filebeat\n:libbeat: http:\/\/www.elastic.co\/guide\/en\/beats\/libbeat\/1.0.0-rc1\n:version: 1.0.0-rc1\n\ninclude::.\/overview.asciidoc[]\n\ninclude::.\/getting-started.asciidoc[]\n\ninclude::.\/fields.asciidoc[]\n\ninclude::.\/configuration.asciidoc[]\n\ninclude::.\/command-line.asciidoc[]\n\ninclude::.\/migration.asciidoc[]\n\ninclude::.\/support.asciidoc[]\n","new_contents":"= Filebeat\n:libbeat: http:\/\/www.elastic.co\/guide\/en\/beats\/libbeat\/master\n:version: master\n\ninclude::.\/overview.asciidoc[]\n\ninclude::.\/getting-started.asciidoc[]\n\ninclude::.\/fields.asciidoc[]\n\ninclude::.\/configuration.asciidoc[]\n\ninclude::.\/command-line.asciidoc[]\n\ninclude::.\/migration.asciidoc[]\n\ninclude::.\/support.asciidoc[]\n","subject":"Use master version in docs","message":"Use master version in docs\n","lang":"AsciiDoc","license":"mit","repos":"yapdns\/yapdnsbeat,yapdns\/yapdnsbeat"} {"commit":"8f10c771e62016bc156a01310ae35089b605f93d","old_file":"docs\/reference\/migration\/migrate_7_0\/scripting.asciidoc","new_file":"docs\/reference\/migration\/migrate_7_0\/scripting.asciidoc","old_contents":"[float]\n[[breaking_70_scripting_changes]]\n=== Scripting changes\n\n[float]\n==== getDate() and getDates() removed\n\nFields of type `long` and `date` had `getDate()` and `getDates()` methods\n(for multi valued fields) to get an object with date specific helper methods\nfor the current doc value. In 5.3.0, `date` fields were changed to expose\nthis same date object directly when calling `doc[\"myfield\"].value`, and\nthe getter methods for date objects were deprecated. These methods have\nnow been removed. Instead, use `.value` on `date` fields, or explicitly\nparse `long` fields into a date object using\n`Instance.ofEpochMillis(doc[\"myfield\"].value)`.\n\n[float]\n==== Script errors will return as `400` error codes\n\nMalformed scripts, either in search templates, ingest pipelines or search \nrequests, return `400 - Bad request` while they would previously return\n`500 - Internal Server Error`. This also applies for stored scripts.\n","new_contents":"[float]\n[[breaking_70_scripting_changes]]\n=== Scripting changes\n\n[float]\n==== getDate() and getDates() removed\n\nFields of type `long` and `date` had `getDate()` and `getDates()` methods\n(for multi valued fields) to get an object with date specific helper methods\nfor the current doc value. In 5.3.0, `date` fields were changed to expose\nthis same date object directly when calling `doc[\"myfield\"].value`, and\nthe getter methods for date objects were deprecated. These methods have\nnow been removed. Instead, use `.value` on `date` fields, or explicitly\nparse `long` fields into a date object using\n`Instance.ofEpochMillis(doc[\"myfield\"].value)`.\n\n[float]\n==== Accessing missing document values will throw an error\n`doc['field'].value` will throw an exception if\nthe document is missing a value for the field `field`.\n\nTo check if a document is missing a value, you can use\n`doc['field'].size() == 0`.\n\n\n[float]\n==== Script errors will return as `400` error codes\n\nMalformed scripts, either in search templates, ingest pipelines or search \nrequests, return `400 - Bad request` while they would previously return\n`500 - Internal Server Error`. This also applies for stored scripts.\n","subject":"Add migration info for missing values in script","message":"Add migration info for missing values in script\n\nRelates to #30975\n","lang":"AsciiDoc","license":"apache-2.0","repos":"scorpionvicky\/elasticsearch,uschindler\/elasticsearch,HonzaKral\/elasticsearch,robin13\/elasticsearch,robin13\/elasticsearch,uschindler\/elasticsearch,gfyoung\/elasticsearch,gfyoung\/elasticsearch,gingerwizard\/elasticsearch,uschindler\/elasticsearch,nknize\/elasticsearch,coding0011\/elasticsearch,nknize\/elasticsearch,coding0011\/elasticsearch,HonzaKral\/elasticsearch,scorpionvicky\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,scorpionvicky\/elasticsearch,robin13\/elasticsearch,GlenRSmith\/elasticsearch,nknize\/elasticsearch,gingerwizard\/elasticsearch,GlenRSmith\/elasticsearch,gfyoung\/elasticsearch,gfyoung\/elasticsearch,gingerwizard\/elasticsearch,gfyoung\/elasticsearch,GlenRSmith\/elasticsearch,HonzaKral\/elasticsearch,scorpionvicky\/elasticsearch,nknize\/elasticsearch,GlenRSmith\/elasticsearch,gingerwizard\/elasticsearch,uschindler\/elasticsearch,HonzaKral\/elasticsearch,robin13\/elasticsearch,coding0011\/elasticsearch,nknize\/elasticsearch,coding0011\/elasticsearch,gingerwizard\/elasticsearch,GlenRSmith\/elasticsearch,robin13\/elasticsearch,gingerwizard\/elasticsearch,coding0011\/elasticsearch,uschindler\/elasticsearch"} {"commit":"d9e3a3fc36a4d9770f53cb105d60ae7d01965aed","old_file":"src\/main\/asciidoc\/inc\/_goals.adoc","new_file":"src\/main\/asciidoc\/inc\/_goals.adoc","old_contents":"= Maven Goals\n\nThis plugin supports the following goals which are explained in detail\nin the next sections.\n\n.Plugin Goals\n[cols=\"1,3\"]\n|===\n|Goal | Description\n\n|**<<{plugin}:build>>**\n|Build images\n\n|**<<{plugin}:start>>** or **<<{plugin}:start,{plugin}:run>>**\n|Create and start containers\n\n|**<<{plugin}:stop>>**\n|Stop and destroy containers\n\n|**<<{plugin}:push>>**\n|Push images to a registry\n\n|**<<{plugin}:watch>>**\n|Watch for doing rebuilds and restarts\n\n|**<<{plugin}:remove>>**\n|Remove images from local docker host\n\n|**<<{plugin}:logs>>**\n|Show container logs\n\n|**<<{plugin}:source>>**\n|Attach docker build archive to Maven project\n\n|**<<{plugin}:save>>**\n|Save images to a file\n\n|**<<{plugin}:volume-create>>**\n|Create a volume for containers to share data\n\n|**<<{plugin}:volume-remove>>**\n|Remove a volume\n|===\n\nNote that all goals are orthogonal to each other. For example in order\nto start a container for your application you typically have to build\nits image before. `{plugin}:start` does *not* imply building the image\nso you should use it then in combination with `{plugin}:build`.\n","new_contents":"= Maven Goals\n\nThis plugin supports the following goals which are explained in detail\nin the next sections.\n\n.Plugin Goals\n[cols=\"1,1,2\"]\n|===\n|Goal | Default Lifecycle Phase | Description\n\n|**<<{plugin}:build>>**\n|install\n|Build images\n\n|**<<{plugin}:start>>** or **<<{plugin}:start,{plugin}:run>>**\n|pre-integration-test\n|Create and start containers\n\n|**<<{plugin}:stop>>**\n|post-integration-test\n|Stop and destroy containers\n\n|**<<{plugin}:push>>**\n|deploy\n|Push images to a registry\n\n|**<<{plugin}:watch>>**\n|\n|Watch for doing rebuilds and restarts\n\n|**<<{plugin}:remove>>**\n|post-integration-test\n|Remove images from local docker host\n\n|**<<{plugin}:logs>>**\n|\n|Show container logs\n\n|**<<{plugin}:source>>**\n|\n|Attach docker build archive to Maven project\n\n|**<<{plugin}:save>>**\n|\n|Save images to a file\n\n|**<<{plugin}:volume-create>>**\n|pre-integration-test\n|Create a volume for containers to share data\n\n|**<<{plugin}:volume-remove>>**\n|post-integration-test\n|Remove a volume\n|===\n\nNote that all goals are orthogonal to each other. For example in order\nto start a container for your application you typically have to build\nits image before. `{plugin}:start` does *not* imply building the image\nso you should use it then in combination with `{plugin}:build`.\n","subject":"Add default Maven lifecycle bindings to the manual","message":"Add default Maven lifecycle bindings to the manual","lang":"AsciiDoc","license":"apache-2.0","repos":"rhuss\/docker-maven-plugin,vjuranek\/docker-maven-plugin,thomasvandoren\/docker-maven-plugin,scoplin\/docker-maven-plugin,vjuranek\/docker-maven-plugin,fabric8io\/docker-maven-plugin,fabric8io\/docker-maven-plugin,fabric8io\/docker-maven-plugin,vjuranek\/docker-maven-plugin,rhuss\/docker-maven-plugin"} {"commit":"886e5e7db96a6c1a021dcc9d08268303d8402227","old_file":"docs\/hacky-implicit-provisioning-version2.adoc","new_file":"docs\/hacky-implicit-provisioning-version2.adoc","old_contents":"# Hacky Implicit Provisioning version 2\n\nThis document describes a quick hack to test the implicit provisioning flow as it currently works in aktualizr before full support is available in meta-updater and on the server.\n\n## Goals\n\n* end-to-end installation of updates using OSTree\n\n## Steps\n\n1. Edit `recipes-sota\/aktualizr\/files\/sota_autoprov.toml` in meta-updater:\n* Remove the `provision_path` line.\n* Add a line in the `[tls]` section with `server = \"https:\/\/...\"`. Use the URL from your account's credentials.zip file.\n1. Edit `recipes-sota\/aktualizr\/aktualizr_git.bb` in meta-updater:\n* Change aktualizr `SRC_URI` to `git:\/\/github.com\/advancedtelematic\/aktualizr;branch=bugfix\/cert_prov_install`.\n* Change `SRCREV` to `13828774baa5a7369e6f5ca552b879ad1ce773d5`.\n* Increment `PR`.\n1. Build a standard image using bitbake. Make sure to set `SOTA_PACKED_CREDENTIALS` like normal.\n1. Boot the image.\n1. Optionally, verify that aktualizr is not provisioning. Make sure the device is not visible in the Garage.\n1. Run `cert_provider` from the aktualizr repo: `cert_provider -c credentials.zip -t `\n1. Verify that aktualizr provisions correctly with the server using the device_id generated by `cert_provider`.\n","new_contents":"# Hacky Implicit Provisioning version 2\n\nThis document describes a quick hack to test the implicit provisioning flow as it currently works in aktualizr before full support is available in meta-updater and on the server.\n\n## Goals\n\n* end-to-end installation of updates using OSTree\n\n## Steps\n\n1. Edit `recipes-sota\/aktualizr\/files\/sota_autoprov.toml` in meta-updater:\n* Remove the `provision_path` line.\n* Add a line in the `[tls]` section with `server = \"https:\/\/...\"`. Use the URL from your account's credentials.zip file.\n1. Edit `recipes-sota\/aktualizr\/aktualizr_git.bb` in meta-updater:\n* Change `SRCREV` to `1c635c67d70cf38d2c841d449e750f08855e41a4`.\n* Increment `PR`.\n1. Build a standard image using bitbake. Make sure to set `SOTA_PACKED_CREDENTIALS` like normal.\n1. Boot the image.\n1. Optionally, verify that aktualizr is not provisioning. Make sure the device is not visible in the Garage.\n1. Run `cert_provider` from the aktualizr repo: `cert_provider -c credentials.zip -t `\n1. Verify that aktualizr provisions correctly with the server using the device_id generated by `cert_provider`.\n\n## Known Issues\n\nAt this time, although the device will be shown in the Garage, its installed package will not be.\n","subject":"Use latest version of aktualizr. Add known issue.","message":"Use latest version of aktualizr. Add known issue.\n","lang":"AsciiDoc","license":"mpl-2.0","repos":"advancedtelematic\/aktualizr,advancedtelematic\/aktualizr,advancedtelematic\/aktualizr,advancedtelematic\/sota_client_cpp,advancedtelematic\/aktualizr,advancedtelematic\/sota_client_cpp"} {"commit":"fae66814a50c60e47772ad6feec9ee222920fd9c","old_file":"doc\/videos.adoc","new_file":"doc\/videos.adoc","old_contents":"= Videos\nJames Elliott \n:icons: font\n\n\/\/ Set up support for relative links on GitHub; add more conditions\n\/\/ if you need to support other environments and extensions.\nifdef::env-github[:outfilesuffix: .adoc]\n\nThis page collects performance videos that highlight Afterglow in\naction. If you have any to share, please post them to the\nhttps:\/\/gitter.im\/brunchboy\/afterglow[Afterglow room on Gitter]!\n\nhttps:\/\/vimeo.com\/153492480[image:assets\/Deepower-2015.png[Deepower Live Report,align=\"right\",float=\"right\"]]\nSince I have been too busy working on the software to get out and\nperform with it, I am deeply grateful to\nhttps:\/\/github.com\/dandaka[Vlad Rafeev] for getting this page started\nby sharing a video of a\nhttps:\/\/www.facebook.com\/deepowerband\/[Deepower audiovisual] show he\nlit using Afterglow in December, 2015, in Kaliningrad, Russia last\nmonth. He modestly says, “My first experience with lights, still a lot\nto accomplish.” And I say, there is a ton left to implement in the\nsoftware too. But it is already fun to see\nhttps:\/\/vimeo.com\/153492480[great video like this]!\n","new_contents":"= Videos\nJames Elliott \n:icons: font\n\n\/\/ Set up support for relative links on GitHub; add more conditions\n\/\/ if you need to support other environments and extensions.\nifdef::env-github[:outfilesuffix: .adoc]\n\nThis page collects performance videos that highlight Afterglow in\naction. If you have any to share, please post them to the\nhttps:\/\/gitter.im\/brunchboy\/afterglow[Afterglow room on Gitter]!\n\n+++\"Deepower<\/a>+++\nSince I have been too busy working on the software to get out and\nperform with it, I am deeply grateful to\nhttps:\/\/github.com\/dandaka[Vlad Rafeev] for getting this page started\nby sharing a video of a\nhttps:\/\/www.facebook.com\/deepowerband\/[Deepower audiovisual] show he\nlit using Afterglow in December, 2015, in Kaliningrad, Russia last\nmonth. He modestly says, “My first experience with lights, still a lot\nto accomplish.” And I say, there is a ton left to implement in the\nsoftware too. But it is already fun to see\nhttps:\/\/vimeo.com\/153492480[great video like this]!\n","subject":"Work around Github image float issue.","message":"Work around Github image float issue.\n","lang":"AsciiDoc","license":"epl-1.0","repos":"brunchboy\/afterglow,brunchboy\/afterglow,brunchboy\/afterglow"} {"commit":"0ba8df5939f33a3d6ee7a4eaab0c993e35a839d0","old_file":"migration\/migrating_3_4\/about-migration.adoc","new_file":"migration\/migrating_3_4\/about-migration.adoc","old_contents":"[id=\"about-migration\"]\n= About migrating {product-title} 3 to 4\ninclude::modules\/common-attributes.adoc[]\n:context: about-migration\n\ntoc::[]\n\n{product-title} 4 includes new technologies and functionality that results in a cluster that is self-managing, flexible, and automated. The way that {product-title} 4 clusters are deployed and managed drastically differs from {product-title} 3.\n\nTo successfully transition from {product-title} 3 to {product-title} 4, it is important that you review the following information:\n\nxref:..\/..\/migration\/migrating_3_4\/planning-migration-3-to-4.adoc#planning-migration-3-to-4[Planning your transition]::\nLearn about the differences between {product-title} versions 3 and 4. Prior to transitioning, be sure that you have reviewed and prepared for storage, networking, logging, security, and monitoring considerations.\n\nxref:..\/..\/migration\/migrating_3_4\/migrating-application-workloads-3-4.adoc#migrating-application-workloads-3-4[Performing your migration]::\nLearn about and use the tools to perform your migration:\n\n* {mtc-full} ({mtc-short}) to migrate your application workloads\n","new_contents":"[id=\"about-migration\"]\n= About migrating {product-title} 3 to 4\ninclude::modules\/common-attributes.adoc[]\n:context: about-migration\n\ntoc::[]\n\n{product-title} 4 includes new technologies and functionality that results in a cluster that is self-managing, flexible, and automated. The way that {product-title} 4 clusters are deployed and managed drastically differs from {product-title} 3.\n\nTo successfully transition from {product-title} 3 to {product-title} 4, it is important that you review the following information:\n\nxref:..\/..\/migration\/migrating_3_4\/planning-migration-3-to-4.adoc#planning-migration-3-to-4[Planning your transition]::\nLearn about the differences between {product-title} versions 3 and 4. Prior to transitioning, be sure that you have reviewed and prepared for storage, networking, logging, security, and monitoring considerations.\n\nxref:..\/..\/migration\/migrating_3_4\/migrating-application-workloads-3-4.adoc#migrating-application-workloads-3-4[Performing your migration]::\nLearn about and use the {mtc-full} ({mtc-short}) to migrate your application workloads.\n","subject":"Update tools sentence after removing CPMA","message":"Update tools sentence after removing CPMA\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"38adcbe7aeee0cdaa5600b91cc4297c399bdc33b","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Jira Release Notes Generator (JiraRnGen)\n:Author: David Thompson \n:Email: \n:Revision: 0.1.0 2016-08-03\n\n== Description\nI was looking for a way with hosted Jira to be able to send out release\nnotes with our own template. Since the hosted version doesn't allow you to\nedit the templates, I decided to build an application that worked with the\nJira api to build an html page that could be emailed to our team. This NodeJS\napp is the result of this work.\n\n== ReleaseNotes\n0.1.0 - First iteration at being able to send Jira Release Notes\n\n== Usage\nFirst time to use, run within the JiraRnGen directory.\n----\n$ npm install\n----\nThen to run each time\n----\n$ node release-notes.js -u username -p password --email -n jira-hostname -f release-name -s email-address\n----\n","new_contents":"= Jira Release Notes Generator (JiraRnGen)\n:Author: David Thompson \n:Email: \n:Revision: 0.1.0 2016-08-03\n\n== Description\nI was looking for a way with hosted Jira to be able to send out release\nnotes with our own template. Since the hosted version doesn't allow you to\nedit the templates, I decided to build an application that worked with the\nJira api to build an html page that could be emailed to our team. This NodeJS\napp is the result of this work.\n\n== ReleaseNotes\n0.1.0 - First iteration at being able to send Jira Release Notes\n\n== Usage\nFirst time to use, run within the JiraRnGen directory.\n----\n$ npm install\n----\nYou will need to create a image\/logo.json file; you can copy the example to logo.json for testing.\nYou will need to set up a sendgrid account and set up an API key to use with sendgrid. Copy conf\/config-example.json to conf\/config.json.\n\nThen to run each time\n----\n$ node release-notes.js -u username -p password --email -n jira-hostname -f release-name -s email-address\n----\n","subject":"Update docs for running at start.","message":"Update docs for running at start.\n","lang":"AsciiDoc","license":"mit","repos":"applitect\/JiraRnGen,applitect\/JiraRnGen,applitect\/JiraRnGen"} {"commit":"b15bdde83f43d3b6c0564a359ae3a8bf43b94071","old_file":"opennms-doc\/guide-user\/src\/asciidoc\/index.adoc","new_file":"opennms-doc\/guide-user\/src\/asciidoc\/index.adoc","old_contents":"\/\/ Global settings\n:ascii-ids:\n:encoding: UTF-8\n:lang: en\n:icons: font\n:toc: left\n:toclevels: 3\n:numbered:\n\n[[gu]]\n= Users Guide\n:author: Copyright (c) 2014-2016 The OpenNMS Group, Inc.\n:revnumber: {opennms-product-name} {opennms-version}\n:revdate: {last-update-label} {docdatetime}\n:version-label!:\n\n[[gu-service-assurance]]\n== Service Assurance\ninclude::text\/service-assurance\/introduction.adoc[]\ninclude::text\/service-assurance\/critical-service.adoc[]\ninclude::text\/service-assurance\/path-outage.adoc[]\n\ninclude::text\/surveillance-view.adoc[]\ninclude::text\/dashboard.adoc[]\n\n[[gu-bsm]]\n== Busines Service Monitoring\ninclude::text\/bsm\/introduction.adoc[]\ninclude::text\/bsm\/business-service-hierarchy.adoc[]\ninclude::text\/bsm\/operational-status.adoc[]\ninclude::text\/bsm\/root-cause-impact-analysis.adoc[]\ninclude::text\/bsm\/simulation-mode.adoc[]\ninclude::text\/bsm\/share-bsm-view.adoc[]\ninclude::text\/bsm\/change-icons.adoc[]\n\n[[gu-alarms]]\n== Alarms\ninclude::text\/alarms\/alarm-notes.adoc[]\n","new_contents":"\/\/ Global settings\n:ascii-ids:\n:encoding: UTF-8\n:lang: en\n:icons: font\n:toc: left\n:toclevels: 3\n:numbered:\n\n[[gu]]\n= Users Guide\n:author: Copyright (c) 2014-2016 The OpenNMS Group, Inc.\n:revnumber: {opennms-product-name} {opennms-version}\n:revdate: {last-update-label} {docdatetime}\n:version-label!:\n\n[[gu-service-assurance]]\n== Service Assurance\ninclude::text\/service-assurance\/introduction.adoc[]\ninclude::text\/service-assurance\/critical-service.adoc[]\ninclude::text\/service-assurance\/path-outage.adoc[]\n\ninclude::text\/surveillance-view.adoc[]\ninclude::text\/dashboard.adoc[]\n\n[[gu-bsm]]\n== Business Service Monitoring\ninclude::text\/bsm\/introduction.adoc[]\ninclude::text\/bsm\/business-service-hierarchy.adoc[]\ninclude::text\/bsm\/operational-status.adoc[]\ninclude::text\/bsm\/root-cause-impact-analysis.adoc[]\ninclude::text\/bsm\/simulation-mode.adoc[]\ninclude::text\/bsm\/share-bsm-view.adoc[]\ninclude::text\/bsm\/change-icons.adoc[]\n\n[[gu-alarms]]\n== Alarms\ninclude::text\/alarms\/alarm-notes.adoc[]\n","subject":"Fix typo in Busines -> Business","message":"Fix typo in Busines -> Business","lang":"AsciiDoc","license":"agpl-3.0","repos":"aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms"} {"commit":"f663decf9b6ee767d81a7b9e9bd028eada319548","old_file":"README.adoc","new_file":"README.adoc","old_contents":"image:https:\/\/jenkins-kieci.rhcloud.com\/buildStatus\/icon?job=optaplanner[\"Build Status\", link=\"https:\/\/jenkins-kieci.rhcloud.com\/job\/optaplanner\"]\n\n== Developing Drools, OptaPlanner and jBPM\n\n*If you want to build or contribute to a droolsjbpm project, https:\/\/github.com\/droolsjbpm\/droolsjbpm-build-bootstrap\/blob\/master\/README.md[read this document].*\n\n*It will save you and us a lot of time by setting up your development environment correctly.*\nIt solves all known pitfalls that can disrupt your development.\nIt also describes all guidelines, tips and tricks.\nIf you want your pull requests (or patches) to be merged into master, please respect those guidelines.\n","new_contents":"image:https:\/\/jenkins-kieci.rhcloud.com\/buildStatus\/icon?job=optaplanner[\"Build Status\", link=\"https:\/\/jenkins-kieci.rhcloud.com\/job\/optaplanner\"]\n\n== Quick development start\n\nTo build and run from source:\n\n[source,sh]\n----\n $ mvn clean install\n $ cd optaplanner-examples\n $ mvn exec:java\n----\n\nTo develop with IntelliJ IDEA, Eclipse or NetBeans, open the root `pom.xml` as a new project\nand configure a _Run\/Debug configuration_ like this:\n\n* Main class: `org.optaplanner.examples.app.OptaPlannerExamplesApp`\n* VM options: `-Xmx2G -server` (Memory only needed when using the big datasets in the examples)\n* Program arguments: ``\n* Working directory: `$MODULE_DIR$` (must resolve to optaplanner-examples directory)\n* Use classpath of module: `optaplanner-examples`\n\n== Developing Drools, OptaPlanner and jBPM\n\n*If you want to build or contribute to a droolsjbpm project, https:\/\/github.com\/droolsjbpm\/droolsjbpm-build-bootstrap\/blob\/master\/README.md[read this document].*\n\n*It will save you and us a lot of time by setting up your development environment correctly.*\nIt solves all known pitfalls that can disrupt your development.\nIt also describes all guidelines, tips and tricks.\nIf you want your pull requests (or patches) to be merged into master, please respect those guidelines.\n","subject":"Add build instructions to readme","message":"Add build instructions to readme\n","lang":"AsciiDoc","license":"apache-2.0","repos":"baldimir\/optaplanner,droolsjbpm\/optaplanner,oskopek\/optaplanner,droolsjbpm\/optaplanner,oskopek\/optaplanner,gsheldon\/optaplanner,baldimir\/optaplanner,baldimir\/optaplanner,oskopek\/optaplanner,oskopek\/optaplanner,tkobayas\/optaplanner,gsheldon\/optaplanner,droolsjbpm\/optaplanner,baldimir\/optaplanner,tkobayas\/optaplanner,tkobayas\/optaplanner,gsheldon\/optaplanner,gsheldon\/optaplanner,tkobayas\/optaplanner,droolsjbpm\/optaplanner"} {"commit":"8274fc56d531bd3b5bc8b47fb699dfae15da84a0","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Explorer for Hawkular\n\nhttp:\/\/hawkular.org\/[Hawkular] is a set of components for Monitoring.\nThis explorer connects to a Hawkular server and allows to browse trough\ninventory and view entities, graph metrics.\n\n\nifndef::env-github[]\nimage::docs\/screenshot.png[]\nendif::[]\nifdef::env-github[]\nimage::https:\/\/github.com\/pilhuhn\/hawkfx\/blob\/master\/docs\/screenshot.png[]\nendif::[]\n\n== Running\n\nThe explorer requires JRuby in version 9+\n\nIf you are using `rvm` you can select it via\n\n`rvm use jruby-9.0.5.0`\n\nthen use `bundler` to install the required gems\n\n`bundle install`\n\nthen run\n\n`jruby hawkfx.rb`","new_contents":"= Explorer for Hawkular\n\nhttp:\/\/hawkular.org\/[Hawkular] is a set of components for Monitoring.\nThis explorer connects to a Hawkular server and allows to browse trough\ninventory and view entities, graph metrics.\n\n\nifndef::env-github[]\nimage::docs\/screenshot.png[]\nendif::[]\nifdef::env-github[]\nimage::https:\/\/github.com\/pilhuhn\/hawkfx\/blob\/master\/docs\/screenshot.png[]\nendif::[]\n\n== Running\n\nThe explorer requires JRuby in version 9+\n\nIf you are using `rvm` you can select it via\n\n`rvm use jruby-9.0.5.0`\n\ninstall and use `bundler` to install the required gems\n\n`gem install bundler`\n\n`bundle install`\n\nthen run\n\n`jruby hawkfx.rb`","subject":"Make build step more clear.","message":"Make build step more clear.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"pilhuhn\/hawkfx"} {"commit":"6c960898d801f348d640e17ab5d496d9f7a8e767","old_file":"docs\/reference\/mapping\/fields\/id-field.asciidoc","new_file":"docs\/reference\/mapping\/fields\/id-field.asciidoc","old_contents":"[[mapping-id-field]]\n=== `_id` field\n\nEach document indexed is associated with a <> (see\n<>) and an <>. The `_id` field is not\nindexed as its value can be derived automatically from the\n<> field.\n\nThe value of the `_id` field is accessible in certain queries (`term`,\n`terms`, `match`, `query_string`, `simple_query_string`) and scripts, but\n_not_ in aggregations or when sorting, where the <>\nfield should be used instead:\n\n[source,js]\n--------------------------\n# Example documents\nPUT my_index\/my_type\/1\n{\n \"text\": \"Document with ID 1\"\n}\n\nPUT my_index\/my_type\/2\n{\n \"text\": \"Document with ID 2\"\n}\n\nGET my_index\/_search\n{\n \"query\": {\n \"terms\": {\n \"_id\": [ \"1\", \"2\" ] <1>\n }\n },\n \"script_fields\": {\n \"UID\": {\n \"script\": \"doc['_id']\" <2>\n }\n }\n}\n--------------------------\n\/\/ AUTOSENSE\n\n<1> Querying on the `_id` field (also see the <>)\n<2> Accessing the `_id` field in scripts (inline scripts must be <> for this example to work)\n\n","new_contents":"[[mapping-id-field]]\n=== `_id` field\n\nEach document indexed is associated with a <> (see\n<>) and an <>. The `_id` field is not\nindexed as its value can be derived automatically from the\n<> field.\n\nThe value of the `_id` field is accessible in certain queries (`term`,\n`terms`, `match`, `query_string`, `simple_query_string`), but\n_not_ in aggregations, scripts or when sorting, where the <>\nfield should be used instead:\n\n[source,js]\n--------------------------\n# Example documents\nPUT my_index\/my_type\/1\n{\n \"text\": \"Document with ID 1\"\n}\n\nPUT my_index\/my_type\/2\n{\n \"text\": \"Document with ID 2\"\n}\n\nGET my_index\/_search\n{\n \"query\": {\n \"terms\": {\n \"_id\": [ \"1\", \"2\" ] <1>\n }\n }\n}\n--------------------------\n\/\/ AUTOSENSE\n\n<1> Querying on the `_id` field (also see the <>)\n","subject":"Fix docs example for the _id field, the field is not accessible in scripts","message":"Fix docs example for the _id field, the field is not accessible in scripts\n\nCloses #19274\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test"} {"commit":"1e6fc7b9e405c2c9e05868db8534dadbb80437f7","old_file":"doc\/src\/guide\/external_plugins_list.asciidoc","new_file":"doc\/src\/guide\/external_plugins_list.asciidoc","old_contents":"[[plugins_list]]\n== List of plugins\n\nThis is a non-exhaustive list of Erlang.mk plugins, sorted\nalphabetically.\n\n=== elvis.mk\n\nAn https:\/\/github.com\/inaka\/elvis.mk[Elvis plugin] for Erlang.mk.\nElvis is an https:\/\/github.com\/inaka\/elvis[Erlang style reviewer].\n\n=== geas\n\nhttps:\/\/github.com\/crownedgrouse\/geas[Geas] gives aggregated\ninformation on a project and its dependencies, and is available\nas an Erlang.mk plugin.\n\n=== hexer.mk\n\nAn https:\/\/github.com\/inaka\/hexer.mk[Hex plugin] for Erlang.mk.\nHex is a https:\/\/hex.pm\/[package manager for the Elixir ecosystem].\n\n=== reload.mk\n\nA https:\/\/github.com\/bullno1\/reload.mk[live reload plugin] for Erlang.mk.\n","new_contents":"[[plugins_list]]\n== List of plugins\n\nThis is a non-exhaustive list of Erlang.mk plugins, sorted\nalphabetically.\n\n=== elixir.mk\n\nAn https:\/\/github.com\/botsunit\/elixir.mk[Elixir plugin] for\nErlang.mk. http:\/\/elixir-lang.org\/[Elixir] is an alternative\nlanguage for the BEAM.\n\n=== elvis.mk\n\nAn https:\/\/github.com\/inaka\/elvis.mk[Elvis plugin] for Erlang.mk.\nElvis is an https:\/\/github.com\/inaka\/elvis[Erlang style reviewer].\n\n=== geas\n\nhttps:\/\/github.com\/crownedgrouse\/geas[Geas] gives aggregated\ninformation on a project and its dependencies, and is available\nas an Erlang.mk plugin.\n\n=== hexer.mk\n\nAn https:\/\/github.com\/inaka\/hexer.mk[Hex plugin] for Erlang.mk.\nHex is a https:\/\/hex.pm\/[package manager for the Elixir ecosystem].\n\n=== lfe.mk\n\nAn https:\/\/github.com\/ninenines\/lfe.mk[LFE plugin] for Erlang.mk.\nLFE, or http:\/\/lfe.io\/[Lisp Flavoured Erlang], is an alternative\nlanguage for the BEAM.\n\n=== reload.mk\n\nA https:\/\/github.com\/bullno1\/reload.mk[live reload plugin] for Erlang.mk.\n","subject":"Add elixir.mk and lfe.mk to the plugins list","message":"Add elixir.mk and lfe.mk to the plugins list\n","lang":"AsciiDoc","license":"isc","repos":"crownedgrouse\/erlang.mk,hairyhum\/erlang.mk,ingwinlu\/erlang.mk,nevar\/erlang.mk,jj1bdx\/erlang.mk,rabbitmq\/erlang.mk,ninenines\/erlang.mk"} {"commit":"290377a0fa42b7da5bce6583834bc525fdfe354c","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Json-lib\n:version: 3.0.0.SNAPSHOT\n:linkattrs:\n:project-name: json-lib\n\nimage:http:\/\/img.shields.io\/travis\/aalmiray\/{project-name}\/development.svg[\"Build Status\", link=\"https:\/\/travis-ci.org\/aalmiray\/{project-name}\"]\nimage:http:\/\/img.shields.io\/coveralls\/aalmiray\/{project-name}\/development.svg[\"Coverage Status\", link=\"https:\/\/coveralls.io\/r\/aalmiray\/{project-name}\"]\nimage:http:\/\/img.shields.io\/:semver-{version}-blue.svg[\"Semantic Versioning\", link=\"http:\/\/semver.org\"]\nimage:http:\/\/img.shields.io\/badge\/license-ASF2-blue.svg[\"Apache License 2\", link=\"http:\/\/www.apache.org\/licenses\/LICENSE-2.0.txt\"]\nimage:http:\/\/img.shields.io\/badge\/download-latest-bb00bb.svg[link=\"https:\/\/bintray.com\/aalmiray\/kordamp\/{project-name}\/_latestVersion\"]\n\n---\n\nJSON-lib is a java library for transforming beans, maps, collections, java arrays and XML to JSON and back again to beans and DynaBeans.\n\nRefer to the link:http:\/\/aalmiray.github.io\/{project-name}\/[project guide, window=\"_blank\"] for\nfurther information on configuration and usage.\n","new_contents":"= Json-lib\n:version: 3.0.0.SNAPSHOT\n:linkattrs:\n\nimage:http:\/\/img.shields.io\/travis\/aalmiray\/Json-lib\/development.svg[\"Build Status\", link=\"https:\/\/travis-ci.org\/aalmiray\/Json-lib\"]\nimage:http:\/\/img.shields.io\/coveralls\/aalmiray\/Json-lib\/development.svg[\"Coverage Status\", link=\"https:\/\/coveralls.io\/r\/aalmiray\/Json-lib\"]\nimage:http:\/\/img.shields.io\/:semver-{version}-blue.svg[\"Semantic Versioning\", link=\"http:\/\/semver.org\"]\nimage:http:\/\/img.shields.io\/badge\/license-ASF2-blue.svg[\"Apache License 2\", link=\"http:\/\/www.apache.org\/licenses\/LICENSE-2.0.txt\"]\nimage:http:\/\/img.shields.io\/badge\/download-latest-bb00bb.svg[link=\"https:\/\/bintray.com\/aalmiray\/kordamp\/json-lib\/_latestVersion\"]\n\n---\n\nJSON-lib is a java library for transforming beans, maps, collections, java arrays and XML to JSON and back again to beans and DynaBeans.\n\nRefer to the link:http:\/\/aalmiray.github.io\/json-lib\/[project guide, window=\"_blank\"] for\nfurther information on configuration and usage.\n","subject":"Fix project name in readme","message":"Fix project name in readme [skip ci]\n","lang":"AsciiDoc","license":"apache-2.0","repos":"aalmiray\/Json-lib,aalmiray\/Json-lib"} {"commit":"3e4b6c5ea4716a2d5ddc753bcc10260b75eaa762","old_file":"README.asciidoc","new_file":"README.asciidoc","old_contents":"\n== ANDROID MAVEN PLUGIN\n\nA plugin for Android application development with http:\/\/maven.apache.org[Apache Maven 3.0.3+] and \nthe http:\/\/tools.android.com[Android SDK].\n\n=== Links\n\n* http:\/\/code.google.com\/p\/maven-android-plugin[Project site] with wiki and more\n* http:\/\/code.google.com\/p\/maven-android-plugin\/issues\/list[Issue tracker]\n* http:\/\/maven-android-plugin-m2site.googlecode.com\/svn\/index.html[Maven generated plugin documentation site]\n* http:\/\/www.sonatype.com\/books\/mvnref-book\/reference\/android-dev.html[Maven: Complete Reference - Chapter - Android Application Development with Maven]\n* https:\/\/groups.google.com\/forum\/?fromgroups#!forum\/maven-android-developers[Mailinglist]\n* http:\/\/code.google.com\/p\/maven-android-plugin\/wiki\/Changelog[Changelog]\n* http:\/\/jenkins.josefson.org\/[Continuous Integration Server Builds]\n\n=== Contributions\n\nWe welcome your feature enhancements and bug fixes in pull requests!\n","new_contents":"\n== ANDROID MAVEN PLUGIN\n\nA plugin for Android application development with http:\/\/maven.apache.org[Apache Maven 3.0.3+] and \nthe http:\/\/tools.android.com[Android SDK].\n\n=== Links\n\n* http:\/\/code.google.com\/p\/maven-android-plugin[Project site] with wiki and more\n* http:\/\/code.google.com\/p\/maven-android-plugin\/issues\/list[Issue tracker]\n* http:\/\/maven-android-plugin-m2site.googlecode.com\/svn\/index.html[Maven generated plugin documentation site]\n* http:\/\/www.sonatype.com\/books\/mvnref-book\/reference\/android-dev.html[Maven: Complete Reference - Chapter - Android Application Development with Maven]\n* https:\/\/groups.google.com\/forum\/?fromgroups#!forum\/maven-android-developers[Mailinglist]\n* http:\/\/code.google.com\/p\/maven-android-plugin\/wiki\/Changelog[Changelog]\n* image:https:\/\/travis-ci.org\/jayway\/maven-android-plugin.png[\"Build Status\", link=\"https:\/\/travis-ci.org\/jayway\/maven-android-plugin\"]\n\n=== Contributions\n\nWe welcome your feature enhancements and bug fixes in pull requests!\n","subject":"Change link to CI server.","message":"Change link to CI server.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"xiaojiaqiao\/android-maven-plugin,Stuey86\/android-maven-plugin,secondsun\/maven-android-plugin,psorobka\/android-maven-plugin,xiaojiaqiao\/android-maven-plugin,greek1979\/maven-android-plugin,repanda\/android-maven-plugin,mitchhentges\/android-maven-plugin,Cha0sX\/android-maven-plugin,hgl888\/android-maven-plugin,b-cuts\/android-maven-plugin,CJstar\/android-maven-plugin,b-cuts\/android-maven-plugin,secondsun\/maven-android-plugin,kedzie\/maven-android-plugin,Stuey86\/android-maven-plugin,WonderCsabo\/maven-android-plugin,jdegroot\/android-maven-plugin,wskplho\/android-maven-plugin,WonderCsabo\/maven-android-plugin,repanda\/android-maven-plugin,xiaojiaqiao\/android-maven-plugin,kedzie\/maven-android-plugin,Cha0sX\/android-maven-plugin,Cha0sX\/android-maven-plugin,wskplho\/android-maven-plugin,hgl888\/android-maven-plugin,greek1979\/maven-android-plugin,xieningtao\/android-maven-plugin,ashutoshbhide\/android-maven-plugin,mitchhentges\/android-maven-plugin,CJstar\/android-maven-plugin,psorobka\/android-maven-plugin,simpligility\/android-maven-plugin,secondsun\/maven-android-plugin,xieningtao\/android-maven-plugin,jdegroot\/android-maven-plugin,ashutoshbhide\/android-maven-plugin"} {"commit":"f2de1064b10e4876a36c3c2d3cbc2685445323cc","old_file":"attendees\/cicd\/git-server\/README.adoc","new_file":"attendees\/cicd\/git-server\/README.adoc","old_contents":"= Install a Git Server\n\n== Start Services\n\n. All services can be started, in detached mode, by giving the command:\n\n+\n docker-compose up -d\n+\nAnd this shows the output as:\n+\n Creating git_serverdata...\n Creating gitserver_git_dbdata_1...\n Creating gitserver_git_db_1...\n Creating git...\n+\n\n. Configure the installation\n.. execute the following script\n+\n .\/install-gogs.sh \n+\n\n_example: .\/install.sh 192.168.99.100 3000_\n\n== Sign Up\n\n. Access to this URL: http:\/\/dockerhost:3000\/user\/sign_up\n. Create an account and enjoy!\n. Enjoy! :)\n","new_contents":"= Install a Git Server\n\n== Start Services\n\n. All services can be started, in detached mode, by giving the command:\n\n+\n docker-compose up -d\n+\nAnd this shows the output as:\n+\n Creating git_serverdata...\n Creating gitserver_git_dbdata_1...\n Creating gitserver_git_db_1...\n Creating git...\n+\n\n. Configure the installation\n.. execute the following script\n+\n .\/install-gogs.sh \n+\n\n_example: .\/install-gogs.sh 192.168.99.100 3000_\n\n== Sign Up\n\n. Access to this URL: http:\/\/dockerhost:3000\/user\/sign_up\n. Create an account and enjoy!\n. Enjoy! :)\n","subject":"Fix usage command with install-gogs.sh","message":"Fix usage command with install-gogs.sh\n","lang":"AsciiDoc","license":"apache-2.0","repos":"redhat-developer-demos\/docker-java,redhat-developer-demos\/docker-java"} {"commit":"57583364532eed5c3a603307a24ab7857cf27b22","old_file":"doc\/src\/manual\/cowboy_router.compile.asciidoc","new_file":"doc\/src\/manual\/cowboy_router.compile.asciidoc","old_contents":"= cowboy_router:compile(3)\n\n== Name\n\ncowboy_router:compile - Compile routes to the resources\n\n== Description\n\n[source,erlang]\n----\ncompile(cowboy_router:routes()) -> cowboy_router:dispatch_rules()\n----\n\nCompile routes to the resources.\n\nTakes a human readable list of routes and transforms it\ninto a form more efficient to process.\n\n== Arguments\n\nRoutes::\n\nHuman readable list of routes.\n\n== Return value\n\nAn opaque dispatch rules value is returned. This value\nmust be given to Cowboy as a middleware environment value.\n\n== Changelog\n\n* *1.0*: Function introduced.\n\n== Examples\n\n.Compile routes and start a listener\n[source,erlang]\n----\nDispatch = cowboy_router:compile([\n {'_', [\n {\"\/\", toppage_h, []},\n {\"\/[...], cowboy_static, {priv_dir, my_example_app, \"\"}}\n ]}\n]),\n\n{ok, _} = cowboy:start_clear(example, [{port, 8080}], #{\n env => #{dispatch => Dispatch}\n}).\n----\n\n== See also\n\nlink:man:cowboy_router(3)[cowboy_router(3)]\n","new_contents":"= cowboy_router:compile(3)\n\n== Name\n\ncowboy_router:compile - Compile routes to the resources\n\n== Description\n\n[source,erlang]\n----\ncompile(cowboy_router:routes()) -> cowboy_router:dispatch_rules()\n----\n\nCompile routes to the resources.\n\nTakes a human readable list of routes and transforms it\ninto a form more efficient to process.\n\n== Arguments\n\nRoutes::\n\nHuman readable list of routes.\n\n== Return value\n\nAn opaque dispatch rules value is returned. This value\nmust be given to Cowboy as a middleware environment value.\n\n== Changelog\n\n* *1.0*: Function introduced.\n\n== Examples\n\n.Compile routes and start a listener\n[source,erlang]\n----\nDispatch = cowboy_router:compile([\n {'_', [\n {\"\/\", toppage_h, []},\n {\"\/[...]\", cowboy_static, {priv_dir, my_example_app, \"\"}}\n ]}\n]),\n\n{ok, _} = cowboy:start_clear(example, [{port, 8080}], #{\n env => #{dispatch => Dispatch}\n}).\n----\n\n== See also\n\nlink:man:cowboy_router(3)[cowboy_router(3)]\n","subject":"Fix an example missing a \" in the manual","message":"Fix an example missing a \" in the manual\n","lang":"AsciiDoc","license":"isc","repos":"kivra\/cowboy,hairyhum\/cowboy,turtleDeng\/cowboy,K2InformaticsGmbH\/cowboy,CrankWheel\/cowboy,ninenines\/cowboy"} {"commit":"506f06bb577587936a0c3efb10080fde8d62dce6","old_file":"spring-content-solr\/src\/main\/asciidoc\/solr-rest.adoc","new_file":"spring-content-solr\/src\/main\/asciidoc\/solr-rest.adoc","old_contents":"[[search]]\n= Search\n\n== The SearchContent Resource\n\nWhen a Store extending `Searchable` is exported, a `searchContent` endpoint will be\navailable at the `\/{store}\/searchContent` URI.\n\n====\n[source, sh]\n----\n curl -H 'Accept: application\/hal+json' http:\/\/localhost:8080\/searchContent?queryString=foo\n----\n====\n\n=== Supported HTTP Methods\n\nAs the SearchContent resource is read-only it supports `GET` only. All other HTTP methods will\ncause a `405 Method Not Allowed`.\n\n==== Supported media types\n\n- `application\/hal+json`\n- `application\/json`.\n","new_contents":"[[search]]\n= Search\n\n== The SearchContent Resource\n\nWhen a Store extending `Searchable` is exported, a `searchContent` endpoint will be\navailable at the `\/{store}\/searchContent` URI.\n\n====\n[source, sh]\n----\n curl -H 'Accept: application\/hal+json' http:\/\/localhost:8080\/searchContent?queryString=foo\n----\n====\n\n=== Supported HTTP Methods\n\nAs the SearchContent resource is read-only it supports `GET` only. All other HTTP methods will\ncause a `405 Method Not Allowed`.\n\n==== Supported media types\n\n- `application\/hal+json`\n- `application\/json`.\n\n=== Format of the response payload\n\nThis resource can return entities, or a custom search result type, depending on how the Searchable interface is \nspecified and the type of Store it decorates. \n\nWhen Searchable decorates an AssociativeStore this resource will lookup and return representations of the content's\nassociated entities. These lookups can be made more efficient by specifying a `@FulltextEntityLookupQuery` query \nmethod. This is a custom `findAll` method that accepts a single `Collection` parameter annotated with the name \n`contentIds`, as follows:\n\n```\n public interface MyRepository extends CrudRepository {\n\n @FulltextEntityLookupQuery\n List findAllByContentIdIn(@Param(\"contentIds\") List contentIds);\n }\n \n public interface MyStore extends AssociativeStore, Searchable {}\n```\n\nWhen Searchable is typed to your own search return type the resource will return a representation of this type instead. \nSee `Search Return Types` in the respective documentation for your chosen Spring Content fulltext module; solr or \nelasticsearch, for more information on specifying a custom search return types.","subject":"Add documentation explaining the format of the searchContent response payload","message":"Add documentation explaining the format of the searchContent response payload\n","lang":"AsciiDoc","license":"apache-2.0","repos":"paulcwarren\/spring-content,paulcwarren\/spring-content,paulcwarren\/spring-content"} {"commit":"7c9da1be4bb85002515de4a46fb0f48d11c2410c","old_file":"modules\/adding-custom-notification-banners.adoc","new_file":"modules\/adding-custom-notification-banners.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * web_console\/customizing-the-web-console.adoc\n\n[id=\"creating-custom-notification-banners_{context}\"]\n= Creating custom notification banners\n\n.Prerequisites\n\n* You must have administrator privileges.\n\n.Procedure\n\n. From *Administration* -> *Custom Resource Definitions*, click on\n*ConsoleNotification*.\n\n. Click *YAML* and edit the file:\n+\n----\napiVersion: console.openshift.io\/v1\nkind: ConsoleNotification\nmetadata:\n name: example\nspec:\n backgroundColor: '#0088ce'\n color: '#fff'\n link:\n href: 'https:\/\/www.example.com'\n text: Optional link text\n location: BannerTop <1>\n text: This is an example notification message with an optional link.\n----\n<1> Valid location settings are `BannerTop`, `BannerBottom`, and `BannerTopBottom`.\n\n. Click the *Save* button to apply your changes.\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * web_console\/customizing-the-web-console.adoc\n\n[id=\"creating-custom-notification-banners_{context}\"]\n= Creating custom notification banners\n\n.Prerequisites\n\n* You must have administrator privileges.\n\n.Procedure\n\n. From *Administration* -> *Custom Resource Definitions*, click on\n*ConsoleNotification*.\n. Select *Instances* tab\n. Click *Create Console Notification* and edit the file:\n+\n----\napiVersion: console.openshift.io\/v1\nkind: ConsoleNotification\nmetadata:\n name: example\nspec:\n text: This is an example notification message with an optional link.\n location: BannerTop <1>\n link:\n href: 'https:\/\/www.example.com'\n text: Optional link text\n color: '#fff'\n backgroundColor: '#0088ce'\n\n----\n<1> Valid location settings are `BannerTop`, `BannerBottom`, and `BannerTopBottom`.\n\n. Click the *Create* button to apply your changes.\n","subject":"Fix navigation path and CRD format in creating-custom-notification-banners","message":"Fix navigation path and CRD format in creating-custom-notification-banners\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"b491eccf9891ea00adbfc25ee2ba8d818c94aab0","old_file":"storage\/persistent_storage\/persistent-storage-fibre.adoc","new_file":"storage\/persistent_storage\/persistent-storage-fibre.adoc","old_contents":"[id=\"persistent-storage-using-fibre\"]\n= Persistent storage using Fibre Channel\ninclude::modules\/common-attributes.adoc[]\n:context: persistent-storage-fibre\n\ntoc::[]\n\n{product-title} supports Fibre Channel, allowing you to provision your\n{product-title} cluster with persistent storage using Fibre channel volumes.\nSome familiarity with Kubernetes and Fibre Channel is assumed.\n\nThe Kubernetes persistent volume framework allows administrators to provision a\ncluster with persistent storage and gives users a way to request those\nresources without having any knowledge of the underlying infrastructure.\nPersistent volumes are not bound to a single project or namespace; they can be\nshared across the {product-title} cluster.\nPersistent volume claims are specific to a project or namespace and can be\nrequested by users.\n\n[IMPORTANT]\n====\nHigh availability of storage in the infrastructure is left to the underlying\nstorage provider.\n====\n\n.Additional resources\n\n* link:https:\/\/access.redhat.com\/documentation\/en-us\/red_hat_enterprise_linux\/7\/html\/storage_administration_guide\/ch-fibrechanel[Fibre Channel]\n\ninclude::modules\/persistent-storage-fibre-provisioning.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-fibre-disk-quotas.adoc[leveloffset=+2]\n\ninclude::modules\/persistent-storage-fibre-volume-security.adoc[leveloffset=+2]\n","new_contents":"[id=\"persistent-storage-using-fibre\"]\n= Persistent storage using Fibre Channel\ninclude::modules\/common-attributes.adoc[]\n:context: persistent-storage-fibre\n\ntoc::[]\n\n{product-title} supports Fibre Channel, allowing you to provision your\n{product-title} cluster with persistent storage using Fibre channel volumes.\nSome familiarity with Kubernetes and Fibre Channel is assumed.\n\nThe Kubernetes persistent volume framework allows administrators to provision a\ncluster with persistent storage and gives users a way to request those\nresources without having any knowledge of the underlying infrastructure.\nPersistent volumes are not bound to a single project or namespace; they can be\nshared across the {product-title} cluster.\nPersistent volume claims are specific to a project or namespace and can be\nrequested by users.\n\n[IMPORTANT]\n====\nHigh availability of storage in the infrastructure is left to the underlying\nstorage provider.\n====\n\n.Additional resources\n\n* link:https:\/\/access.redhat.com\/documentation\/en-us\/red_hat_enterprise_linux\/8\/html\/managing_storage_devices\/using-fibre-channel-devices_managing-storage-devices[Using Fibre Channel devices]\n\ninclude::modules\/persistent-storage-fibre-provisioning.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-fibre-disk-quotas.adoc[leveloffset=+2]\n\ninclude::modules\/persistent-storage-fibre-volume-security.adoc[leveloffset=+2]\n","subject":"Update FC link to RHEL8 doc","message":"Update FC link to RHEL8 doc\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"4a2d56157a40d1a150cf84a5c61a02bf94a2748f","old_file":"docs\/plugins\/security.asciidoc","new_file":"docs\/plugins\/security.asciidoc","old_contents":"[[security]]\n== Security Plugins\n\nSecurity plugins add a security layer to Elasticsearch.\n\n[float]\n=== Core security plugins\n\nThe core security plugins are:\n\nlink:\/products\/shield[Shield]::\n\nShield is the Elastic product that makes it easy for anyone to add\nenterprise-grade security to their ELK stack. Designed to address the growing security\nneeds of thousands of enterprises using ELK today, Shield provides peace of\nmind when it comes to protecting your data.\n\n[float]\n=== Community contributed security plugins\n\nThe following plugin has been contributed by our community:\n\n* https:\/\/github.com\/sscarduzio\/elasticsearch-readonlyrest-plugin[Readonly REST]:\n High performance access control for Elasticsearch native REST API (by Simone Scarduzio)\n\nThis community plugin appears to have been abandoned:\n\n* https:\/\/github.com\/sonian\/elasticsearch-jetty[Jetty HTTP transport plugin]:\n Uses Jetty to provide SSL connections, basic authentication, and request logging (by Sonian Inc.)","new_contents":"[[security]]\n== Security Plugins\n\nSecurity plugins add a security layer to Elasticsearch.\n\n[float]\n=== Core security plugins\n\nThe core security plugins are:\n\nlink:\/products\/shield[Shield]::\n\nShield is the Elastic product that makes it easy for anyone to add\nenterprise-grade security to their ELK stack. Designed to address the growing security\nneeds of thousands of enterprises using ELK today, Shield provides peace of\nmind when it comes to protecting your data.\n\n[float]\n=== Community contributed security plugins\n\nThe following plugins have been contributed by our community:\n\n* https:\/\/github.com\/codecentric\/elasticsearch-shield-kerberos-realm[Kerberos\/SPNEGO Realm]:\n Custom Shield realm to Authenticate HTTP and Transport requests via Kerberos\/SPNEGO (by codecentric AG)\n\n* https:\/\/github.com\/sscarduzio\/elasticsearch-readonlyrest-plugin[Readonly REST]:\n High performance access control for Elasticsearch native REST API (by Simone Scarduzio)\n\nThis community plugin appears to have been abandoned:\n\n* https:\/\/github.com\/sonian\/elasticsearch-jetty[Jetty HTTP transport plugin]:\n Uses Jetty to provide SSL connections, basic authentication, and request logging (by Sonian Inc.)\n","subject":"Add Kerberos\/SPNEGO Shield custom realm","message":"Add Kerberos\/SPNEGO Shield custom realm\n\nCloses #14282\n","lang":"AsciiDoc","license":"apache-2.0","repos":"baishuo\/elasticsearch_v2.1.0-baishuo,baishuo\/elasticsearch_v2.1.0-baishuo,baishuo\/elasticsearch_v2.1.0-baishuo,baishuo\/elasticsearch_v2.1.0-baishuo,baishuo\/elasticsearch_v2.1.0-baishuo,baishuo\/elasticsearch_v2.1.0-baishuo,baishuo\/elasticsearch_v2.1.0-baishuo"} {"commit":"6ccce2182eab5c6ab6e55038aef4c7519704a6eb","old_file":"docs\/user-manual\/modules\/ROOT\/pages\/exchange-pattern.adoc","new_file":"docs\/user-manual\/modules\/ROOT\/pages\/exchange-pattern.adoc","old_contents":"[[ExchangePattern-ExchangePattern]]\n= Exchange Pattern\n\nThere are many different _Message Exchange Patterns_ you can use in\nmessaging. This concept is also demonstrated in WSDL and JBI's MEPs.\n\nFrom there xref:enterprise-integration-patterns.adoc[Enterprise\nIntegration Patterns] the common examples are\n\n* Request Reply\n* Event Message (or one way)\n\nIn Camel we have an\nhttp:\/\/camel.apache.org\/maven\/current\/camel-core\/apidocs\/org\/apache\/camel\/ExchangePattern.html[ExchangePattern]\nenumeration which can be configured on the *exchangePattern* property on\nthe Message Exchange indicating if a message\nexchange is a one way Event Message (InOnly) or\na Request Reply message exchange (InOut).\n\nFor example to override the default pattern on a xref:components::jms-component.adoc[JMS]\nendpoint you could use this URI\n\n[source,java]\n---------------------------------\njms:MyQueue?exchangePattern=InOut\n---------------------------------\n","new_contents":"[[ExchangePattern-ExchangePattern]]\n= Exchange Pattern\n\nThere are many different _Message Exchange Patterns_ you can use in\nmessaging. This concept is also demonstrated in WSDL and JBI's MEPs.\n\nFrom there xref:enterprise-integration-patterns.adoc[Enterprise\nIntegration Patterns] the common examples are\n\n* Request Reply\n* Event Message (or one way)\n\nIn Camel we have an\n`org.apache.camel.ExchangePattern`\nenumeration which can be configured on the *exchangePattern* property on\nthe Message Exchange indicating if a message\nexchange is a one way Event Message (InOnly) or\na Request Reply message exchange (InOut).\n\nFor example to override the default pattern on a xref:components::jms-component.adoc[JMS]\nendpoint you could use this URI\n\n[source,java]\n---------------------------------\njms:MyQueue?exchangePattern=InOut\n---------------------------------\n","subject":"Remove dead link to javadoc of ExchangePattern","message":"Remove dead link to javadoc of ExchangePattern\n\nuse the fully qualified name so that users can find the enumeration easily as the information is no more available from the link that is removed.","lang":"AsciiDoc","license":"apache-2.0","repos":"mcollovati\/camel,nikhilvibhav\/camel,CodeSmell\/camel,alvinkwekel\/camel,adessaigne\/camel,pmoerenhout\/camel,adessaigne\/camel,tadayosi\/camel,tadayosi\/camel,adessaigne\/camel,cunningt\/camel,pmoerenhout\/camel,tadayosi\/camel,tdiesler\/camel,pmoerenhout\/camel,zregvart\/camel,DariusX\/camel,DariusX\/camel,tdiesler\/camel,ullgren\/camel,pax95\/camel,gnodet\/camel,mcollovati\/camel,apache\/camel,tdiesler\/camel,mcollovati\/camel,apache\/camel,cunningt\/camel,tadayosi\/camel,pax95\/camel,ullgren\/camel,tadayosi\/camel,apache\/camel,zregvart\/camel,alvinkwekel\/camel,gnodet\/camel,tdiesler\/camel,christophd\/camel,adessaigne\/camel,pax95\/camel,apache\/camel,pmoerenhout\/camel,apache\/camel,cunningt\/camel,pax95\/camel,zregvart\/camel,CodeSmell\/camel,nicolaferraro\/camel,nicolaferraro\/camel,nicolaferraro\/camel,alvinkwekel\/camel,ullgren\/camel,adessaigne\/camel,cunningt\/camel,tadayosi\/camel,pax95\/camel,nicolaferraro\/camel,adessaigne\/camel,cunningt\/camel,nikhilvibhav\/camel,mcollovati\/camel,alvinkwekel\/camel,christophd\/camel,CodeSmell\/camel,christophd\/camel,apache\/camel,christophd\/camel,pmoerenhout\/camel,cunningt\/camel,nikhilvibhav\/camel,DariusX\/camel,christophd\/camel,tdiesler\/camel,nikhilvibhav\/camel,gnodet\/camel,CodeSmell\/camel,gnodet\/camel,pax95\/camel,ullgren\/camel,zregvart\/camel,pmoerenhout\/camel,DariusX\/camel,christophd\/camel,tdiesler\/camel,gnodet\/camel"} {"commit":"85f7f9b2d184d8552f8e58dce96c32045d7066d9","old_file":"docs\/en\/rest-api\/security\/change-password.asciidoc","new_file":"docs\/en\/rest-api\/security\/change-password.asciidoc","old_contents":"[role=\"xpack\"]\n[[security-api-change-password]]\n=== Change Password API\n\nThe Change Password API enables you to submit a request to change the password\nof a user.\n\n==== Request\n\n`POST _xpack\/security\/user\/_password` +\n`POST _xpack\/security\/user\/\/_password` \n\n\n==== Path Parameters\n\n`username`::\n (string) The user whose password you want to change. If you do not specify\n this parameter, the password is changed for the current user.\n\n\n==== Request Body\n\n`password` (required)::\n (string) The new password value.\n\n\n==== Authorization\n\nEvery user can change their own password. Users with the `manage_security`\nprivilege can change passwords of other users.\n\n\n==== Examples\n\nThe following example updates the password for the `elastic` user:\n\n[source,js]\n--------------------------------------------------\nPOST _xpack\/security\/user\/elastic\/_password\n{\n \"password\": \"x-pack-test-password\"\n}\n--------------------------------------------------\n\/\/ CONSOLE\n\nA successful call returns an empty JSON structure.\n\n[source,js]\n--------------------------------------------------\n{}\n--------------------------------------------------\n\/\/ TESTRESPONSE\n","new_contents":"[role=\"xpack\"]\n[[security-api-change-password]]\n=== Change Password API\n\nThe Change Password API enables you to submit a request to change the password\nof a user.\n\n==== Request\n\n`POST _xpack\/security\/user\/_password` +\n\n`POST _xpack\/security\/user\/\/_password`\n\n\n==== Path Parameters\n\n`username`::\n (string) The user whose password you want to change. If you do not specify\n this parameter, the password is changed for the current user.\n\n\n==== Request Body\n\n`password` (required)::\n (string) The new password value.\n\n\n==== Authorization\n\nEvery user can change their own password. Users with the `manage_security`\nprivilege can change passwords of other users.\n\n\n==== Examples\n\nThe following example updates the password for the `elastic` user:\n\n[source,js]\n--------------------------------------------------\nPOST _xpack\/security\/user\/elastic\/_password\n{\n \"password\": \"x-pack-test-password\"\n}\n--------------------------------------------------\n\/\/ CONSOLE\n\nA successful call returns an empty JSON structure.\n\n[source,js]\n--------------------------------------------------\n{}\n--------------------------------------------------\n\/\/ TESTRESPONSE\n","subject":"Fix formatting in change password API","message":"[DOCS] Fix formatting in change password API\n\nOriginal commit: elastic\/x-pack-elasticsearch@acbe051abb686fb46f20b22a29b3d4330dd46de9\n","lang":"AsciiDoc","license":"apache-2.0","repos":"gingerwizard\/elasticsearch,GlenRSmith\/elasticsearch,gingerwizard\/elasticsearch,robin13\/elasticsearch,robin13\/elasticsearch,gfyoung\/elasticsearch,gingerwizard\/elasticsearch,nknize\/elasticsearch,scorpionvicky\/elasticsearch,uschindler\/elasticsearch,coding0011\/elasticsearch,HonzaKral\/elasticsearch,gingerwizard\/elasticsearch,robin13\/elasticsearch,uschindler\/elasticsearch,nknize\/elasticsearch,GlenRSmith\/elasticsearch,scorpionvicky\/elasticsearch,uschindler\/elasticsearch,gfyoung\/elasticsearch,nknize\/elasticsearch,coding0011\/elasticsearch,gingerwizard\/elasticsearch,scorpionvicky\/elasticsearch,uschindler\/elasticsearch,coding0011\/elasticsearch,GlenRSmith\/elasticsearch,scorpionvicky\/elasticsearch,robin13\/elasticsearch,nknize\/elasticsearch,HonzaKral\/elasticsearch,GlenRSmith\/elasticsearch,gingerwizard\/elasticsearch,HonzaKral\/elasticsearch,nknize\/elasticsearch,GlenRSmith\/elasticsearch,coding0011\/elasticsearch,gfyoung\/elasticsearch,scorpionvicky\/elasticsearch,HonzaKral\/elasticsearch,robin13\/elasticsearch,gingerwizard\/elasticsearch,coding0011\/elasticsearch,gfyoung\/elasticsearch,uschindler\/elasticsearch,gfyoung\/elasticsearch"} {"commit":"d297b25ce2d534a810bdbc3f2eca4673ec629265","old_file":"docs\/reference\/setup\/sysconfig\/file-descriptors.asciidoc","new_file":"docs\/reference\/setup\/sysconfig\/file-descriptors.asciidoc","old_contents":"[[file-descriptors]]\n=== File Descriptors\n\n[NOTE]\nThis is only a problem for Linux and macOS and can be safely ignored if running\nElasticsearch on Windows.\n\nElasticsearch uses a lot of file descriptors or file handles. Running out of\nfile descriptors can be disastrous and will most probably lead to data loss.\nMake sure to increase the limit on the number of open files descriptors for\nthe user running Elasticsearch to 65,536 or higher.\n\nFor the `.zip` and `.tar.gz` packages, set <> as\nroot before starting Elasticsearch, or set `nofile` to `65536` in\n<>.\n\nRPM and Debian packages already default the maximum number of file\ndescriptors to 65536 and do not require further configuration.\n\nYou can check the `max_file_descriptors` configured for each node\nusing the <> API, with:\n\n[source,js]\n--------------------------------------------------\nGET _nodes\/stats\/process?filter_path=**.max_file_descriptors\n--------------------------------------------------\n\/\/ CONSOLE\n","new_contents":"[[file-descriptors]]\n=== File Descriptors\n\n[NOTE]\nThis is only relevant for Linux and macOS and can be safely ignored if running\nElasticsearch on Windows. On Windows that JVM uses an\nhttps:\/\/msdn.microsoft.com\/en-us\/library\/windows\/desktop\/aa363858(v=vs.85).aspx[API]\nlimited only by available resources.\n\nElasticsearch uses a lot of file descriptors or file handles. Running out of\nfile descriptors can be disastrous and will most probably lead to data loss.\nMake sure to increase the limit on the number of open files descriptors for\nthe user running Elasticsearch to 65,536 or higher.\n\nFor the `.zip` and `.tar.gz` packages, set <> as\nroot before starting Elasticsearch, or set `nofile` to `65536` in\n<>.\n\nRPM and Debian packages already default the maximum number of file\ndescriptors to 65536 and do not require further configuration.\n\nYou can check the `max_file_descriptors` configured for each node\nusing the <> API, with:\n\n[source,js]\n--------------------------------------------------\nGET _nodes\/stats\/process?filter_path=**.max_file_descriptors\n--------------------------------------------------\n\/\/ CONSOLE\n","subject":"Reword note about windows and FDs","message":"Reword note about windows and FDs\n\nMake it clear why this isn't a thing in windows and remove value\njudgement about file descriptors.\n\nRelates to #20737\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc"} {"commit":"f3da03d57b00315d9ba6ff4c8cead9a29dbd65d1","old_file":"modules\/efk-logging-uninstall-efk.adoc","new_file":"modules\/efk-logging-uninstall-efk.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * logging\/efk-logging-uninstall.adoc\n\n[id='efk-logging-uninstall-efk_{context}']\n= Uninstalling EFK from {product-title}\n\nUse the following command to remove everything generated during the deployment.\n\n\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * logging\/efk-logging-uninstall.adoc\n\n[id='efk-logging-uninstall-efk_{context}']\n= Uninstalling EFK from {product-title}\n\nUse the following command to remove everything generated during the deployment.\n\n----\n#oc delete clusterlogging $clusterlogging_names -n openshift-logging'\n----\n","subject":"Add steps to delete EFK","message":"Add steps to delete EFK\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"08f839908361cea92e6e4169164e5bdc5d5926a3","old_file":"docs\/user-manual\/en\/release-notes\/camel-2183-release.adoc","new_file":"docs\/user-manual\/en\/release-notes\/camel-2183-release.adoc","old_contents":"[[Camel2.18.3Release-Camel2.18.3Release]]\n== Camel 2.18.3 Release\n\n### New and Noteworthy\n\nWelcome to the 2.18.3 release which is mainly a maintenance release with\n38 fixes resolved.\n\nFor further details,\nsee https:\/\/issues.apache.org\/jira\/secure\/ReleaseNote.jspa?version=12339161&projectId=12311211[the\nlist of JIRA issues].\n\n### Known Issues\n\n* See <>\n\n### Important changes to consider when upgrading\n\n* See <>\n\n### Getting the Binaries using Maven 2\n\nTo use this release in your maven project, the proper dependency\nconfiguration that you should use in your\nhttp:\/\/maven.apache.org\/guides\/introduction\/introduction-to-the-pom.html[Maven\nPOM] is:\n\n[source,java]\n-------------------------------------\n\n org.apache.camel<\/groupId>\n camel-core<\/artifactId>\n 2.18.3<\/version>\n<\/dependency>\n-------------------------------------\n\n### Changelog\n\nFor a more detailed view of new features and bug fixes, see the:\n\n*\nhttps:\/\/issues.apache.org\/jira\/secure\/ReleaseNote.jspa?version=12339161&projectId=12311211[Release\nnotes for 2.18.3]\n\n","new_contents":"[[Camel2.18.3Release-Camel2.18.3Release]]\n== Camel 2.18.3 Release\n\n### New and Noteworthy\n\nWelcome to the 2.18.3 release which is mainly a maintenance release with\n38 fixes resolved.\n\nFor further details,\nsee https:\/\/issues.apache.org\/jira\/secure\/ReleaseNote.jspa?version=12339161&projectId=12311211[the\nlist of JIRA issues].\n\n### Known Issues\n\n* See <>\n\n### Important changes to consider when upgrading\n\n* See <>\n\n### Getting the Binaries using Maven 2\n\nTo use this release in your maven project, the proper dependency\nconfiguration that you should use in your\nhttp:\/\/maven.apache.org\/guides\/introduction\/introduction-to-the-pom.html[Maven\nPOM] is:\n\n[source,java]\n-------------------------------------\n\n org.apache.camel<\/groupId>\n camel-core<\/artifactId>\n 2.18.3<\/version>\n<\/dependency>\n-------------------------------------\n\n### Changelog\n\nFor a more detailed view of new features and bug fixes, see the:\n\nhttps:\/\/issues.apache.org\/jira\/secure\/ReleaseNote.jspa?version=12339161&projectId=12311211[Release\nnotes for 2.18.3]\n\n","subject":"Fix typo in Camel 2.18.3 release notes","message":"Fix typo in Camel 2.18.3 release notes\n","lang":"AsciiDoc","license":"apache-2.0","repos":"tadayosi\/camel,punkhorn\/camel-upstream,CodeSmell\/camel,pax95\/camel,ullgren\/camel,sverkera\/camel,apache\/camel,jamesnetherton\/camel,DariusX\/camel,cunningt\/camel,sverkera\/camel,apache\/camel,davidkarlsen\/camel,apache\/camel,davidkarlsen\/camel,nicolaferraro\/camel,onders86\/camel,punkhorn\/camel-upstream,pmoerenhout\/camel,pmoerenhout\/camel,jamesnetherton\/camel,apache\/camel,davidkarlsen\/camel,CodeSmell\/camel,tdiesler\/camel,pax95\/camel,apache\/camel,onders86\/camel,objectiser\/camel,pax95\/camel,adessaigne\/camel,gnodet\/camel,tadayosi\/camel,onders86\/camel,sverkera\/camel,Fabryprog\/camel,onders86\/camel,objectiser\/camel,kevinearls\/camel,nikhilvibhav\/camel,pax95\/camel,kevinearls\/camel,anoordover\/camel,adessaigne\/camel,punkhorn\/camel-upstream,zregvart\/camel,christophd\/camel,Fabryprog\/camel,tdiesler\/camel,mcollovati\/camel,alvinkwekel\/camel,objectiser\/camel,tdiesler\/camel,cunningt\/camel,ullgren\/camel,christophd\/camel,jamesnetherton\/camel,CodeSmell\/camel,adessaigne\/camel,adessaigne\/camel,gnodet\/camel,tadayosi\/camel,tadayosi\/camel,cunningt\/camel,gnodet\/camel,jamesnetherton\/camel,pax95\/camel,tdiesler\/camel,pax95\/camel,kevinearls\/camel,zregvart\/camel,cunningt\/camel,adessaigne\/camel,christophd\/camel,kevinearls\/camel,DariusX\/camel,zregvart\/camel,nicolaferraro\/camel,mcollovati\/camel,nikhilvibhav\/camel,ullgren\/camel,davidkarlsen\/camel,pmoerenhout\/camel,zregvart\/camel,kevinearls\/camel,cunningt\/camel,christophd\/camel,sverkera\/camel,anoordover\/camel,anoordover\/camel,nicolaferraro\/camel,jamesnetherton\/camel,tadayosi\/camel,kevinearls\/camel,Fabryprog\/camel,DariusX\/camel,pmoerenhout\/camel,nicolaferraro\/camel,pmoerenhout\/camel,nikhilvibhav\/camel,ullgren\/camel,sverkera\/camel,alvinkwekel\/camel,punkhorn\/camel-upstream,Fabryprog\/camel,onders86\/camel,cunningt\/camel,jamesnetherton\/camel,alvinkwekel\/camel,christophd\/camel,gnodet\/camel,anoordover\/camel,adessaigne\/camel,tdiesler\/camel,objectiser\/camel,tdiesler\/camel,alvinkwekel\/camel,pmoerenhout\/camel,anoordover\/camel,christophd\/camel,tadayosi\/camel,gnodet\/camel,onders86\/camel,apache\/camel,anoordover\/camel,nikhilvibhav\/camel,CodeSmell\/camel,sverkera\/camel,DariusX\/camel,mcollovati\/camel,mcollovati\/camel"} {"commit":"06b7a81cf53a0be5a9eb7c0ff0f2b03a2e143e32","old_file":"impl\/src\/docs\/asciidoc\/index.adoc","new_file":"impl\/src\/docs\/asciidoc\/index.adoc","old_contents":"include::{generated}\/overview.adoc[]\ninclude::manual_rest_doc.adoc[]\ninclude::{generated}\/paths.adoc[]\n","new_contents":":generated: ..\/..\/..\/target\/generated-docs\/asciidoc\n\ninclude::{generated}\/overview.adoc[]\ninclude::manual_rest_doc.adoc[]\ninclude::{generated}\/paths.adoc[]\n","subject":"Enable IDE rendering of generated Swagger documentation","message":"Enable IDE rendering of generated Swagger documentation\n","lang":"AsciiDoc","license":"mit","repos":"jugda\/dukecon_server,jugda\/dukecon_server,dukecon\/dukecon_server,dukecon\/dukecon_server,dukecon\/dukecon_server,jugda\/dukecon_server"} {"commit":"83bd6acf107969a954334c1171a5e43bdd2da508","old_file":"docs\/reference\/analysis\/tokenfilters\/delimited-payload-tokenfilter.asciidoc","new_file":"docs\/reference\/analysis\/tokenfilters\/delimited-payload-tokenfilter.asciidoc","old_contents":"[[analysis-delimited-payload-tokenfilter]]\n=== Delimited Payload Token Filter\n\nNamed `delimited_payload_filter`. Splits tokens into tokens and payload whenever a delimiter character is found.\n\nExample: \"the|1 quick|2 fox|3\" is split per default int to tokens `fox`, `quick` and `the` with payloads `1`, `2` and `3` respectively.\n\n\n\nParameters:\n\n`delimiter`:: \n Character used for splitting the tokens. Default is `|`. \n\n`encoding`:: \n The type of the payload. `int` for integer, `float` for float and `identity` for characters. Default is `float`.","new_contents":"[[analysis-delimited-payload-tokenfilter]]\n=== Delimited Payload Token Filter\n\nNamed `delimited_payload_filter`. Splits tokens into tokens and payload whenever a delimiter character is found.\n\nExample: \"the|1 quick|2 fox|3\" is split by default into tokens `the`, `quick`, and `fox` with payloads `1`, `2`, and `3` respectively.\n\nParameters:\n\n`delimiter`:: \n Character used for splitting the tokens. Default is `|`. \n\n`encoding`:: \n The type of the payload. `int` for integer, `float` for float and `identity` for characters. Default is `float`.","subject":"Fix minor issues in delimited payload token filter docs","message":"Fix minor issues in delimited payload token filter docs\n\nThis commit backports commit b4fbe1e1b80dc47120de5111e31c12db5d514af2\nfrom master to 2.x.\n\nRelates #15486\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test"} {"commit":"e97fdb6a66be7a40cfb784132c37d769e7789040","old_file":"opennms-doc\/releasenotes\/src\/asciidoc\/releasenotes\/whatsnew-22.adoc","new_file":"opennms-doc\/releasenotes\/src\/asciidoc\/releasenotes\/whatsnew-22.adoc","old_contents":"[[releasenotes-22]]\n== What's New in OpenNMS Horizon 22\n\n=== System Requirements\n\nTODO\n\n=== Important Upgrade Notes\n\n* All collectors using the JMXSecureCollector, MX4JCollector or JBossCollector must be migrated to use the JMXCollector instead.\n* All monitors using the JBossMonitor or JMXSecureMonitor must be migrated to use the JMXMonitor instead.\n* All detectors using the JBossDetector or MX4JDetector must be migrated to use the JMXDetector instead.\n\n=== Breaking Changes\n\n* JMXSecureCollector, MX4JCollector and JBossCollector have been removed. Please use the JMXCollector or Jsr160Collector instead.\n* JBossMonitor and JMXSecureMonitor have been. Removed. Use the JMXMonitor instead.\n* JBossDetector and MX4JDetector have been removed. Use the JMXDetector instead.\n\n=== New Features\n\n\n=== Dependency Updates\n","new_contents":"[[releasenotes-22]]\n== What's New in OpenNMS Horizon 22\n\n=== System Requirements\n\nTODO\n\n=== Important Upgrade Notes\n\n* All collectors using the `JMXSecureCollector`, `MX4JCollector` or `JBossCollector` must be migrated to use the `Jsr160Collector` instead.\n* All monitors using the `JBossMonitor` or `JMXSecureMonitor` must be migrated to use the `Jsr160Monitor` instead.\n* All detectors using the `JBossDetector` or `MX4JDetector` must be migrated to use the `Jsr160Detector` instead.\n\n=== Breaking Changes\n\n* `JMXSecureCollector`, `MX4JCollector` and `JBossCollector` have been removed. Please use the `Jsr160Collector` instead.\n* `JBossMonitor` and `JMXSecureMonitor` have been. Removed. Use the `Jsr160Monitor` instead.\n* `JBossDetector` and `MX4JDetector` have been removed. Use the `Jsr160Detector` instead.\n\n=== New Features\n\n\n=== Dependency Updates\n","subject":"Make it more clear which collector\/detector\/monitor to use instead","message":"HZN-1194: Make it more clear which collector\/detector\/monitor to use instead\n","lang":"AsciiDoc","license":"agpl-3.0","repos":"aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms"} {"commit":"9593414c2736a67523c55c0ed5175a3afe19e75e","old_file":"docs\/src\/main\/asciidoc\/spring-cloud-bus.adoc","new_file":"docs\/src\/main\/asciidoc\/spring-cloud-bus.adoc","old_contents":"= Spring Cloud Bus\n:github: https:\/\/github.com\/spring-cloud\/spring-cloud-config\n:githubmaster: {github}\/tree\/master\n:docslink: {githubmaster}\/docs\/src\/main\/asciidoc\n:toc:\n\ninclude::intro.adoc[]\n\ninclude::https:\/\/raw.githubusercontent.com\/spring-cloud\/spring-cloud-build\/master\/docs\/src\/main\/asciidoc\/contributing-docs.adoc[]\n\n== Quick Start\n\ninclude::quickstart.adoc[]\n\n== Customizing the AMQP ConnectionFactory\n\nIf you are using AMQP there needs to be a `ConnectionFactory` (from\nSpring Rabbit) in the application context. If there is a single\n`ConnectionFactory` it will be used, or if there is a one qualified as\n`@BusConnectionFactory` it will be preferred over others, otherwise\nthe `@Primary` one will be used. If there are multiple unqualified\nconnection factories there will be an error.\n\nNote that Spring Boot (as of 1.2.2) creates a `ConnectionFactory` that\nis _not_ `@Primary`, so if you want to use one connection factory for\nthe bus and another for business messages, you need to create both,\nand annotate them `@BusConnectionFactory` and `@Primary` respectively.","new_contents":"= Spring Cloud Bus\n:github: https:\/\/github.com\/spring-cloud\/spring-cloud-config\n:githubmaster: {github}\/tree\/master\n:docslink: {githubmaster}\/docs\/src\/main\/asciidoc\n:toc:\n\ninclude::intro.adoc[]\n\ninclude::https:\/\/raw.githubusercontent.com\/spring-cloud\/spring-cloud-build\/master\/docs\/src\/main\/asciidoc\/contributing-docs.adoc[]\n\n== Quick Start\n\ninclude::quickstart.adoc[]\n\n== Addressing an Instance\n\nThe HTTP endpoints accept a \"destination\" parameter, e.g. \"\/bus\/refresh?destination=customers:9000\", where the destination is an `ApplicationContext` ID. If the ID is owned by an instance on the Bus then it will process the message and all other instances will ignore it. Spring Boot sets the ID for you in the `ContextIdApplicationContextInitializer` to a combination of the `spring.application.name`, active profiles and `server.port` by default.\n\n== Customizing the AMQP ConnectionFactory\n\nIf you are using AMQP there needs to be a `ConnectionFactory` (from\nSpring Rabbit) in the application context. If there is a single\n`ConnectionFactory` it will be used, or if there is a one qualified as\n`@BusConnectionFactory` it will be preferred over others, otherwise\nthe `@Primary` one will be used. If there are multiple unqualified\nconnection factories there will be an error.\n\nNote that Spring Boot (as of 1.2.2) creates a `ConnectionFactory` that\nis _not_ `@Primary`, so if you want to use one connection factory for\nthe bus and another for business messages, you need to create both,\nand annotate them `@BusConnectionFactory` and `@Primary` respectively.","subject":"Add paragraph about destination parameter in Bus endpoints","message":"Add paragraph about destination parameter in Bus endpoints\n\nFixes gh-16\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spring-cloud\/spring-cloud-bus,jkuipers\/spring-cloud-bus,jkuipers\/spring-cloud-bus,jkuipers\/spring-cloud-bus,spring-cloud\/spring-cloud-bus"} {"commit":"c047ced0e1d5d855db7fffebd9a61ea15d7805d6","old_file":"README.adoc","new_file":"README.adoc","old_contents":"Ctrlflow Automated Error Reporting Client Examples\n==================================================\n\nExamples of how to use various clients to communicate with the https:\/\/www.ctrlflow.com\/automated-error-reporting\/[Ctrlflow Automated Error Reporting (AER) server].\n\nAt the moment, the following examples are available:\n\nlink:logback-java-example[Log4j 2 Java Example]::\nIf you are developing a stand-alone *Java application* that uses the popular https:\/\/logging.apache.org\/log4j\/2.x\/[*Log4j 2*] logging framework, have a look at this example.\nIt shows you how to configure Log4j 2 to send error reports to a Ctrlflow AER server.\n\nlink:logback-java-example[Logback Java Example]::\nIf you are developing a stand-alone *Java application* that uses the popular http:\/\/logback.qos.ch\/[*Logback*] logging framework, have a look at this example.\nIt shows you how to configure Logback to send error reports to a Ctrlflow AER server.\n\nlink:simple-java-example[Simple Java Example]::\nIf you are developing a stand-alone *Java application* that uses none of the logging frameworks supported out-of-the-box, have a look at this example.\nIt shows you how to use the Ctrlflow AER Simple Client to send caught exceptions to your server.\n","new_contents":"Ctrlflow Automated Error Reporting Client Examples\n==================================================\n\nExamples of how to use various clients to communicate with the https:\/\/www.ctrlflow.com\/automated-error-reporting\/[Ctrlflow Automated Error Reporting (AER) server].\n\nAt the moment, the following examples are available:\n\nlink:log4j2-java-example[Log4j 2 Java Example]::\nIf you are developing a stand-alone *Java application* that uses the popular https:\/\/logging.apache.org\/log4j\/2.x\/[*Log4j 2*] logging framework, have a look at this example.\nIt shows you how to configure Log4j 2 to send error reports to a Ctrlflow AER server.\n\nlink:logback-java-example[Logback Java Example]::\nIf you are developing a stand-alone *Java application* that uses the popular http:\/\/logback.qos.ch\/[*Logback*] logging framework, have a look at this example.\nIt shows you how to configure Logback to send error reports to a Ctrlflow AER server.\n\nlink:simple-java-example[Simple Java Example]::\nIf you are developing a stand-alone *Java application* that uses none of the logging frameworks supported out-of-the-box, have a look at this example.\nIt shows you how to use the Ctrlflow AER Simple Client to send caught exceptions to your server.\n","subject":"Fix link to Log4j 2 example","message":"Fix link to Log4j 2 example\n","lang":"AsciiDoc","license":"epl-1.0","repos":"codetrails\/ctrlflow-aer-client-examples"} {"commit":"bcb7c2ad58570f8725430c4c97b6a614cc6d0b85","old_file":"docs\/src\/main\/asciidoc\/intro.adoc","new_file":"docs\/src\/main\/asciidoc\/intro.adoc","old_contents":"This project provides Etcd integrations for Spring Boot apps through autoconfiguration\nand binding to the Spring Environment and other Spring programming model idioms. With a few\nsimple annotations you can quickly enable and configure the common patterns inside your\napplication and build large distributed systems with Etcd based components. The\npatterns provided include Service Discovery, Circuit Breaker and Configuration.\nIntelligent Routing (Zuul) and Client Side Load Balancing (Ribbon) are provided by\nintegration with Spring Cloud Netflix.\n\n","new_contents":"This project provides Etcd integrations for Spring Boot apps through autoconfiguration\nand binding to the Spring Environment and other Spring programming model idioms. With a few\nsimple annotations you can quickly enable and configure the common patterns inside your\napplication and build large distributed systems with Etcd based components. The\npatterns provided include Service Discovery and Configuration.\nIntelligent Routing (Zuul) and Client Side Load Balancing (Ribbon) are provided by\nintegration with Spring Cloud Netflix.\n\n","subject":"Remove reference to \"circuit breaker\"","message":"Remove reference to \"circuit breaker\"\n","lang":"AsciiDoc","license":"apache-2.0","repos":"lburgazzoli\/spring-cloud-etcd,spring-cloud-incubator\/spring-cloud-etcd,spring-cloud-incubator\/spring-cloud-etcd,lburgazzoli\/spring-cloud-etcd"} {"commit":"b49f137c67edec7852b254d22eb0e768c03c64ee","old_file":"docs\/reference\/analysis\/tokenfilters\/keyword-marker-tokenfilter.asciidoc","new_file":"docs\/reference\/analysis\/tokenfilters\/keyword-marker-tokenfilter.asciidoc","old_contents":"[[analysis-keyword-marker-tokenfilter]]\n=== Keyword Marker Token Filter\n\nProtects words from being modified by stemmers. Must be placed before\nany stemming filters.\n\n[cols=\"<,<\",options=\"header\",]\n|=======================================================================\n|Setting |Description\n|`keywords` |A list of words to use.\n\n|`keywords_path` |A path (either relative to `config` location, or\nabsolute) to a list of words.\n\n|`ignore_case` |Set to `true` to lower case all words first. Defaults to\n`false`.\n|=======================================================================\n\nHere is an example:\n\n[source,js]\n--------------------------------------------------\nindex :\n analysis :\n analyzer :\n myAnalyzer :\n type : custom\n tokenizer : standard\n filter : [lowercase, protwods, porter_stem] \n filter :\n protwods :\n type : keyword_marker\n keywords_path : analysis\/protwords.txt\n--------------------------------------------------\n","new_contents":"[[analysis-keyword-marker-tokenfilter]]\n=== Keyword Marker Token Filter\n\nProtects words from being modified by stemmers. Must be placed before\nany stemming filters.\n\n[cols=\"<,<\",options=\"header\",]\n|=======================================================================\n|Setting |Description\n|`keywords` |A list of words to use.\n\n|`keywords_path` |A path (either relative to `config` location, or\nabsolute) to a list of words.\n\n|`ignore_case` |Set to `true` to lower case all words first. Defaults to\n`false`.\n|=======================================================================\n\nHere is an example:\n\n[source,js]\n--------------------------------------------------\nindex :\n analysis :\n analyzer :\n myAnalyzer :\n type : custom\n tokenizer : standard\n filter : [lowercase, protwords, porter_stem] \n filter :\n protwords :\n type : keyword_marker\n keywords_path : analysis\/protwords.txt\n--------------------------------------------------\n","subject":"Fix typo in sample json","message":"Fix typo in sample json\n\nFixes #9253\n","lang":"AsciiDoc","license":"apache-2.0","repos":"fubuki\/elasticsearch,fubuki\/elasticsearch,fubuki\/elasticsearch,aparo\/elasticsearch,aparo\/elasticsearch,aparo\/elasticsearch,aparo\/elasticsearch,fubuki\/elasticsearch,aparo\/elasticsearch,aparo\/elasticsearch,fubuki\/elasticsearch,fubuki\/elasticsearch"} {"commit":"10dbb38a2730e5574db4ea759c1e4701827da926","old_file":"revapi-site\/src\/site\/modules\/news\/pages\/news\/20200614-bugfix-release.adoc","new_file":"revapi-site\/src\/site\/modules\/news\/pages\/news\/20200614-bugfix-release.adoc","old_contents":"== Bugfix Release\n:docname: 20200614-bugfix-release\n:page-publish_date: 2020-06-14\n:page-layout: news-article\n\nThe `revapi-java` extension released a couple of weeks ago contained a rather ugly regression that caused an index out\nof bounds exception on interfaces that override methods from `java.lang.Object`.\n\nThis has now been fixed in the new `0.21.1` version of `revapi-java`. Please upgrade if you have been hit by this bug.\n\n","new_contents":"= Bugfix Release\n:docname: 20200614-bugfix-release\n:page-publish_date: 2020-06-14\n:page-layout: news-article\n\nThe `revapi-java` extension released a couple of weeks ago contained a rather ugly regression that caused an index out\nof bounds exception on interfaces that override methods from `java.lang.Object`.\n\nThis has now been fixed in the new `0.21.1` version of `revapi-java`. Please upgrade if you have been hit by this bug.\n\n","subject":"Fix the news article to start with a top-level header.","message":"Fix the news article to start with a top-level header.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"revapi\/revapi,revapi\/revapi,revapi\/revapi"} {"commit":"d4879fbc3514cb7586f904411a5aa5ec5b8ead86","old_file":"docs\/trouble-shooting.adoc","new_file":"docs\/trouble-shooting.adoc","old_contents":"","new_contents":"== Troubleshooting\n\n[qanda]\nWhy does `Config.setSize(...)` not take effect?::\n The configuration state of a `Config` object is only read in the constructor of the pool, so changing the configuration after the pool has been created has no effect.\n Look at the `ResizablePool` interface for changing the size of an existing pool.\n\nWhy am I getting an `stormpot.PoolException: Slot release from bad state: 1` exception?::\n The slot has already been released.\n Either you are calling the `release` method twice, or you are sharing the `Poolable` instances without the consent of the pool.\n\nMy program won't stop running, or Stormpot leaves a thread running!::\n Stormpot creates a background thread that is non-daemon by default.\n This thread will run until the pool has been shut down with `LifecycledPool#shutdown`, and all the `Poolable` instances in it has been deallocated.\n If you have started the shut down process but it never finishes, then you have probably leaked an object.\n All objects in the pool must be released back to the pool before the shut down can complete.\n\nHow do I find out if I have leaked an object?::\n There are two kinds of leaks: one where the program forgets to `release` an object back to the pool, and one where the program both forgets to `release`, and also forgets the reference to the object, so it becomes garbage collected.\n You can diagnose the first case by taking a heap dump of the running program – possibly after you have initiated the shut down process and waited for it to complete for a little while – and look for any lingering `stormpot.BSlot`, `stormpot.QSlot` objects, or instances of your `Poolable` implementation, and see where they are referenced.\n The precise leak detector will notice the last case, but cannot tell you where in the code the problem is.\n\nWhy are there so many \"Stormpot\" threads in my program?::\n Stormpot starts a thread for every pool instance you create.\n It does not share threads across pool instances.\n\nI'm not allowed to start threads in my environment, or I get an exception about not being able to start a thread when I try to create an pool instance!::\n Some environments restrict the ability to create threads.\n These environments often have a way to get around that restriction, for instance by creating threads with a particular `ThreadGroup` or creating the thread in a particular privileged part of the code.\n Stormpot can be configured to use a specific `ThreadFactory` for creating its threads.\n So giving it a `ThreadFactory` that knows how to create threads in your particular environment, is the way to get around these restrictions.\n","subject":"Write a trouble shooting guide","message":"Write a trouble shooting guide\n","lang":"AsciiDoc","license":"apache-2.0","repos":"chrisvest\/stormpot,chrisvest\/stormpot"} {"commit":"1d82c1aa68b1b7a9e2efb75cdd7dd83899b470bc","old_file":"README.adoc","new_file":"README.adoc","old_contents":"# SAAV\n\nSoftware application to analyse and visualise research output in the humanities and social sciences\n\n# Documentation\n\n* link:CONTRIBUTING.adoc[Development Setup]\n* link:docs\/architecture-and-design.adoc[Architecture & Design]\n* link:docs\/deployment.adoc[Deployment]\n\n# Live\n\nThe latest milestone is deployed via GitHub Pages:\n\n* http:\/\/fhnw-saav.github.io\/saav\/[Live Site] (http:\/\/fhnw-saav.github.io\/saav\/version.txt[inspect current version])\n","new_contents":"# SAAV image:https:\/\/travis-ci.org\/fhnw-saav\/saav.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/fhnw-saav\/saav\"]\n\nSoftware application to analyse and visualise research output in the humanities and social sciences\n\n# Documentation\n\n* link:CONTRIBUTING.adoc[Development Setup]\n* link:docs\/architecture-and-design.adoc[Architecture & Design]\n* link:docs\/deployment.adoc[Deployment]\n\n# Live\n\nThe latest milestone is deployed via GitHub Pages:\n\n* http:\/\/fhnw-saav.github.io\/saav\/[Live Site] (http:\/\/fhnw-saav.github.io\/saav\/version.txt[inspect current version])\n","subject":"Revert \"Remove travis badge until false positives are fixed\"","message":"Revert \"Remove travis badge until false positives are fixed\"\n\nThis reverts commit 9d4ef4e9570c0cab394cf7f52251903aa1679568.\n","lang":"AsciiDoc","license":"mit","repos":"fhnw-saav\/saav"} {"commit":"4ae5c0d93da2e2a9ae5af020e22baad440eab3a4","old_file":"docs\/reference\/search\/request\/fielddata-fields.asciidoc","new_file":"docs\/reference\/search\/request\/fielddata-fields.asciidoc","old_contents":"[[search-request-fielddata-fields]]\n=== Field Data Fields\n\nAllows to return the field data representation of a field for each hit, for\nexample:\n\n[source,js]\n--------------------------------------------------\n{\n \"query\" : {\n ...\n },\n \"fielddata_fields\" : [\"test1\", \"test2\"]\n}\n--------------------------------------------------\n\nField data fields can work on fields that are not stored.\n\nIt's important to understand that using the `fielddata_fields` parameter will\ncause the terms for that field to be loaded to memory (cached), which will\nresult in more memory consumption.\n","new_contents":"[[search-request-fielddata-fields]]\n=== Field Data Fields\n\nAllows to return the <> representation of a field for each hit, for\nexample:\n\n[source,js]\n--------------------------------------------------\n{\n \"query\" : {\n ...\n },\n \"fielddata_fields\" : [\"test1\", \"test2\"]\n}\n--------------------------------------------------\n\nField data fields can work on fields that are not stored.\n\nIt's important to understand that using the `fielddata_fields` parameter will\ncause the terms for that field to be loaded to memory (cached), which will\nresult in more memory consumption.\n","subject":"Add link to field data docs from field data fields","message":"Add link to field data docs from field data fields\n\nThis commit adds a link to the field data docs from the field data\nfields docs for completeness.\n\nCloses #17672\n","lang":"AsciiDoc","license":"apache-2.0","repos":"a2lin\/elasticsearch,gingerwizard\/elasticsearch,fforbeck\/elasticsearch,gfyoung\/elasticsearch,rajanm\/elasticsearch,sneivandt\/elasticsearch,winstonewert\/elasticsearch,myelin\/elasticsearch,myelin\/elasticsearch,wangtuo\/elasticsearch,i-am-Nathan\/elasticsearch,wenpos\/elasticsearch,scorpionvicky\/elasticsearch,Shepard1212\/elasticsearch,gingerwizard\/elasticsearch,geidies\/elasticsearch,fforbeck\/elasticsearch,nezirus\/elasticsearch,dpursehouse\/elasticsearch,JackyMai\/elasticsearch,fred84\/elasticsearch,IanvsPoplicola\/elasticsearch,nezirus\/elasticsearch,LewayneNaidoo\/elasticsearch,JackyMai\/elasticsearch,kalimatas\/elasticsearch,njlawton\/elasticsearch,cwurm\/elasticsearch,JSCooke\/elasticsearch,masaruh\/elasticsearch,glefloch\/elasticsearch,wuranbo\/elasticsearch,naveenhooda2000\/elasticsearch,Stacey-Gammon\/elasticsearch,trangvh\/elasticsearch,wangtuo\/elasticsearch,sreeramjayan\/elasticsearch,dpursehouse\/elasticsearch,umeshdangat\/elasticsearch,JervyShi\/elasticsearch,kalimatas\/elasticsearch,camilojd\/elasticsearch,StefanGor\/elasticsearch,naveenhooda2000\/elasticsearch,zkidkid\/elasticsearch,camilojd\/elasticsearch,scorpionvicky\/elasticsearch,spiegela\/elasticsearch,IanvsPoplicola\/elasticsearch,lks21c\/elasticsearch,JSCooke\/elasticsearch,MaineC\/elasticsearch,obourgain\/elasticsearch,markwalkom\/elasticsearch,lks21c\/elasticsearch,markwalkom\/elasticsearch,maddin2016\/elasticsearch,girirajsharma\/elasticsearch,lks21c\/elasticsearch,camilojd\/elasticsearch,s1monw\/elasticsearch,mohit\/elasticsearch,naveenhooda2000\/elasticsearch,nomoa\/elasticsearch,s1monw\/elasticsearch,artnowo\/elasticsearch,girirajsharma\/elasticsearch,StefanGor\/elasticsearch,JSCooke\/elasticsearch,Shepard1212\/elasticsearch,njlawton\/elasticsearch,zkidkid\/elasticsearch,umeshdangat\/elasticsearch,gmarz\/elasticsearch,henakamaMSFT\/elasticsearch,maddin2016\/elasticsearch,coding0011\/elasticsearch,HonzaKral\/elasticsearch,nilabhsagar\/elasticsearch,mohit\/elasticsearch,nomoa\/elasticsearch,uschindler\/elasticsearch,girirajsharma\/elasticsearch,ricardocerq\/elasticsearch,obourgain\/elasticsearch,fforbeck\/elasticsearch,gfyoung\/elasticsearch,MisterAndersen\/elasticsearch,mjason3\/elasticsearch,GlenRSmith\/elasticsearch,henakamaMSFT\/elasticsearch,rajanm\/elasticsearch,Helen-Zhao\/elasticsearch,gmarz\/elasticsearch,jimczi\/elasticsearch,palecur\/elasticsearch,qwerty4030\/elasticsearch,C-Bish\/elasticsearch,GlenRSmith\/elasticsearch,umeshdangat\/elasticsearch,mjason3\/elasticsearch,alexshadow007\/elasticsearch,LeoYao\/elasticsearch,fred84\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,MaineC\/elasticsearch,nezirus\/elasticsearch,nomoa\/elasticsearch,mikemccand\/elasticsearch,bawse\/elasticsearch,winstonewert\/elasticsearch,ricardocerq\/elasticsearch,kalimatas\/elasticsearch,JervyShi\/elasticsearch,elasticdog\/elasticsearch,bawse\/elasticsearch,pozhidaevak\/elasticsearch,nezirus\/elasticsearch,awislowski\/elasticsearch,gmarz\/elasticsearch,jprante\/elasticsearch,cwurm\/elasticsearch,mohit\/elasticsearch,Stacey-Gammon\/elasticsearch,yanjunh\/elasticsearch,cwurm\/elasticsearch,njlawton\/elasticsearch,sneivandt\/elasticsearch,s1monw\/elasticsearch,nknize\/elasticsearch,sreeramjayan\/elasticsearch,fred84\/elasticsearch,wuranbo\/elasticsearch,robin13\/elasticsearch,strapdata\/elassandra,zkidkid\/elasticsearch,i-am-Nathan\/elasticsearch,ricardocerq\/elasticsearch,Shepard1212\/elasticsearch,liweinan0423\/elasticsearch,obourgain\/elasticsearch,shreejay\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,C-Bish\/elasticsearch,elasticdog\/elasticsearch,wuranbo\/elasticsearch,IanvsPoplicola\/elasticsearch,GlenRSmith\/elasticsearch,HonzaKral\/elasticsearch,sneivandt\/elasticsearch,myelin\/elasticsearch,nknize\/elasticsearch,winstonewert\/elasticsearch,StefanGor\/elasticsearch,sreeramjayan\/elasticsearch,wangtuo\/elasticsearch,lks21c\/elasticsearch,gingerwizard\/elasticsearch,camilojd\/elasticsearch,sneivandt\/elasticsearch,nazarewk\/elasticsearch,camilojd\/elasticsearch,vroyer\/elasticassandra,fernandozhu\/elasticsearch,cwurm\/elasticsearch,yanjunh\/elasticsearch,shreejay\/elasticsearch,mohit\/elasticsearch,strapdata\/elassandra,ricardocerq\/elasticsearch,scorpionvicky\/elasticsearch,wangtuo\/elasticsearch,liweinan0423\/elasticsearch,GlenRSmith\/elasticsearch,spiegela\/elasticsearch,artnowo\/elasticsearch,masaruh\/elasticsearch,scottsom\/elasticsearch,vroyer\/elassandra,LeoYao\/elasticsearch,dpursehouse\/elasticsearch,mjason3\/elasticsearch,Stacey-Gammon\/elasticsearch,trangvh\/elasticsearch,gfyoung\/elasticsearch,scottsom\/elasticsearch,fernandozhu\/elasticsearch,gfyoung\/elasticsearch,maddin2016\/elasticsearch,wenpos\/elasticsearch,henakamaMSFT\/elasticsearch,avikurapati\/elasticsearch,markwalkom\/elasticsearch,qwerty4030\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,HonzaKral\/elasticsearch,IanvsPoplicola\/elasticsearch,rajanm\/elasticsearch,liweinan0423\/elasticsearch,fforbeck\/elasticsearch,fred84\/elasticsearch,girirajsharma\/elasticsearch,MisterAndersen\/elasticsearch,spiegela\/elasticsearch,mjason3\/elasticsearch,mortonsykes\/elasticsearch,mortonsykes\/elasticsearch,liweinan0423\/elasticsearch,gingerwizard\/elasticsearch,winstonewert\/elasticsearch,strapdata\/elassandra,Stacey-Gammon\/elasticsearch,strapdata\/elassandra5-rc,myelin\/elasticsearch,robin13\/elasticsearch,LewayneNaidoo\/elasticsearch,sreeramjayan\/elasticsearch,avikurapati\/elasticsearch,vroyer\/elasticassandra,lks21c\/elasticsearch,coding0011\/elasticsearch,markwalkom\/elasticsearch,rlugojr\/elasticsearch,LewayneNaidoo\/elasticsearch,strapdata\/elassandra,awislowski\/elasticsearch,mjason3\/elasticsearch,JackyMai\/elasticsearch,sneivandt\/elasticsearch,nknize\/elasticsearch,uschindler\/elasticsearch,shreejay\/elasticsearch,mikemccand\/elasticsearch,ZTE-PaaS\/elasticsearch,awislowski\/elasticsearch,awislowski\/elasticsearch,robin13\/elasticsearch,Stacey-Gammon\/elasticsearch,avikurapati\/elasticsearch,Shepard1212\/elasticsearch,mortonsykes\/elasticsearch,IanvsPoplicola\/elasticsearch,MisterAndersen\/elasticsearch,glefloch\/elasticsearch,sreeramjayan\/elasticsearch,masaruh\/elasticsearch,yanjunh\/elasticsearch,nomoa\/elasticsearch,nknize\/elasticsearch,nazarewk\/elasticsearch,rlugojr\/elasticsearch,wuranbo\/elasticsearch,strapdata\/elassandra5-rc,MaineC\/elasticsearch,gingerwizard\/elasticsearch,palecur\/elasticsearch,palecur\/elasticsearch,markwalkom\/elasticsearch,pozhidaevak\/elasticsearch,robin13\/elasticsearch,rajanm\/elasticsearch,elasticdog\/elasticsearch,pozhidaevak\/elasticsearch,awislowski\/elasticsearch,obourgain\/elasticsearch,artnowo\/elasticsearch,ricardocerq\/elasticsearch,s1monw\/elasticsearch,nazarewk\/elasticsearch,alexshadow007\/elasticsearch,brandonkearby\/elasticsearch,scottsom\/elasticsearch,strapdata\/elassandra5-rc,C-Bish\/elasticsearch,geidies\/elasticsearch,a2lin\/elasticsearch,Helen-Zhao\/elasticsearch,njlawton\/elasticsearch,JackyMai\/elasticsearch,scottsom\/elasticsearch,nezirus\/elasticsearch,njlawton\/elasticsearch,liweinan0423\/elasticsearch,gingerwizard\/elasticsearch,LewayneNaidoo\/elasticsearch,mikemccand\/elasticsearch,JervyShi\/elasticsearch,LewayneNaidoo\/elasticsearch,maddin2016\/elasticsearch,umeshdangat\/elasticsearch,mikemccand\/elasticsearch,brandonkearby\/elasticsearch,fernandozhu\/elasticsearch,trangvh\/elasticsearch,bawse\/elasticsearch,coding0011\/elasticsearch,vroyer\/elassandra,scorpionvicky\/elasticsearch,fforbeck\/elasticsearch,a2lin\/elasticsearch,nazarewk\/elasticsearch,nilabhsagar\/elasticsearch,jimczi\/elasticsearch,MaineC\/elasticsearch,avikurapati\/elasticsearch,JervyShi\/elasticsearch,nazarewk\/elasticsearch,elasticdog\/elasticsearch,coding0011\/elasticsearch,ZTE-PaaS\/elasticsearch,MisterAndersen\/elasticsearch,rlugojr\/elasticsearch,jprante\/elasticsearch,girirajsharma\/elasticsearch,bawse\/elasticsearch,C-Bish\/elasticsearch,a2lin\/elasticsearch,masaruh\/elasticsearch,kalimatas\/elasticsearch,henakamaMSFT\/elasticsearch,gmarz\/elasticsearch,artnowo\/elasticsearch,strapdata\/elassandra5-rc,geidies\/elasticsearch,dongjoon-hyun\/elasticsearch,qwerty4030\/elasticsearch,mohit\/elasticsearch,wangtuo\/elasticsearch,uschindler\/elasticsearch,cwurm\/elasticsearch,uschindler\/elasticsearch,markwalkom\/elasticsearch,yanjunh\/elasticsearch,dongjoon-hyun\/elasticsearch,nilabhsagar\/elasticsearch,rlugojr\/elasticsearch,glefloch\/elasticsearch,glefloch\/elasticsearch,Helen-Zhao\/elasticsearch,dpursehouse\/elasticsearch,geidies\/elasticsearch,elasticdog\/elasticsearch,artnowo\/elasticsearch,Helen-Zhao\/elasticsearch,palecur\/elasticsearch,zkidkid\/elasticsearch,spiegela\/elasticsearch,dongjoon-hyun\/elasticsearch,brandonkearby\/elasticsearch,mikemccand\/elasticsearch,brandonkearby\/elasticsearch,i-am-Nathan\/elasticsearch,coding0011\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,vroyer\/elasticassandra,kalimatas\/elasticsearch,strapdata\/elassandra,brandonkearby\/elasticsearch,mortonsykes\/elasticsearch,geidies\/elasticsearch,dpursehouse\/elasticsearch,trangvh\/elasticsearch,robin13\/elasticsearch,C-Bish\/elasticsearch,LeoYao\/elasticsearch,rlugojr\/elasticsearch,myelin\/elasticsearch,pozhidaevak\/elasticsearch,gingerwizard\/elasticsearch,girirajsharma\/elasticsearch,spiegela\/elasticsearch,wenpos\/elasticsearch,uschindler\/elasticsearch,yanjunh\/elasticsearch,StefanGor\/elasticsearch,Shepard1212\/elasticsearch,nilabhsagar\/elasticsearch,s1monw\/elasticsearch,JervyShi\/elasticsearch,fernandozhu\/elasticsearch,MisterAndersen\/elasticsearch,JSCooke\/elasticsearch,JSCooke\/elasticsearch,wuranbo\/elasticsearch,i-am-Nathan\/elasticsearch,bawse\/elasticsearch,alexshadow007\/elasticsearch,fred84\/elasticsearch,HonzaKral\/elasticsearch,ZTE-PaaS\/elasticsearch,naveenhooda2000\/elasticsearch,dongjoon-hyun\/elasticsearch,obourgain\/elasticsearch,shreejay\/elasticsearch,jprante\/elasticsearch,shreejay\/elasticsearch,trangvh\/elasticsearch,strapdata\/elassandra5-rc,rajanm\/elasticsearch,StefanGor\/elasticsearch,LeoYao\/elasticsearch,fernandozhu\/elasticsearch,jprante\/elasticsearch,Helen-Zhao\/elasticsearch,qwerty4030\/elasticsearch,masaruh\/elasticsearch,umeshdangat\/elasticsearch,i-am-Nathan\/elasticsearch,nknize\/elasticsearch,qwerty4030\/elasticsearch,wenpos\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,zkidkid\/elasticsearch,scorpionvicky\/elasticsearch,jimczi\/elasticsearch,glefloch\/elasticsearch,gfyoung\/elasticsearch,ZTE-PaaS\/elasticsearch,a2lin\/elasticsearch,vroyer\/elassandra,henakamaMSFT\/elasticsearch,gmarz\/elasticsearch,JervyShi\/elasticsearch,wenpos\/elasticsearch,scottsom\/elasticsearch,jimczi\/elasticsearch,dongjoon-hyun\/elasticsearch,JackyMai\/elasticsearch,pozhidaevak\/elasticsearch,avikurapati\/elasticsearch,MaineC\/elasticsearch,ZTE-PaaS\/elasticsearch,winstonewert\/elasticsearch,jimczi\/elasticsearch,naveenhooda2000\/elasticsearch,GlenRSmith\/elasticsearch,jprante\/elasticsearch,maddin2016\/elasticsearch,rajanm\/elasticsearch,LeoYao\/elasticsearch,mortonsykes\/elasticsearch,geidies\/elasticsearch,alexshadow007\/elasticsearch,alexshadow007\/elasticsearch,palecur\/elasticsearch,sreeramjayan\/elasticsearch,LeoYao\/elasticsearch,nomoa\/elasticsearch,LeoYao\/elasticsearch,camilojd\/elasticsearch,nilabhsagar\/elasticsearch"} {"commit":"88390a3d7353cf36ea47e49c684a4f44c6885855","old_file":"class_diagram.adoc","new_file":"class_diagram.adoc","old_contents":"= A test for embedding a SVG image\n\n.Caption for a SVG diagram\nimage::Vsw9cGkj8bJjEBr6.svg[width=417]\n\n* I'd like to remove a redundant vertical space between the diagram above and the caption.\n* I suppose Height 275 below is too much.\n\n <<\n \/Name \/Im7\n \/Type \/XObject\n \/Length 29 0 R\n \/Filter \/FlateDecode\n \/Subtype \/Image\n \/Width 417\n \/Height 275\n \/BitsPerComponent 8\n \/ColorSpace \/DeviceGray\n >>\n\nimage::Vsw9cGkj8bJjEBr6.svg[width=417]\n\n* There is still a redundant vertical space even when I do not have a caption, so the redundant space seems to be inside the image.\n\nimage::Vsw9cGkj8bJjEBr6.svg[width=417,height=242]\n\n* However, the diagram becomes too small if I set the height as well as the width.\n* And there still exists a redundant vertical space. I'd like to remove it!\n","new_contents":"= A test for embedding a SVG image\n\n.Caption for a SVG diagram\nimage::Vsw9cGkj8bJjEBr6.svg[]\n\nYou must be add `width` and `height` attributes to the root `` element to avoid\nredundant spaces.\n\nIn the above example, I added `width=\"441.0\" height=\"265.5\"`.\n","subject":"Update explanation about adding width and height to the root svg element","message":"Update explanation about adding width and height to the root svg element\n","lang":"AsciiDoc","license":"mit","repos":"hnakamur\/asciidoctor-fopub-embed-svg-example"} {"commit":"95c7436639298eb9bd764af8c5df0631bf2e4999","old_file":"optaplanner-docs\/src\/main\/asciidoc\/Chapter-Planner_introduction\/Chapter-Planner_introduction.adoc","new_file":"optaplanner-docs\/src\/main\/asciidoc\/Chapter-Planner_introduction\/Chapter-Planner_introduction.adoc","old_contents":"[[plannerIntroduction]]\n= OptaPlanner Introduction\n:doctype: book\n:sectnums:\n:toc: left\n:icons: font\n:experimental:\n:sourcedir: .\n\ninclude::Section-What_is_OptaPlanner.adoc[leveloffset=+2]\n\ninclude::Section-Section-What_is_a_planning_problem.adoc[leveloffset=+2]\n\ninclude::Section-Requirements.adoc[leveloffset=+2]\n\ninclude::Section-Governance.adoc[leveloffset=+2]\n\ninclude::Section-Download_and_run_the_examples.adoc[leveloffset=+2]\n","new_contents":"[[plannerIntroduction]]\n= OptaPlanner Introduction\n:doctype: book\n:sectnums:\n:toc: left\n:icons: font\n:experimental:\n:sourcedir: .\n\ninclude::Section-What_is_OptaPlanner.adoc[]\n\ninclude::Section-What_is_a_planning_problem.adoc[]\n\ninclude::Section-Requirements.adoc[]\n\ninclude::Section-Governance.adoc[]\n\ninclude::Section-Download_and_run_the_examples.adoc[]\n","subject":"Fix leveloffset problem + invalid include problem","message":"Fix leveloffset problem + invalid include problem\n","lang":"AsciiDoc","license":"apache-2.0","repos":"droolsjbpm\/optaplanner,gsheldon\/optaplanner,tkobayas\/optaplanner,baldimir\/optaplanner,gsheldon\/optaplanner,droolsjbpm\/optaplanner,droolsjbpm\/optaplanner,tkobayas\/optaplanner,gsheldon\/optaplanner,baldimir\/optaplanner,baldimir\/optaplanner,tkobayas\/optaplanner,droolsjbpm\/optaplanner,gsheldon\/optaplanner,baldimir\/optaplanner,tkobayas\/optaplanner"} {"commit":"035d209809410507b0da958e325da2b80d993c33","old_file":"doc\/manuals\/osmobts-usermanual.adoc","new_file":"doc\/manuals\/osmobts-usermanual.adoc","old_contents":":gfdl-enabled:\n\nOsmoBTS User Manual\n===================\nHarald Welte \n\ninclude::..\/common\/chapters\/preface.adoc[]\n\ninclude::chapters\/overview.adoc[]\n\ninclude::..\/common\/chapters\/abis.adoc[]\n\ninclude::chapters\/interfaces.adoc[]\n\ninclude::chapters\/control.adoc[]\n\ninclude::..\/common\/chapters\/vty.adoc[]\n\ninclude::..\/common\/chapters\/logging.adoc[]\n\ninclude::chapters\/configuration.adoc[]\n\ninclude::chapters\/dynamic-timeslots.adoc[]\n\ninclude::chapters\/bts-models.adoc[]\n\ninclude::chapters\/architecture.adoc[]\n\ninclude::..\/common\/chapters\/control_if.adoc[]\n\ninclude::..\/common\/chapters\/port_numbers.adoc[]\n\ninclude::..\/common\/chapters\/bibliography.adoc[]\n\ninclude::..\/common\/chapters\/glossary.adoc[]\n\ninclude::..\/common\/chapters\/gfdl.adoc[]\n\n","new_contents":":gfdl-enabled:\n\nOsmoBTS User Manual\n===================\nHarald Welte \n\ninclude::..\/common\/chapters\/preface.adoc[]\n\ninclude::chapters\/overview.adoc[]\n\ninclude::..\/common\/chapters\/abis.adoc[]\n\ninclude::chapters\/interfaces.adoc[]\n\ninclude::chapters\/control.adoc[]\n\ninclude::..\/common\/chapters\/vty.adoc[]\n\ninclude::..\/common\/chapters\/logging.adoc[]\n\ninclude::chapters\/configuration.adoc[]\n\ninclude::chapters\/dynamic-timeslots.adoc[]\n\ninclude::chapters\/bts-models.adoc[]\n\ninclude::chapters\/architecture.adoc[]\n\ninclude::..\/common\/chapters\/trx_if.adoc[]\n\ninclude::..\/common\/chapters\/control_if.adoc[]\n\ninclude::..\/common\/chapters\/port_numbers.adoc[]\n\ninclude::..\/common\/chapters\/bibliography.adoc[]\n\ninclude::..\/common\/chapters\/glossary.adoc[]\n\ninclude::..\/common\/chapters\/gfdl.adoc[]\n","subject":"Introduce chapter trx_if.adoc and add it to OsmoTRX and OsmoBTS","message":"Introduce chapter trx_if.adoc and add it to OsmoTRX and OsmoBTS\n\nThis chapter defines the protocol used between osmo-trx and\nosmo-bts-trx.\n\nMost of the text comes originally from osmo-trx.git\/README, as it's the\nonly known documentation of the protocol other than the code itself.\n\nChange-Id: I56c418eef0f826ae1aadbed5b151fbed241c7885\n","lang":"AsciiDoc","license":"agpl-3.0","repos":"osmocom\/osmo-bts,osmocom\/osmo-bts,osmocom\/osmo-bts"} {"commit":"7d9f04ced61c3fc4685e8f7286f73e8580fc7935","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= JSR 377 - Desktop|Embedded Application API\n\nContains the specification and API sources for link:https:\/\/jcp.org\/en\/jsr\/detail?id=377[JSR-377].\n\n== Additional resources\nlink:http:\/\/jsr377-api.40747.n7.nabble.com[Forum \/ Mailing List]\n","new_contents":"= JSR 377 - Desktop|Embedded Application API\n\nContains the specification and API sources for link:https:\/\/jcp.org\/en\/jsr\/detail?id=377[JSR-377].\n\nimage:https:\/\/badges.gitter.im\/Join%20Chat.svg[Gitter, link=\"https:\/\/gitter.im\/jsr377\/jsr377-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge\"]\n\n== Additional resources\nlink:http:\/\/jsr377-api.40747.n7.nabble.com[Forum \/ Mailing List]\n","subject":"Add a gitter chat badge","message":"Add a gitter chat badge\n","lang":"AsciiDoc","license":"apache-2.0","repos":"jsr377\/jsr377-api"} {"commit":"b2a58db595812b0bc713e0ccc6ce5c1cee8a7011","old_file":"docs\/modules\/ROOT\/pages\/badging.adoc","new_file":"docs\/modules\/ROOT\/pages\/badging.adoc","old_contents":"= Badging Your App\n\nYou can set the badge count on your app's icon using:\n[source,csharp]\n----\nbool SetBadgeCount(int count)\n----\n\n.Parameters\n[cols=\"1,2a\"]\n|===\n|Parameter |Description\n|count |The number to assign as a badge to the application's icon\n|===\n\nThis function will return `true` if it was able to set the badge count for your\napp's icon, or `false` otherwise.\n\nOn Android, this functionality uses the https:\/\/github.com\/leolin310148\/ShortcutBadger[ShortcutBadger library by Leo Sin].\n\n== Known Issues\n\n[cols=\"1,2a\"]\n|===\n|Date |Issue\n\n|October 11, 2018 |Google Nexus and Pixel devices are not supported, because the\nlauncher used does not support badging.\n\nSamsung devices running Android 8+ are not supported (https:\/\/github.com\/leolin310148\/ShortcutBadger\/pull\/268[GitHub Issue]).\n\n[cols=\"1,2a\"]\n!===\n!Since Version !Status\n\n!All Versions !Can't Fix\n!===\n","new_contents":"= Badging Your App\n\nYou can set the badge count on your app's icon using:\n[source,csharp]\n----\nbool SetBadgeCount(int count)\n----\n\n.Parameters\n[cols=\"1,2a\"]\n|===\n|Parameter |Description\n|count |The number to assign as a badge to the application's icon\n|===\n\nThis function will return `true` if it was able to set the badge count for your\napp's icon, or `false` otherwise.\n\nOn Android, this functionality uses the https:\/\/github.com\/leolin310148\/ShortcutBadger[ShortcutBadger library by Leo Sin].\n\n== Known Issues\n\n[cols=\"1,2a\"]\n|===\n|Date |Issue\n\n|October 11, 2018 |Google Nexus and Pixel devices are not supported, because the\nlauncher used does not support badging.\n\nSamsung devices running Android 8+ are not supported (https:\/\/github.com\/leolin310148\/ShortcutBadger\/pull\/268[GitHub Issue]).\n\n[cols=\"1,2a\"]\n!===\n!Since Version !Status\n\n!All Versions !Can't Fix\n!===\n|===\n","subject":"Fix close tag on table","message":"Fix close tag on table\n","lang":"AsciiDoc","license":"apache-2.0","repos":"GoCarrot\/teak-unity,GoCarrot\/teak-unity,GoCarrot\/teak-unity,GoCarrot\/teak-unity,GoCarrot\/teak-unity"} {"commit":"6b8d34a047d378b92af0a088faddf40f9b930d27","old_file":"service_mesh\/v2x\/installing-ossm.adoc","new_file":"service_mesh\/v2x\/installing-ossm.adoc","old_contents":":_content-type: ASSEMBLY\n[id=\"installing-ossm\"]\n= Installing the Operators\ninclude::modules\/ossm-document-attributes.adoc[]\n:context: installing-ossm\n\ntoc::[]\n\nTo install {ProductName}, first install the required Operators on {product-title} and then create a `ServiceMeshControlPlane` resource to deploy the control plane.\n\n.Prerequisites\n* Read the xref:..\/..\/service_mesh\/v2x\/preparing-ossm-installation.adoc#preparing-ossm-installation[Preparing to install {ProductName}] process.\n* An account with the `cluster-admin` role. If you use {product-dedicated}, you must have an account with the `dedicated-admin` role.\n\nThe following steps show how to install a basic instance of {ProductName} on {product-title}.\n\ninclude::modules\/ossm-installation-activities.adoc[leveloffset=+1]\n\n[WARNING]\n====\nDo not install Community versions of the Operators. Community Operators are not supported.\n====\n\ninclude::modules\/ossm-install-ossm-operator.adoc[leveloffset=+1]\n\n== Next steps\n\nCreate a `ServiceMeshControlPlane` resource to configure the components of {ProductShortName}. For more information, see xref:..\/..\/service_mesh\/v2x\/ossm-create-smcp.adoc#ossm-create-smcp[Creating the ServiceMeshControlPlane].\n","new_contents":":_content-type: ASSEMBLY\n[id=\"installing-ossm\"]\n= Installing the Operators\ninclude::modules\/ossm-document-attributes.adoc[]\n:context: installing-ossm\n\ntoc::[]\n\nTo install {ProductName}, first install the required Operators on {product-title} and then create a `ServiceMeshControlPlane` resource to deploy the control plane.\n\n[NOTE]\n====\nThis basic installation is configured based on the default OpenShift settings and is not designed for production use.  Use this default installation to verify your installation, and then configure your service mesh for your specific environment.\n====\n\n.Prerequisites\n* Read the xref:..\/..\/service_mesh\/v2x\/preparing-ossm-installation.adoc#preparing-ossm-installation[Preparing to install {ProductName}] process.\n* An account with the `cluster-admin` role. If you use {product-dedicated}, you must have an account with the `dedicated-admin` role.\n\nThe following steps show how to install a basic instance of {ProductName} on {product-title}.\n\ninclude::modules\/ossm-installation-activities.adoc[leveloffset=+1]\n\n[WARNING]\n====\nDo not install Community versions of the Operators. Community Operators are not supported.\n====\n\ninclude::modules\/ossm-install-ossm-operator.adoc[leveloffset=+1]\n\n== Next steps\n\nCreate a `ServiceMeshControlPlane` resource to configure the components of {ProductShortName}. For more information, see xref:..\/..\/service_mesh\/v2x\/ossm-create-smcp.adoc#ossm-create-smcp[Creating the ServiceMeshControlPlane].\n","subject":"Add admonition to overview of Installing the Operators topic","message":"OSSMDOC-363: Add admonition to overview of Installing the Operators topic\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"ecbc7774ca473e63b6e89e0de4213adb430283db","old_file":"docs\/reference\/query-dsl\/match-all-query.asciidoc","new_file":"docs\/reference\/query-dsl\/match-all-query.asciidoc","old_contents":"[[query-dsl-match-all-query]]\n== Match All Query\n\nThe most simple query, which matches all documents, giving them all a `_score`\nof `1.0`.\n\n[source,js]\n--------------------------------------------------\n{ \"match_all\": {} }\n--------------------------------------------------\n\nThe `_score` can be changed with the `boost` parameter:\n\n[source,js]\n--------------------------------------------------\n{ \"match_all\": { \"boost\" : 1.2 }}\n--------------------------------------------------\n","new_contents":"[[query-dsl-match-all-query]]\n== Match All Query\n\nThe most simple query, which matches all documents, giving them all a `_score`\nof `1.0`.\n\n[source,js]\n--------------------------------------------------\n{ \"match_all\": {} }\n--------------------------------------------------\n\nThe `_score` can be changed with the `boost` parameter:\n\n[source,js]\n--------------------------------------------------\n{ \"match_all\": { \"boost\" : 1.2 }}\n--------------------------------------------------\n\n[[query-dsl-match-none-query]]\n[float]\n== Match None Query\n\nThis is the inverse of the `match_all` query, which matches no documents.\n\n[source,js]\n--------------------------------------------------\n{ \"match_none\": {} }\n--------------------------------------------------\n","subject":"Add query to Query DSL documentation","message":"Docs: Add query to Query DSL documentation\n\nWe already introduced the MatchNoneQueryBuilder query that does not\nreturn any documents, mainly because we needed it for internal\nrepresentation of the NONE option in the IndicesQueryBuilder.\nHowever, the query was requested at least once also for the query dsl,\nand since we can parser it already we should document it as\n`match_none` query in the relevant reference docs as well.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"sneivandt\/elasticsearch,F0lha\/elasticsearch,MaineC\/elasticsearch,girirajsharma\/elasticsearch,yanjunh\/elasticsearch,shreejay\/elasticsearch,s1monw\/elasticsearch,markwalkom\/elasticsearch,avikurapati\/elasticsearch,masaruh\/elasticsearch,jpountz\/elasticsearch,JackyMai\/elasticsearch,i-am-Nathan\/elasticsearch,clintongormley\/elasticsearch,ivansun1010\/elasticsearch,bawse\/elasticsearch,xuzha\/elasticsearch,dongjoon-hyun\/elasticsearch,njlawton\/elasticsearch,rhoml\/elasticsearch,cwurm\/elasticsearch,GlenRSmith\/elasticsearch,maddin2016\/elasticsearch,rmuir\/elasticsearch,i-am-Nathan\/elasticsearch,qwerty4030\/elasticsearch,myelin\/elasticsearch,wenpos\/elasticsearch,ivansun1010\/elasticsearch,tebriel\/elasticsearch,spiegela\/elasticsearch,HonzaKral\/elasticsearch,rajanm\/elasticsearch,gfyoung\/elasticsearch,fred84\/elasticsearch,jpountz\/elasticsearch,LewayneNaidoo\/elasticsearch,gingerwizard\/elasticsearch,ZTE-PaaS\/elasticsearch,ESamir\/elasticsearch,xuzha\/elasticsearch,jprante\/elasticsearch,sreeramjayan\/elasticsearch,StefanGor\/elasticsearch,GlenRSmith\/elasticsearch,mapr\/elasticsearch,C-Bish\/elasticsearch,LeoYao\/elasticsearch,dongjoon-hyun\/elasticsearch,rhoml\/elasticsearch,brandonkearby\/elasticsearch,JackyMai\/elasticsearch,zkidkid\/elasticsearch,F0lha\/elasticsearch,rhoml\/elasticsearch,jprante\/elasticsearch,davidvgalbraith\/elasticsearch,AndreKR\/elasticsearch,davidvgalbraith\/elasticsearch,Shepard1212\/elasticsearch,brandonkearby\/elasticsearch,cwurm\/elasticsearch,diendt\/elasticsearch,Shepard1212\/elasticsearch,tebriel\/elasticsearch,andrejserafim\/elasticsearch,wuranbo\/elasticsearch,naveenhooda2000\/elasticsearch,JervyShi\/elasticsearch,brandonkearby\/elasticsearch,palecur\/elasticsearch,uschindler\/elasticsearch,Helen-Zhao\/elasticsearch,zkidkid\/elasticsearch,mjason3\/elasticsearch,umeshdangat\/elasticsearch,camilojd\/elasticsearch,LeoYao\/elasticsearch,andrejserafim\/elasticsearch,nknize\/elasticsearch,glefloch\/elasticsearch,masaruh\/elasticsearch,henakamaMSFT\/elasticsearch,scottsom\/elasticsearch,umeshdangat\/elasticsearch,tebriel\/elasticsearch,markharwood\/elasticsearch,mmaracic\/elasticsearch,dpursehouse\/elasticsearch,MisterAndersen\/elasticsearch,markharwood\/elasticsearch,fred84\/elasticsearch,mmaracic\/elasticsearch,clintongormley\/elasticsearch,JackyMai\/elasticsearch,xuzha\/elasticsearch,gingerwizard\/elasticsearch,yanjunh\/elasticsearch,nomoa\/elasticsearch,liweinan0423\/elasticsearch,Shepard1212\/elasticsearch,jimczi\/elasticsearch,lks21c\/elasticsearch,sneivandt\/elasticsearch,HonzaKral\/elasticsearch,snikch\/elasticsearch,ricardocerq\/elasticsearch,Stacey-Gammon\/elasticsearch,yynil\/elasticsearch,ZTE-PaaS\/elasticsearch,masaruh\/elasticsearch,xuzha\/elasticsearch,IanvsPoplicola\/elasticsearch,cwurm\/elasticsearch,vroyer\/elassandra,artnowo\/elasticsearch,Shepard1212\/elasticsearch,coding0011\/elasticsearch,winstonewert\/elasticsearch,ivansun1010\/elasticsearch,avikurapati\/elasticsearch,scorpionvicky\/elasticsearch,ricardocerq\/elasticsearch,lks21c\/elasticsearch,njlawton\/elasticsearch,awislowski\/elasticsearch,andrejserafim\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,awislowski\/elasticsearch,sneivandt\/elasticsearch,wenpos\/elasticsearch,obourgain\/elasticsearch,glefloch\/elasticsearch,mortonsykes\/elasticsearch,martinstuga\/elasticsearch,avikurapati\/elasticsearch,sreeramjayan\/elasticsearch,diendt\/elasticsearch,qwerty4030\/elasticsearch,jprante\/elasticsearch,diendt\/elasticsearch,davidvgalbraith\/elasticsearch,kaneshin\/elasticsearch,jchampion\/elasticsearch,wangtuo\/elasticsearch,a2lin\/elasticsearch,dpursehouse\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,scorpionvicky\/elasticsearch,lks21c\/elasticsearch,scottsom\/elasticsearch,strapdata\/elassandra5-rc,myelin\/elasticsearch,jpountz\/elasticsearch,alexshadow007\/elasticsearch,alexshadow007\/elasticsearch,palecur\/elasticsearch,geidies\/elasticsearch,davidvgalbraith\/elasticsearch,dpursehouse\/elasticsearch,LeoYao\/elasticsearch,artnowo\/elasticsearch,vroyer\/elassandra,episerver\/elasticsearch,robin13\/elasticsearch,elasticdog\/elasticsearch,Helen-Zhao\/elasticsearch,alexshadow007\/elasticsearch,yynil\/elasticsearch,trangvh\/elasticsearch,davidvgalbraith\/elasticsearch,jchampion\/elasticsearch,mikemccand\/elasticsearch,strapdata\/elassandra,vroyer\/elassandra,s1monw\/elasticsearch,awislowski\/elasticsearch,GlenRSmith\/elasticsearch,JackyMai\/elasticsearch,snikch\/elasticsearch,pozhidaevak\/elasticsearch,scorpionvicky\/elasticsearch,shreejay\/elasticsearch,ivansun1010\/elasticsearch,njlawton\/elasticsearch,girirajsharma\/elasticsearch,artnowo\/elasticsearch,coding0011\/elasticsearch,liweinan0423\/elasticsearch,MaineC\/elasticsearch,brandonkearby\/elasticsearch,s1monw\/elasticsearch,tebriel\/elasticsearch,ZTE-PaaS\/elasticsearch,jbertouch\/elasticsearch,polyfractal\/elasticsearch,LewayneNaidoo\/elasticsearch,wangtuo\/elasticsearch,mjason3\/elasticsearch,robin13\/elasticsearch,gingerwizard\/elasticsearch,qwerty4030\/elasticsearch,markharwood\/elasticsearch,AndreKR\/elasticsearch,xuzha\/elasticsearch,pozhidaevak\/elasticsearch,coding0011\/elasticsearch,MisterAndersen\/elasticsearch,naveenhooda2000\/elasticsearch,nazarewk\/elasticsearch,andrejserafim\/elasticsearch,zkidkid\/elasticsearch,nezirus\/elasticsearch,glefloch\/elasticsearch,yynil\/elasticsearch,ivansun1010\/elasticsearch,camilojd\/elasticsearch,C-Bish\/elasticsearch,gfyoung\/elasticsearch,awislowski\/elasticsearch,elasticdog\/elasticsearch,shreejay\/elasticsearch,strapdata\/elassandra,clintongormley\/elasticsearch,rmuir\/elasticsearch,pozhidaevak\/elasticsearch,mjason3\/elasticsearch,sneivandt\/elasticsearch,xuzha\/elasticsearch,uschindler\/elasticsearch,dpursehouse\/elasticsearch,trangvh\/elasticsearch,snikch\/elasticsearch,gmarz\/elasticsearch,wangtuo\/elasticsearch,obourgain\/elasticsearch,gmarz\/elasticsearch,camilojd\/elasticsearch,maddin2016\/elasticsearch,jimczi\/elasticsearch,cwurm\/elasticsearch,tebriel\/elasticsearch,strapdata\/elassandra5-rc,nilabhsagar\/elasticsearch,fforbeck\/elasticsearch,scottsom\/elasticsearch,mortonsykes\/elasticsearch,jimczi\/elasticsearch,wangtuo\/elasticsearch,rajanm\/elasticsearch,henakamaMSFT\/elasticsearch,spiegela\/elasticsearch,lks21c\/elasticsearch,fred84\/elasticsearch,artnowo\/elasticsearch,MisterAndersen\/elasticsearch,camilojd\/elasticsearch,ZTE-PaaS\/elasticsearch,vroyer\/elasticassandra,gfyoung\/elasticsearch,zkidkid\/elasticsearch,HonzaKral\/elasticsearch,umeshdangat\/elasticsearch,markharwood\/elasticsearch,naveenhooda2000\/elasticsearch,LeoYao\/elasticsearch,C-Bish\/elasticsearch,nazarewk\/elasticsearch,bawse\/elasticsearch,avikurapati\/elasticsearch,gingerwizard\/elasticsearch,mapr\/elasticsearch,nomoa\/elasticsearch,JSCooke\/elasticsearch,cwurm\/elasticsearch,geidies\/elasticsearch,gingerwizard\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,nknize\/elasticsearch,kalimatas\/elasticsearch,AndreKR\/elasticsearch,brandonkearby\/elasticsearch,rlugojr\/elasticsearch,ESamir\/elasticsearch,scottsom\/elasticsearch,scottsom\/elasticsearch,jbertouch\/elasticsearch,strapdata\/elassandra,sreeramjayan\/elasticsearch,wuranbo\/elasticsearch,nilabhsagar\/elasticsearch,rajanm\/elasticsearch,bawse\/elasticsearch,jbertouch\/elasticsearch,yynil\/elasticsearch,avikurapati\/elasticsearch,uschindler\/elasticsearch,rlugojr\/elasticsearch,MaineC\/elasticsearch,nknize\/elasticsearch,rhoml\/elasticsearch,Stacey-Gammon\/elasticsearch,wangtuo\/elasticsearch,markwalkom\/elasticsearch,jbertouch\/elasticsearch,glefloch\/elasticsearch,wenpos\/elasticsearch,rlugojr\/elasticsearch,coding0011\/elasticsearch,trangvh\/elasticsearch,martinstuga\/elasticsearch,kalimatas\/elasticsearch,nezirus\/elasticsearch,spiegela\/elasticsearch,nomoa\/elasticsearch,robin13\/elasticsearch,Helen-Zhao\/elasticsearch,palecur\/elasticsearch,wuranbo\/elasticsearch,mikemccand\/elasticsearch,robin13\/elasticsearch,kaneshin\/elasticsearch,StefanGor\/elasticsearch,martinstuga\/elasticsearch,jchampion\/elasticsearch,kaneshin\/elasticsearch,fernandozhu\/elasticsearch,ricardocerq\/elasticsearch,njlawton\/elasticsearch,polyfractal\/elasticsearch,gingerwizard\/elasticsearch,JervyShi\/elasticsearch,polyfractal\/elasticsearch,Helen-Zhao\/elasticsearch,AndreKR\/elasticsearch,rhoml\/elasticsearch,nazarewk\/elasticsearch,MisterAndersen\/elasticsearch,jpountz\/elasticsearch,i-am-Nathan\/elasticsearch,masaruh\/elasticsearch,rajanm\/elasticsearch,ricardocerq\/elasticsearch,masaruh\/elasticsearch,IanvsPoplicola\/elasticsearch,a2lin\/elasticsearch,sneivandt\/elasticsearch,strapdata\/elassandra5-rc,nilabhsagar\/elasticsearch,jchampion\/elasticsearch,camilojd\/elasticsearch,kaneshin\/elasticsearch,rmuir\/elasticsearch,davidvgalbraith\/elasticsearch,snikch\/elasticsearch,myelin\/elasticsearch,s1monw\/elasticsearch,diendt\/elasticsearch,andrejserafim\/elasticsearch,fforbeck\/elasticsearch,nezirus\/elasticsearch,gingerwizard\/elasticsearch,mapr\/elasticsearch,zkidkid\/elasticsearch,henakamaMSFT\/elasticsearch,mmaracic\/elasticsearch,girirajsharma\/elasticsearch,girirajsharma\/elasticsearch,scorpionvicky\/elasticsearch,diendt\/elasticsearch,AndreKR\/elasticsearch,markwalkom\/elasticsearch,fernandozhu\/elasticsearch,jpountz\/elasticsearch,mortonsykes\/elasticsearch,fforbeck\/elasticsearch,nezirus\/elasticsearch,mjason3\/elasticsearch,jchampion\/elasticsearch,vroyer\/elasticassandra,StefanGor\/elasticsearch,andrejserafim\/elasticsearch,martinstuga\/elasticsearch,dongjoon-hyun\/elasticsearch,C-Bish\/elasticsearch,rhoml\/elasticsearch,liweinan0423\/elasticsearch,strapdata\/elassandra,gmarz\/elasticsearch,Stacey-Gammon\/elasticsearch,mohit\/elasticsearch,fforbeck\/elasticsearch,yanjunh\/elasticsearch,mikemccand\/elasticsearch,sreeramjayan\/elasticsearch,yynil\/elasticsearch,vroyer\/elasticassandra,LewayneNaidoo\/elasticsearch,episerver\/elasticsearch,mohit\/elasticsearch,naveenhooda2000\/elasticsearch,coding0011\/elasticsearch,mohit\/elasticsearch,episerver\/elasticsearch,robin13\/elasticsearch,ricardocerq\/elasticsearch,JackyMai\/elasticsearch,fforbeck\/elasticsearch,s1monw\/elasticsearch,nilabhsagar\/elasticsearch,nomoa\/elasticsearch,fernandozhu\/elasticsearch,shreejay\/elasticsearch,LewayneNaidoo\/elasticsearch,kalimatas\/elasticsearch,nknize\/elasticsearch,pozhidaevak\/elasticsearch,LeoYao\/elasticsearch,liweinan0423\/elasticsearch,ZTE-PaaS\/elasticsearch,mortonsykes\/elasticsearch,girirajsharma\/elasticsearch,MaineC\/elasticsearch,palecur\/elasticsearch,palecur\/elasticsearch,markharwood\/elasticsearch,nezirus\/elasticsearch,a2lin\/elasticsearch,jprante\/elasticsearch,winstonewert\/elasticsearch,spiegela\/elasticsearch,jbertouch\/elasticsearch,elasticdog\/elasticsearch,clintongormley\/elasticsearch,girirajsharma\/elasticsearch,awislowski\/elasticsearch,F0lha\/elasticsearch,dongjoon-hyun\/elasticsearch,JervyShi\/elasticsearch,liweinan0423\/elasticsearch,StefanGor\/elasticsearch,geidies\/elasticsearch,markwalkom\/elasticsearch,LeoYao\/elasticsearch,i-am-Nathan\/elasticsearch,HonzaKral\/elasticsearch,qwerty4030\/elasticsearch,geidies\/elasticsearch,F0lha\/elasticsearch,kalimatas\/elasticsearch,IanvsPoplicola\/elasticsearch,ESamir\/elasticsearch,GlenRSmith\/elasticsearch,nilabhsagar\/elasticsearch,markwalkom\/elasticsearch,myelin\/elasticsearch,polyfractal\/elasticsearch,Shepard1212\/elasticsearch,clintongormley\/elasticsearch,winstonewert\/elasticsearch,jbertouch\/elasticsearch,maddin2016\/elasticsearch,jimczi\/elasticsearch,rlugojr\/elasticsearch,Stacey-Gammon\/elasticsearch,LeoYao\/elasticsearch,mikemccand\/elasticsearch,pozhidaevak\/elasticsearch,gmarz\/elasticsearch,martinstuga\/elasticsearch,rmuir\/elasticsearch,naveenhooda2000\/elasticsearch,jprante\/elasticsearch,LewayneNaidoo\/elasticsearch,StefanGor\/elasticsearch,winstonewert\/elasticsearch,strapdata\/elassandra,F0lha\/elasticsearch,JSCooke\/elasticsearch,tebriel\/elasticsearch,rajanm\/elasticsearch,diendt\/elasticsearch,bawse\/elasticsearch,shreejay\/elasticsearch,kaneshin\/elasticsearch,wuranbo\/elasticsearch,camilojd\/elasticsearch,sreeramjayan\/elasticsearch,JSCooke\/elasticsearch,polyfractal\/elasticsearch,mapr\/elasticsearch,elasticdog\/elasticsearch,alexshadow007\/elasticsearch,rajanm\/elasticsearch,episerver\/elasticsearch,scorpionvicky\/elasticsearch,winstonewert\/elasticsearch,fernandozhu\/elasticsearch,umeshdangat\/elasticsearch,yanjunh\/elasticsearch,henakamaMSFT\/elasticsearch,mjason3\/elasticsearch,sreeramjayan\/elasticsearch,JSCooke\/elasticsearch,jchampion\/elasticsearch,martinstuga\/elasticsearch,JervyShi\/elasticsearch,yynil\/elasticsearch,GlenRSmith\/elasticsearch,mikemccand\/elasticsearch,wuranbo\/elasticsearch,artnowo\/elasticsearch,mmaracic\/elasticsearch,C-Bish\/elasticsearch,ESamir\/elasticsearch,maddin2016\/elasticsearch,trangvh\/elasticsearch,MisterAndersen\/elasticsearch,nknize\/elasticsearch,mapr\/elasticsearch,JSCooke\/elasticsearch,snikch\/elasticsearch,AndreKR\/elasticsearch,dpursehouse\/elasticsearch,gmarz\/elasticsearch,nazarewk\/elasticsearch,rmuir\/elasticsearch,uschindler\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mortonsykes\/elasticsearch,obourgain\/elasticsearch,gfyoung\/elasticsearch,mmaracic\/elasticsearch,mmaracic\/elasticsearch,Stacey-Gammon\/elasticsearch,MaineC\/elasticsearch,polyfractal\/elasticsearch,rlugojr\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,elasticdog\/elasticsearch,bawse\/elasticsearch,a2lin\/elasticsearch,qwerty4030\/elasticsearch,ESamir\/elasticsearch,strapdata\/elassandra5-rc,snikch\/elasticsearch,mohit\/elasticsearch,obourgain\/elasticsearch,mapr\/elasticsearch,nomoa\/elasticsearch,markwalkom\/elasticsearch,JervyShi\/elasticsearch,episerver\/elasticsearch,mohit\/elasticsearch,jimczi\/elasticsearch,clintongormley\/elasticsearch,spiegela\/elasticsearch,F0lha\/elasticsearch,fernandozhu\/elasticsearch,yanjunh\/elasticsearch,IanvsPoplicola\/elasticsearch,strapdata\/elassandra5-rc,rmuir\/elasticsearch,fred84\/elasticsearch,njlawton\/elasticsearch,umeshdangat\/elasticsearch,dongjoon-hyun\/elasticsearch,glefloch\/elasticsearch,kalimatas\/elasticsearch,markharwood\/elasticsearch,nazarewk\/elasticsearch,JervyShi\/elasticsearch,Helen-Zhao\/elasticsearch,geidies\/elasticsearch,maddin2016\/elasticsearch,wenpos\/elasticsearch,IanvsPoplicola\/elasticsearch,alexshadow007\/elasticsearch,jpountz\/elasticsearch,kaneshin\/elasticsearch,gfyoung\/elasticsearch,fred84\/elasticsearch,i-am-Nathan\/elasticsearch,ESamir\/elasticsearch,geidies\/elasticsearch,lks21c\/elasticsearch,obourgain\/elasticsearch,wenpos\/elasticsearch,a2lin\/elasticsearch,trangvh\/elasticsearch,ivansun1010\/elasticsearch,myelin\/elasticsearch,henakamaMSFT\/elasticsearch,uschindler\/elasticsearch"} {"commit":"e2595ec76fe53f6b93ec20cccd115e31b505e8a2","old_file":"doc\/resources\/doc\/sources\/index.adoc","new_file":"doc\/resources\/doc\/sources\/index.adoc","old_contents":"= Edge Documentation\n\nEdge is a starting point for creating Clojure projects.\nNot sure if Edge is for you? See <>.\n\n== First Steps\n\nAre you new to Edge?\nThis is the place to start!\n\nInstall the tools::\n. link:https:\/\/clojure.org\/guides\/getting_started[Install clj] (<>)\n. <>\n\nDownload Edge::\n. <>\n\n\/\/ Paste Tutorial::\n\/\/ . Creating a new project\n\/\/ . Create paste\n\/\/ . Deploy to Elastic Beanstalk\n\nUseful References::\n. <>\n\n== Topical Guides\n\n. Configuration\n. Components\n. <>\n\n== Release\n\nReleasing your application is an important part of the lifecycle of your project. \nEdge provides multiple mechanisms for making releasing easier.\n\n\/\/ * Packed and unpacked deployments\n* <>\n* <>\n* <>\n\n== The Edge Project\n\n* <>\n* <>\n* Getting help\n* How to get involved\n* License\n","new_contents":"= Edge Documentation\n\nEdge is a starting point for creating Clojure projects.\nNot sure if Edge is for you? See <>.\n\n== First Steps\n\nAre you new to Edge?\nThis is the place to start!\n\nInstall the tools::\n. link:https:\/\/clojure.org\/guides\/getting_started[Install clj] (<>)\n. <>\n\nDownload Edge::\n. <>\n\n\/\/ Paste Tutorial::\n\/\/ . Creating a new project\n\/\/ . Create paste\n\/\/ . Deploy to Elastic Beanstalk\n\nUseful References::\n. <>\n\n== Topical Guides\n\n\/\/. Configuration\n\/\/. Components\n. <>\n\n== Release\n\nReleasing your application is an important part of the lifecycle of your project. \nEdge provides multiple mechanisms for making releasing easier.\n\n\/\/ * Packed and unpacked deployments\n* <>\n* <>\n* <>\n\n== The Edge Project\n\n* <>\n* <>\n\/\/* Getting help\n\/\/* How to get involved\n\/\/* License\n","subject":"Comment out dead links in docs","message":"Comment out dead links in docs\n","lang":"AsciiDoc","license":"mit","repos":"juxt\/edge,juxt\/edge"} {"commit":"ba711af49499a0542b95e55849b7fac53df14bf9","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= JBoss Fuse\n:toc:\n:icons: font\n\nRed Hat JBoss Fuse is a lightweight, flexible integration platform that enables rapid integration\nacross the extended enterprise—on-premise or in the cloud.\n\nBased on Apache Camel, Fuse leverages pattern-based integration, a rich connector catalog, and extensive\ndata transformation capabilities to enables users to integrate anything.\n\n== Development Process\n\nThere are two ways of building JBoss Fuse 7:\n\n* using Jenkins pipeline\n* using plain old Maven\n\n=== Building using Jenkins Pipeline\n\nTO DESCRIBE\n\n=== Building locally using Maven\n\nBasic invocation of `mvn clean install` will build Fuse minimal and full distro. Minimal distribution is\nmaintained only for presentation and test purposes.\n\nWe can enable additional profiles:\n\n* `mvn -Pcs validate` - Run checkstyle checks\n* `mvn -Plicense process-sources` - regenerate license headers in configured files using `license-header.txt`\n* `mvn -Ptest verify` - run integration test inside `fuse-itests` module\n\n(In order to generate license headers and\/or perform checkstyle checks, it's recommended to use `-Plicense,test` and\n`-Pcs,test` respectively).\n","new_contents":"image:https:\/\/img.shields.io\/badge\/stack%20overflow-jbossfuse-red.svg?colorB=cc0000[link=\"https:\/\/stackoverflow.com\/questions\/tagged\/jbossfuse\"]\n\n= JBoss Fuse\n:toc:\n:icons: font\n\nRed Hat JBoss Fuse is a lightweight, flexible integration platform that enables rapid integration\nacross the extended enterprise—on-premise or in the cloud.\n\nBased on Apache Camel, Fuse leverages pattern-based integration, a rich connector catalog, and extensive\ndata transformation capabilities to enables users to integrate anything.\n\n== Development Process\n\nThere are two ways of building JBoss Fuse 7:\n\n* using Jenkins pipeline\n* using plain old Maven\n\n=== Building using Jenkins Pipeline\n\nTO DESCRIBE\n\n=== Building locally using Maven\n\nBasic invocation of `mvn clean install` will build Fuse minimal and full distro. Minimal distribution is\nmaintained only for presentation and test purposes.\n\nWe can enable additional profiles:\n\n* `mvn -Pcs validate` - Run checkstyle checks\n* `mvn -Plicense process-sources` - regenerate license headers in configured files using `license-header.txt`\n* `mvn -Ptest verify` - run integration test inside `fuse-itests` module\n\n(In order to generate license headers and\/or perform checkstyle checks, it's recommended to use `-Plicense,test` and\n`-Pcs,test` respectively).\n","subject":"Add shield link to Stack Overflow","message":"Add shield link to Stack Overflow\n","lang":"AsciiDoc","license":"apache-2.0","repos":"jboss-fuse\/fuse-karaf,jboss-fuse\/fuse-karaf,jboss-fuse\/fuse-karaf"} {"commit":"77d95955245c2aba93ab4298086f274236da3f6e","old_file":"README.adoc","new_file":"README.adoc","old_contents":"Quick-n-dirty PHP router\n========================\n\n[quote]\nA *transitionary* router to help upgrading an old PHP codebase to a more modern\nset of standards.\n\nMore information is available\nhttp:\/\/ciarand.me\/posts\/refactoring-php-part-1\/[on my blog].\n\nUsage\n-----\n\nRequire it in your project:\n\n[source, bash]\ncomposer require 'ciarand\\quick-n-dirty-router' 'dev-master'\n\nMove all your files into a handlers dir:\n\n[source, bash]\n----\n# assuming you're in the webroot\nmkdir ..\/handlers\/\nfind . -name '*.php' | while read file; do\n echo mv \"$file\" \"..\/handlers\/$file\";\ndone;\n----\n\nPut this in an `index.php` file in your web root:\n\n[source, php]\n----\n\n\ne.g.\n\n$ make install\n\n(usually will output an error, so use sudo)\n\n$ sudo make install\n\n(you will then be prompted to input the admins password)\n----\n\n.cd\n----\nUsed to navigate through directories\n\n$ cd \n\n$ cd .. (navigates to previous directory)\n----\n\n.ls\n----\nUsed to list the contents in the current directory\n\n$ ls \n----\n\n.rm\n----\nUsed to delete files or directories\n\n$ rm \n----\n\n.cp\n----\nUsed to make copies of files or directories\n\n$ cp \n----\n\n.mv\n----\nUsed to move or rename files\n\n$ mv (Moves file to target directory)\n\n$ mv (Changes name of the file)\n----\n\n.pwd\n----\nUsed to print the name of the working directory. i.e. Show where you are.\n\n$ pwd\n----\n\n\n","new_contents":"= Basic Command Line Guide\n\nThis is a guide for common command line commands.\n\n\n. `cd` is used to navigate through directories.\nThe usage is `cd `.\nYou can use `..` to go up a level.\n+\n.Example\n----\ncd Documents\/\ncd ..\n----\n\n. `ls` is used to list the contents in the current directory.\nThis command does not normally need any arguments.\n\n. `rm` is used to delete files or directories.\nThe usage is `rm `.\nTo delete directories, add the recursive flag `-r`.\n+\n.Example\n----\nrm hello.txt\nrm -r Documents\/\n----\n\n. `cp` is used to make copies of files or directories.\nThe usage is `cp `.\nTo copy directories, add the recursive flag `-r`.\n+\n.Copying a File Example\n----\ncp hello.txt Documents\/hello.txt\n----\n+\n.Copying a Directory Example\n----\ncp -r Documents\/ Downloads\/\n----\n\n. `mv` is used to move or rename files\nThe usage is `mv `.\nUnlike the other commands, no extra flag is needed to move directories.\n+\n.Moving a File Example\n----\nmv hello.txt Documents\/\n----\n+\n.Renaming a File Example\n----\nmv hello.txt world.txt\n----\n\n. `pwd` is used to print the name of the working directory, in other words, show where you are.\nThis command does not normally need any arguments.\n\n\n. `sudo` can precede a command to act with administrative rights.\nIf you run a command with a permission error, a common fix is to run the same command but with sudo.\n+\n.Example\n----\nsudo mv \/opt\/soarr \/opt\/soar\n----\n+\nBut be warned, because sudo elevates privileges, it can be a security hazard!\n","subject":"Clean up documentation for basic command line guide for accuracy and aeshetics.","message":"Clean up documentation for basic command line guide for accuracy and aeshetics.\n","lang":"AsciiDoc","license":"agpl-3.0","repos":"UCSolarCarTeam\/Recruit-Resources,UCSolarCarTeam\/Recruit-Resources,UCSolarCarTeam\/Recruit-Resources,UCSolarCarTeam\/Recruit-Resources"} {"commit":"cb36b5f565266d8366439ae4a4918a93ce60f034","old_file":"doc\/index.adoc","new_file":"doc\/index.adoc","old_contents":"---\nlayout: documentation\n---\n:title: Muon Java\n:date: 2015-01-05 11:40\n:comments: true\n:sharing: true\n:source-highlighter: pygments\n:toc: right\n:toc-title: Muon Java\n:toclevels: 6\n\n# Muon Java\n\nMuon Java is the implementation of the Muon microservices toolkit, for the Java platform. Muon enables you to easily build\nmicroservices in many languages that have richer, more performant and fully reactive communication semantics and gain access\nto Muon compatible services written in other languages without having to sacrifice the rich semantics or performance.\n\n\n.Contributing\n****\nMuon and the ecosystem services are open source.\nContribute to Muon Java and this documentation at http:\/\/github.com\/muoncore\/muon-java\n****\n\ninclude::java\/SNAPSHOT\/core.adoc[leveloffset=+1]\ninclude::java\/SNAPSHOT\/eventsystem.adoc[leveloffset=+1]\ninclude::java\/SNAPSHOT\/spring.adoc[leveloffset=+1]\ninclude::java\/SNAPSHOT\/extension.adoc[leveloffset=+1]\n","new_contents":"---\nlayout: documentation\n---\n:title: Muon Java\n:date: 2015-01-05 11:40\n:comments: true\n:sharing: true\n:source-highlighter: pygments\n:toc: right\n:toc-title: Muon Java\n:toclevels: 6\n\n:includedir: .\nifdef::env-doc[]\n:includedir: submodules\/java\/doc\nendif::[]\n\n## Muon Java\n\nMuon Java is the implementation of the Muon microservices toolkit, for the Java platform. Muon enables you to easily build\nmicroservices in many languages that have richer, more performant and fully reactive communication semantics and gain access\nto Muon compatible services written in other languages without having to sacrifice the rich semantics or performance.\n\n.Contributing\n****\nMuon and the ecosystem services are open source.\nContribute to Muon Java and this documentation at http:\/\/github.com\/muoncore\/muon-java\n****\n\ninclude::{includedir}\/core.adoc[leveloffset=+1]\ninclude::{includedir}\/eventsystem.adoc[leveloffset=+1]\ninclude::{includedir}\/spring.adoc[leveloffset=+1]\ninclude::{includedir}\/extension.adoc[leveloffset=+1]\n","subject":"Update docs in the documentation project","message":"Update docs in the documentation project\n","lang":"AsciiDoc","license":"apache-2.0","repos":"microserviceux\/muon-java,microserviceux\/muon-java"} {"commit":"b6fab6f749e2ab65a445fea7fbd3858890669c6e","old_file":"README.adoc","new_file":"README.adoc","old_contents":"# Janitor - Keeping your Pocket clean since 2016\nimage:https:\/\/travis-ci.org\/techdev-solutions\/janitor.svg?branch=master[\"Build Status\",link=\"https:\/\/travis-ci.org\/techdev-solutions\/janitor\"]\n\nAn application to perform cleanup work using the https:\/\/getpocket.com[Pocket API].\n\n## API Documentation\nThe documentation for the Kotlin API bindings can be found https:\/\/techdev-solutions.github.io\/janitor\/pocket-api\/[here].","new_contents":"# Janitor image:https:\/\/travis-ci.org\/techdev-solutions\/janitor.svg?branch=master[\"Build Status\",link=\"https:\/\/travis-ci.org\/techdev-solutions\/janitor\"]\n\nAn application to perform cleanup work using the https:\/\/getpocket.com[Pocket API].\n\n## API Documentation\nThe documentation for the Kotlin API bindings can be found https:\/\/techdev-solutions.github.io\/janitor\/pocket-api\/[here].","subject":"Move Travis CI badge again","message":"Move Travis CI badge again\n","lang":"AsciiDoc","license":"apache-2.0","repos":"techdev-solutions\/janitor,techdev-solutions\/janitor"} {"commit":"8ac5a98b87c377e97174f7a279a2f103f458b67d","old_file":"docs\/reference\/migration\/index.asciidoc","new_file":"docs\/reference\/migration\/index.asciidoc","old_contents":"[[breaking-changes]]\n= Breaking changes\n\n[partintro]\n--\nThis section discusses the changes that you need to be aware of when migrating\nyour application from one version of Elasticsearch to another.\n\nAs a general rule:\n\n* Migration between major versions -- e.g. `1.x` to `2.x` --\n requires a <>.\n\n* Migration between minor versions -- e.g. `1.x` to `1.y` -- can be\n performed by <>.\n\nSee <> for more info.\n--\ninclude::migrate_5_0.asciidoc[]\n\ninclude::migrate_2_3.asciidoc[]\n\ninclude::migrate_2_2.asciidoc[]\n\ninclude::migrate_2_1.asciidoc[]\n\ninclude::migrate_2_0.asciidoc[]\n\ninclude::migrate_1_6.asciidoc[]\n\ninclude::migrate_1_4.asciidoc[]\n\ninclude::migrate_1_0.asciidoc[]\n","new_contents":"[[breaking-changes]]\n= Breaking changes\n\n[partintro]\n--\nThis section discusses the changes that you need to be aware of when migrating\nyour application from one version of Elasticsearch to another.\n\nAs a general rule:\n\n* Migration between major versions -- e.g. `1.x` to `2.x` --\n requires a <>.\n\n* Migration between minor versions -- e.g. `1.x` to `1.y` -- can be\n performed by <>.\n\nSee <> for more info.\n--\ninclude::migrate_5_0.asciidoc[]\n","subject":"Remove links to nonexistent migration docs","message":"Remove links to nonexistent migration docs\n","lang":"AsciiDoc","license":"apache-2.0","repos":"mjason3\/elasticsearch,xuzha\/elasticsearch,fred84\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,scorpionvicky\/elasticsearch,ricardocerq\/elasticsearch,MaineC\/elasticsearch,alexshadow007\/elasticsearch,vroyer\/elassandra,MisterAndersen\/elasticsearch,Stacey-Gammon\/elasticsearch,elasticdog\/elasticsearch,yanjunh\/elasticsearch,sneivandt\/elasticsearch,avikurapati\/elasticsearch,geidies\/elasticsearch,fforbeck\/elasticsearch,masaruh\/elasticsearch,MisterAndersen\/elasticsearch,i-am-Nathan\/elasticsearch,Shepard1212\/elasticsearch,nknize\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,fernandozhu\/elasticsearch,gfyoung\/elasticsearch,Helen-Zhao\/elasticsearch,obourgain\/elasticsearch,cwurm\/elasticsearch,glefloch\/elasticsearch,jprante\/elasticsearch,mmaracic\/elasticsearch,palecur\/elasticsearch,qwerty4030\/elasticsearch,nomoa\/elasticsearch,rajanm\/elasticsearch,mikemccand\/elasticsearch,strapdata\/elassandra5-rc,elasticdog\/elasticsearch,fred84\/elasticsearch,i-am-Nathan\/elasticsearch,JervyShi\/elasticsearch,s1monw\/elasticsearch,StefanGor\/elasticsearch,robin13\/elasticsearch,yanjunh\/elasticsearch,girirajsharma\/elasticsearch,henakamaMSFT\/elasticsearch,markwalkom\/elasticsearch,umeshdangat\/elasticsearch,GlenRSmith\/elasticsearch,artnowo\/elasticsearch,yynil\/elasticsearch,IanvsPoplicola\/elasticsearch,JervyShi\/elasticsearch,mortonsykes\/elasticsearch,ricardocerq\/elasticsearch,masaruh\/elasticsearch,myelin\/elasticsearch,masaruh\/elasticsearch,brandonkearby\/elasticsearch,girirajsharma\/elasticsearch,nomoa\/elasticsearch,s1monw\/elasticsearch,bawse\/elasticsearch,winstonewert\/elasticsearch,jprante\/elasticsearch,mortonsykes\/elasticsearch,sreeramjayan\/elasticsearch,scottsom\/elasticsearch,strapdata\/elassandra5-rc,fernandozhu\/elasticsearch,HonzaKral\/elasticsearch,JervyShi\/elasticsearch,pozhidaevak\/elasticsearch,alexshadow007\/elasticsearch,GlenRSmith\/elasticsearch,sreeramjayan\/elasticsearch,wuranbo\/elasticsearch,liweinan0423\/elasticsearch,awislowski\/elasticsearch,avikurapati\/elasticsearch,pozhidaevak\/elasticsearch,markwalkom\/elasticsearch,MaineC\/elasticsearch,uschindler\/elasticsearch,qwerty4030\/elasticsearch,jprante\/elasticsearch,jimczi\/elasticsearch,gmarz\/elasticsearch,JackyMai\/elasticsearch,JSCooke\/elasticsearch,dpursehouse\/elasticsearch,njlawton\/elasticsearch,zkidkid\/elasticsearch,clintongormley\/elasticsearch,trangvh\/elasticsearch,artnowo\/elasticsearch,gmarz\/elasticsearch,a2lin\/elasticsearch,mmaracic\/elasticsearch,obourgain\/elasticsearch,LewayneNaidoo\/elasticsearch,LeoYao\/elasticsearch,njlawton\/elasticsearch,maddin2016\/elasticsearch,fforbeck\/elasticsearch,nknize\/elasticsearch,elasticdog\/elasticsearch,cwurm\/elasticsearch,a2lin\/elasticsearch,LewayneNaidoo\/elasticsearch,clintongormley\/elasticsearch,dpursehouse\/elasticsearch,liweinan0423\/elasticsearch,Shepard1212\/elasticsearch,clintongormley\/elasticsearch,LeoYao\/elasticsearch,shreejay\/elasticsearch,spiegela\/elasticsearch,kalimatas\/elasticsearch,nazarewk\/elasticsearch,jprante\/elasticsearch,uschindler\/elasticsearch,Helen-Zhao\/elasticsearch,IanvsPoplicola\/elasticsearch,yynil\/elasticsearch,camilojd\/elasticsearch,vroyer\/elasticassandra,palecur\/elasticsearch,HonzaKral\/elasticsearch,camilojd\/elasticsearch,nomoa\/elasticsearch,cwurm\/elasticsearch,mohit\/elasticsearch,strapdata\/elassandra5-rc,lks21c\/elasticsearch,wuranbo\/elasticsearch,s1monw\/elasticsearch,vroyer\/elasticassandra,GlenRSmith\/elasticsearch,nknize\/elasticsearch,a2lin\/elasticsearch,girirajsharma\/elasticsearch,mohit\/elasticsearch,camilojd\/elasticsearch,girirajsharma\/elasticsearch,nezirus\/elasticsearch,mmaracic\/elasticsearch,LeoYao\/elasticsearch,vroyer\/elasticassandra,MaineC\/elasticsearch,pozhidaevak\/elasticsearch,njlawton\/elasticsearch,MisterAndersen\/elasticsearch,girirajsharma\/elasticsearch,masaruh\/elasticsearch,avikurapati\/elasticsearch,mmaracic\/elasticsearch,scottsom\/elasticsearch,yynil\/elasticsearch,rajanm\/elasticsearch,mjason3\/elasticsearch,naveenhooda2000\/elasticsearch,jimczi\/elasticsearch,liweinan0423\/elasticsearch,mikemccand\/elasticsearch,wenpos\/elasticsearch,rlugojr\/elasticsearch,strapdata\/elassandra5-rc,umeshdangat\/elasticsearch,jimczi\/elasticsearch,bawse\/elasticsearch,maddin2016\/elasticsearch,C-Bish\/elasticsearch,i-am-Nathan\/elasticsearch,scorpionvicky\/elasticsearch,strapdata\/elassandra,a2lin\/elasticsearch,mapr\/elasticsearch,strapdata\/elassandra,JSCooke\/elasticsearch,clintongormley\/elasticsearch,gingerwizard\/elasticsearch,girirajsharma\/elasticsearch,fred84\/elasticsearch,mohit\/elasticsearch,dongjoon-hyun\/elasticsearch,camilojd\/elasticsearch,sreeramjayan\/elasticsearch,coding0011\/elasticsearch,ZTE-PaaS\/elasticsearch,winstonewert\/elasticsearch,trangvh\/elasticsearch,JervyShi\/elasticsearch,mapr\/elasticsearch,wangtuo\/elasticsearch,geidies\/elasticsearch,nezirus\/elasticsearch,henakamaMSFT\/elasticsearch,nazarewk\/elasticsearch,xuzha\/elasticsearch,spiegela\/elasticsearch,winstonewert\/elasticsearch,markwalkom\/elasticsearch,uschindler\/elasticsearch,rajanm\/elasticsearch,robin13\/elasticsearch,njlawton\/elasticsearch,sneivandt\/elasticsearch,obourgain\/elasticsearch,uschindler\/elasticsearch,myelin\/elasticsearch,kalimatas\/elasticsearch,sreeramjayan\/elasticsearch,bawse\/elasticsearch,spiegela\/elasticsearch,naveenhooda2000\/elasticsearch,strapdata\/elassandra5-rc,markwalkom\/elasticsearch,jimczi\/elasticsearch,alexshadow007\/elasticsearch,mohit\/elasticsearch,s1monw\/elasticsearch,wenpos\/elasticsearch,brandonkearby\/elasticsearch,zkidkid\/elasticsearch,henakamaMSFT\/elasticsearch,palecur\/elasticsearch,pozhidaevak\/elasticsearch,lks21c\/elasticsearch,i-am-Nathan\/elasticsearch,artnowo\/elasticsearch,C-Bish\/elasticsearch,kalimatas\/elasticsearch,glefloch\/elasticsearch,gfyoung\/elasticsearch,brandonkearby\/elasticsearch,dpursehouse\/elasticsearch,maddin2016\/elasticsearch,gfyoung\/elasticsearch,Stacey-Gammon\/elasticsearch,GlenRSmith\/elasticsearch,wangtuo\/elasticsearch,pozhidaevak\/elasticsearch,clintongormley\/elasticsearch,rajanm\/elasticsearch,naveenhooda2000\/elasticsearch,mjason3\/elasticsearch,mapr\/elasticsearch,ZTE-PaaS\/elasticsearch,ricardocerq\/elasticsearch,nezirus\/elasticsearch,gingerwizard\/elasticsearch,rajanm\/elasticsearch,nknize\/elasticsearch,nilabhsagar\/elasticsearch,cwurm\/elasticsearch,gingerwizard\/elasticsearch,myelin\/elasticsearch,Stacey-Gammon\/elasticsearch,geidies\/elasticsearch,palecur\/elasticsearch,zkidkid\/elasticsearch,fernandozhu\/elasticsearch,gmarz\/elasticsearch,MisterAndersen\/elasticsearch,ricardocerq\/elasticsearch,nknize\/elasticsearch,njlawton\/elasticsearch,palecur\/elasticsearch,zkidkid\/elasticsearch,dongjoon-hyun\/elasticsearch,wenpos\/elasticsearch,dpursehouse\/elasticsearch,Shepard1212\/elasticsearch,vroyer\/elassandra,geidies\/elasticsearch,markwalkom\/elasticsearch,yanjunh\/elasticsearch,fred84\/elasticsearch,qwerty4030\/elasticsearch,Helen-Zhao\/elasticsearch,robin13\/elasticsearch,mortonsykes\/elasticsearch,mjason3\/elasticsearch,LewayneNaidoo\/elasticsearch,coding0011\/elasticsearch,camilojd\/elasticsearch,trangvh\/elasticsearch,StefanGor\/elasticsearch,alexshadow007\/elasticsearch,rlugojr\/elasticsearch,uschindler\/elasticsearch,coding0011\/elasticsearch,fforbeck\/elasticsearch,gfyoung\/elasticsearch,i-am-Nathan\/elasticsearch,ZTE-PaaS\/elasticsearch,xuzha\/elasticsearch,StefanGor\/elasticsearch,scorpionvicky\/elasticsearch,mohit\/elasticsearch,coding0011\/elasticsearch,dongjoon-hyun\/elasticsearch,HonzaKral\/elasticsearch,glefloch\/elasticsearch,myelin\/elasticsearch,camilojd\/elasticsearch,IanvsPoplicola\/elasticsearch,gingerwizard\/elasticsearch,fernandozhu\/elasticsearch,fforbeck\/elasticsearch,LewayneNaidoo\/elasticsearch,scottsom\/elasticsearch,mapr\/elasticsearch,naveenhooda2000\/elasticsearch,awislowski\/elasticsearch,sreeramjayan\/elasticsearch,C-Bish\/elasticsearch,gingerwizard\/elasticsearch,sneivandt\/elasticsearch,Helen-Zhao\/elasticsearch,IanvsPoplicola\/elasticsearch,JervyShi\/elasticsearch,lks21c\/elasticsearch,Stacey-Gammon\/elasticsearch,kalimatas\/elasticsearch,sneivandt\/elasticsearch,brandonkearby\/elasticsearch,gmarz\/elasticsearch,wuranbo\/elasticsearch,Helen-Zhao\/elasticsearch,mjason3\/elasticsearch,wangtuo\/elasticsearch,shreejay\/elasticsearch,ricardocerq\/elasticsearch,xuzha\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mikemccand\/elasticsearch,elasticdog\/elasticsearch,vroyer\/elassandra,strapdata\/elassandra,kalimatas\/elasticsearch,JackyMai\/elasticsearch,avikurapati\/elasticsearch,henakamaMSFT\/elasticsearch,ZTE-PaaS\/elasticsearch,wenpos\/elasticsearch,mmaracic\/elasticsearch,mikemccand\/elasticsearch,MaineC\/elasticsearch,scorpionvicky\/elasticsearch,umeshdangat\/elasticsearch,liweinan0423\/elasticsearch,winstonewert\/elasticsearch,StefanGor\/elasticsearch,bawse\/elasticsearch,mapr\/elasticsearch,brandonkearby\/elasticsearch,sreeramjayan\/elasticsearch,awislowski\/elasticsearch,yanjunh\/elasticsearch,shreejay\/elasticsearch,yynil\/elasticsearch,markwalkom\/elasticsearch,Stacey-Gammon\/elasticsearch,LeoYao\/elasticsearch,JackyMai\/elasticsearch,JervyShi\/elasticsearch,spiegela\/elasticsearch,obourgain\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,a2lin\/elasticsearch,nomoa\/elasticsearch,artnowo\/elasticsearch,sneivandt\/elasticsearch,scottsom\/elasticsearch,mmaracic\/elasticsearch,masaruh\/elasticsearch,awislowski\/elasticsearch,wangtuo\/elasticsearch,spiegela\/elasticsearch,LeoYao\/elasticsearch,naveenhooda2000\/elasticsearch,nomoa\/elasticsearch,jimczi\/elasticsearch,JackyMai\/elasticsearch,elasticdog\/elasticsearch,JSCooke\/elasticsearch,MisterAndersen\/elasticsearch,scorpionvicky\/elasticsearch,scottsom\/elasticsearch,gingerwizard\/elasticsearch,StefanGor\/elasticsearch,avikurapati\/elasticsearch,shreejay\/elasticsearch,qwerty4030\/elasticsearch,wuranbo\/elasticsearch,nezirus\/elasticsearch,cwurm\/elasticsearch,robin13\/elasticsearch,GlenRSmith\/elasticsearch,bawse\/elasticsearch,dpursehouse\/elasticsearch,mapr\/elasticsearch,trangvh\/elasticsearch,awislowski\/elasticsearch,mortonsykes\/elasticsearch,maddin2016\/elasticsearch,geidies\/elasticsearch,MaineC\/elasticsearch,geidies\/elasticsearch,nilabhsagar\/elasticsearch,henakamaMSFT\/elasticsearch,nazarewk\/elasticsearch,rlugojr\/elasticsearch,IanvsPoplicola\/elasticsearch,trangvh\/elasticsearch,mikemccand\/elasticsearch,maddin2016\/elasticsearch,clintongormley\/elasticsearch,nilabhsagar\/elasticsearch,wuranbo\/elasticsearch,LeoYao\/elasticsearch,glefloch\/elasticsearch,rajanm\/elasticsearch,xuzha\/elasticsearch,nezirus\/elasticsearch,JSCooke\/elasticsearch,nilabhsagar\/elasticsearch,wenpos\/elasticsearch,shreejay\/elasticsearch,C-Bish\/elasticsearch,fernandozhu\/elasticsearch,artnowo\/elasticsearch,Shepard1212\/elasticsearch,robin13\/elasticsearch,strapdata\/elassandra,qwerty4030\/elasticsearch,JackyMai\/elasticsearch,strapdata\/elassandra,umeshdangat\/elasticsearch,dongjoon-hyun\/elasticsearch,JSCooke\/elasticsearch,Shepard1212\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,winstonewert\/elasticsearch,ZTE-PaaS\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,wangtuo\/elasticsearch,liweinan0423\/elasticsearch,yynil\/elasticsearch,C-Bish\/elasticsearch,HonzaKral\/elasticsearch,fred84\/elasticsearch,gfyoung\/elasticsearch,myelin\/elasticsearch,nazarewk\/elasticsearch,LewayneNaidoo\/elasticsearch,gmarz\/elasticsearch,xuzha\/elasticsearch,nilabhsagar\/elasticsearch,yanjunh\/elasticsearch,rlugojr\/elasticsearch,umeshdangat\/elasticsearch,jprante\/elasticsearch,obourgain\/elasticsearch,alexshadow007\/elasticsearch,rlugojr\/elasticsearch,gingerwizard\/elasticsearch,fforbeck\/elasticsearch,lks21c\/elasticsearch,glefloch\/elasticsearch,yynil\/elasticsearch,LeoYao\/elasticsearch,coding0011\/elasticsearch,s1monw\/elasticsearch,mortonsykes\/elasticsearch,lks21c\/elasticsearch,zkidkid\/elasticsearch,dongjoon-hyun\/elasticsearch,nazarewk\/elasticsearch"} {"commit":"887bd0a9c2905e0ecadc058c2339d24d35cb6ce5","old_file":"docs\/reference\/indices\/get-mapping.asciidoc","new_file":"docs\/reference\/indices\/get-mapping.asciidoc","old_contents":"[[indices-get-mapping]]\n== Get Mapping\n\nThe get mapping API allows to retrieve mapping definitions for an index or\nindex\/type.\n\n[source,js]\n--------------------------------------------------\ncurl -XGET 'http:\/\/localhost:9200\/twitter\/_mapping\/tweet'\n--------------------------------------------------\n\n[float]\n=== Multiple Indices and Types\n\nThe get mapping API can be used to get more than one index or type\nmapping with a single call. General usage of the API follows the\nfollowing syntax: `host:port\/{index}\/{type}\/_mapping` where both\n`{index}` and `{type}` can accept a comma-separated list of names. To\nget mappings for all indices you can use `_all` for `{index}`. The\nfollowing are some examples:\n\n[source,js]\n--------------------------------------------------\ncurl -XGET 'http:\/\/localhost:9200\/_mapping\/twitter,kimchy'\n\ncurl -XGET 'http:\/\/localhost:9200\/_all\/_mapping\/tweet,book'\n--------------------------------------------------\n\nIf you want to get mappings of all indices and types then the following\ntwo examples are equivalent:\n\n[source,js]\n--------------------------------------------------\ncurl -XGET 'http:\/\/localhost:9200\/_all\/_mapping'\n\ncurl -XGET 'http:\/\/localhost:9200\/_mapping'\n--------------------------------------------------\n","new_contents":"[[indices-get-mapping]]\n== Get Mapping\n\nThe get mapping API allows to retrieve mapping definitions for an index or\nindex\/type.\n\n[source,js]\n--------------------------------------------------\ncurl -XGET 'http:\/\/localhost:9200\/twitter\/_mapping\/tweet'\n--------------------------------------------------\n\n[float]\n=== Multiple Indices and Types\n\nThe get mapping API can be used to get more than one index or type\nmapping with a single call. General usage of the API follows the\nfollowing syntax: `host:port\/{index}\/_mapping\/{type}` where both\n`{index}` and `{type}` can accept a comma-separated list of names. To\nget mappings for all indices you can use `_all` for `{index}`. The\nfollowing are some examples:\n\n[source,js]\n--------------------------------------------------\ncurl -XGET 'http:\/\/localhost:9200\/_mapping\/twitter,kimchy'\n\ncurl -XGET 'http:\/\/localhost:9200\/_all\/_mapping\/tweet,book'\n--------------------------------------------------\n\nIf you want to get mappings of all indices and types then the following\ntwo examples are equivalent:\n\n[source,js]\n--------------------------------------------------\ncurl -XGET 'http:\/\/localhost:9200\/_all\/_mapping'\n\ncurl -XGET 'http:\/\/localhost:9200\/_mapping'\n--------------------------------------------------\n","subject":"Update to the new {index}\/_mapping\/{type} format","message":"[DOCS] Update to the new {index}\/_mapping\/{type} format","lang":"AsciiDoc","license":"apache-2.0","repos":"18098924759\/elasticsearch,kubum\/elasticsearch,AleksKochev\/elasticsearch,iamjakob\/elasticsearch,amaliujia\/elasticsearch,petabytedata\/elasticsearch,sjohnr\/elasticsearch,infusionsoft\/elasticsearch,yanjunh\/elasticsearch,dataduke\/elasticsearch,mcku\/elasticsearch,kubum\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,Chhunlong\/elasticsearch,Rygbee\/elasticsearch,geidies\/elasticsearch,mjason3\/elasticsearch,sc0ttkclark\/elasticsearch,zeroctu\/elasticsearch,markwalkom\/elasticsearch,18098924759\/elasticsearch,vroyer\/elasticassandra,boliza\/elasticsearch,slavau\/elasticsearch,markllama\/elasticsearch,fekaputra\/elasticsearch,mute\/elasticsearch,weipinghe\/elasticsearch,easonC\/elasticsearch,myelin\/elasticsearch,shreejay\/elasticsearch,mnylen\/elasticsearch,bawse\/elasticsearch,jbertouch\/elasticsearch,maddin2016\/elasticsearch,fred84\/elasticsearch,MjAbuz\/elasticsearch,mohit\/elasticsearch,rhoml\/elasticsearch,snikch\/elasticsearch,achow\/elasticsearch,zeroctu\/elasticsearch,martinstuga\/elasticsearch,vingupta3\/elasticsearch,jpountz\/elasticsearch,pozhidaevak\/elasticsearch,lmtwga\/elasticsearch,Fsero\/elasticsearch,i-am-Nathan\/elasticsearch,jimczi\/elasticsearch,ckclark\/elasticsearch,ThalaivaStars\/OrgRepo1,zhiqinghuang\/elasticsearch,strapdata\/elassandra5-rc,hanswang\/elasticsearch,KimTaehee\/elasticsearch,wayeast\/elasticsearch,palecur\/elasticsearch,obourgain\/elasticsearch,markharwood\/elasticsearch,overcome\/elasticsearch,Shepard1212\/elasticsearch,hechunwen\/elasticsearch,mapr\/elasticsearch,brandonkearby\/elasticsearch,truemped\/elasticsearch,mkis-\/elasticsearch,beiske\/elasticsearch,sarwarbhuiyan\/elasticsearch,sdauletau\/elasticsearch,yongminxia\/elasticsearch,mbrukman\/elasticsearch,areek\/elasticsearch,sneivandt\/elasticsearch,amaliujia\/elasticsearch,Ansh90\/elasticsearch,TonyChai24\/ESSource,alexkuk\/elasticsearch,sauravmondallive\/elasticsearch,ricardocerq\/elasticsearch,bestwpw\/elasticsearch,achow\/elasticsearch,JSCooke\/elasticsearch,fooljohnny\/elasticsearch,queirozfcom\/elasticsearch,sdauletau\/elasticsearch,MjAbuz\/elasticsearch,franklanganke\/elasticsearch,NBSW\/elasticsearch,jeteve\/elasticsearch,tcucchietti\/elasticsearch,avikurapati\/elasticsearch,acchen97\/elasticsearch,strapdata\/elassandra5-rc,kalburgimanjunath\/elasticsearch,easonC\/elasticsearch,ivansun1010\/elasticsearch,adrianbk\/elasticsearch,likaiwalkman\/elasticsearch,Clairebi\/ElasticsearchClone,humandb\/elasticsearch,aglne\/elasticsearch,springning\/elasticsearch,Brijeshrpatel9\/elasticsearch,Ansh90\/elasticsearch,Flipkart\/elasticsearch,brandonkearby\/elasticsearch,ydsakyclguozi\/elasticsearch,kingaj\/elasticsearch,LewayneNaidoo\/elasticsearch,MetSystem\/elasticsearch,onegambler\/elasticsearch,vvcephei\/elasticsearch,nomoa\/elasticsearch,truemped\/elasticsearch,socialrank\/elasticsearch,mute\/elasticsearch,nazarewk\/elasticsearch,djschny\/elasticsearch,18098924759\/elasticsearch,milodky\/elasticsearch,amit-shar\/elasticsearch,kaneshin\/elasticsearch,naveenhooda2000\/elasticsearch,Siddartha07\/elasticsearch,scorpionvicky\/elasticsearch,markwalkom\/elasticsearch,springning\/elasticsearch,thecocce\/elasticsearch,iacdingping\/elasticsearch,fooljohnny\/elasticsearch,mmaracic\/elasticsearch,easonC\/elasticsearch,dantuffery\/elasticsearch,kimimj\/elasticsearch,queirozfcom\/elasticsearch,Collaborne\/elasticsearch,lmtwga\/elasticsearch,vingupta3\/elasticsearch,btiernay\/elasticsearch,AndreKR\/elasticsearch,nomoa\/elasticsearch,rmuir\/elasticsearch,pranavraman\/elasticsearch,gmarz\/elasticsearch,clintongormley\/elasticsearch,ydsakyclguozi\/elasticsearch,boliza\/elasticsearch,adrianbk\/elasticsearch,sscarduzio\/elasticsearch,jbertouch\/elasticsearch,jprante\/elasticsearch,sc0ttkclark\/elasticsearch,sreeramjayan\/elasticsearch,girirajsharma\/elasticsearch,kalimatas\/elasticsearch,nellicus\/elasticsearch,gmarz\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,lks21c\/elasticsearch,linglaiyao1314\/elasticsearch,smflorentino\/elasticsearch,mm0\/elasticsearch,ivansun1010\/elasticsearch,Shekharrajak\/elasticsearch,schonfeld\/elasticsearch,mjhennig\/elasticsearch,strapdata\/elassandra,ThiagoGarciaAlves\/elasticsearch,bawse\/elasticsearch,lks21c\/elasticsearch,sreeramjayan\/elasticsearch,scorpionvicky\/elasticsearch,LewayneNaidoo\/elasticsearch,beiske\/elasticsearch,onegambler\/elasticsearch,MichaelLiZhou\/elasticsearch,sjohnr\/elasticsearch,sauravmondallive\/elasticsearch,nazarewk\/elasticsearch,Chhunlong\/elasticsearch,masterweb121\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,nrkkalyan\/elasticsearch,HonzaKral\/elasticsearch,lydonchandra\/elasticsearch,umeshdangat\/elasticsearch,hirdesh2008\/elasticsearch,Liziyao\/elasticsearch,HonzaKral\/elasticsearch,masaruh\/elasticsearch,opendatasoft\/elasticsearch,luiseduardohdbackup\/elasticsearch,golubev\/elasticsearch,boliza\/elasticsearch,strapdata\/elassandra,sreeramjayan\/elasticsearch,heng4fun\/elasticsearch,sreeramjayan\/elasticsearch,sneivandt\/elasticsearch,ZTE-PaaS\/elasticsearch,weipinghe\/elasticsearch,umeshdangat\/elasticsearch,fooljohnny\/elasticsearch,smflorentino\/elasticsearch,himanshuag\/elasticsearch,chrismwendt\/elasticsearch,gfyoung\/elasticsearch,nrkkalyan\/elasticsearch,kcompher\/elasticsearch,humandb\/elasticsearch,vrkansagara\/elasticsearch,bawse\/elasticsearch,rajanm\/elasticsearch,nomoa\/elasticsearch,fekaputra\/elasticsearch,abibell\/elasticsearch,davidvgalbraith\/elasticsearch,sauravmondallive\/elasticsearch,mnylen\/elasticsearch,kalburgimanjunath\/elasticsearch,i-am-Nathan\/elasticsearch,amaliujia\/elasticsearch,wbowling\/elasticsearch,smflorentino\/elasticsearch,ouyangkongtong\/elasticsearch,qwerty4030\/elasticsearch,himanshuag\/elasticsearch,vrkansagara\/elasticsearch,dongjoon-hyun\/elasticsearch,NBSW\/elasticsearch,kevinkluge\/elasticsearch,yynil\/elasticsearch,hanswang\/elasticsearch,hirdesh2008\/elasticsearch,AshishThakur\/elasticsearch,ulkas\/elasticsearch,lydonchandra\/elasticsearch,andrestc\/elasticsearch,xingguang2013\/elasticsearch,acchen97\/elasticsearch,xpandan\/elasticsearch,pablocastro\/elasticsearch,sscarduzio\/elasticsearch,obourgain\/elasticsearch,amit-shar\/elasticsearch,Uiho\/elasticsearch,ImpressTV\/elasticsearch,lzo\/elasticsearch-1,wuranbo\/elasticsearch,adrianbk\/elasticsearch,F0lha\/elasticsearch,anti-social\/elasticsearch,khiraiwa\/elasticsearch,kaneshin\/elasticsearch,kkirsche\/elasticsearch,ckclark\/elasticsearch,geidies\/elasticsearch,luiseduardohdbackup\/elasticsearch,springning\/elasticsearch,socialrank\/elasticsearch,kalburgimanjunath\/elasticsearch,zhiqinghuang\/elasticsearch,karthikjaps\/elasticsearch,JervyShi\/elasticsearch,alexshadow007\/elasticsearch,episerver\/elasticsearch,pablocastro\/elasticsearch,C-Bish\/elasticsearch,jw0201\/elastic,rento19962\/elasticsearch,javachengwc\/elasticsearch,scottsom\/elasticsearch,NBSW\/elasticsearch,mapr\/elasticsearch,masterweb121\/elasticsearch,Charlesdong\/elasticsearch,wimvds\/elasticsearch,camilojd\/elasticsearch,Collaborne\/elasticsearch,cwurm\/elasticsearch,mjhennig\/elasticsearch,huanzhong\/elasticsearch,trangvh\/elasticsearch,dpursehouse\/elasticsearch,jimhooker2002\/elasticsearch,mortonsykes\/elasticsearch,njlawton\/elasticsearch,yongminxia\/elasticsearch,SergVro\/elasticsearch,LewayneNaidoo\/elasticsearch,MjAbuz\/elasticsearch,knight1128\/elasticsearch,nezirus\/elasticsearch,abibell\/elasticsearch,anti-social\/elasticsearch,hanst\/elasticsearch,yuy168\/elasticsearch,caengcjd\/elasticsearch,AndreKR\/elasticsearch,codebunt\/elasticsearch,luiseduardohdbackup\/elasticsearch,Brijeshrpatel9\/elasticsearch,KimTaehee\/elasticsearch,nilabhsagar\/elasticsearch,mjason3\/elasticsearch,zeroctu\/elasticsearch,snikch\/elasticsearch,Ansh90\/elasticsearch,zhiqinghuang\/elasticsearch,Clairebi\/ElasticsearchClone,apepper\/elasticsearch,ESamir\/elasticsearch,Stacey-Gammon\/elasticsearch,Widen\/elasticsearch,fred84\/elasticsearch,pozhidaevak\/elasticsearch,wenpos\/elasticsearch,sneivandt\/elasticsearch,gingerwizard\/elasticsearch,KimTaehee\/elasticsearch,chrismwendt\/elasticsearch,jprante\/elasticsearch,Collaborne\/elasticsearch,diendt\/elasticsearch,18098924759\/elasticsearch,chirilo\/elasticsearch,overcome\/elasticsearch,schonfeld\/elasticsearch,masaruh\/elasticsearch,lydonchandra\/elasticsearch,sc0ttkclark\/elasticsearch,Fsero\/elasticsearch,socialrank\/elasticsearch,kimimj\/elasticsearch,sneivandt\/elasticsearch,rhoml\/elasticsearch,likaiwalkman\/elasticsearch,Widen\/elasticsearch,anti-social\/elasticsearch,Chhunlong\/elasticsearch,mute\/elasticsearch,JSCooke\/elasticsearch,hanst\/elasticsearch,henakamaMSFT\/elasticsearch,geidies\/elasticsearch,kcompher\/elasticsearch,jimczi\/elasticsearch,kaneshin\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,Chhunlong\/elasticsearch,njlawton\/elasticsearch,lydonchandra\/elasticsearch,wenpos\/elasticsearch,drewr\/elasticsearch,Shekharrajak\/elasticsearch,mohit\/elasticsearch,strapdata\/elassandra-test,s1monw\/elasticsearch,ulkas\/elasticsearch,apepper\/elasticsearch,GlenRSmith\/elasticsearch,ydsakyclguozi\/elasticsearch,HonzaKral\/elasticsearch,palecur\/elasticsearch,huanzhong\/elasticsearch,xuzha\/elasticsearch,truemped\/elasticsearch,AshishThakur\/elasticsearch,Brijeshrpatel9\/elasticsearch,nazarewk\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,iacdingping\/elasticsearch,feiqitian\/elasticsearch,kenshin233\/elasticsearch,vietlq\/elasticsearch,lchennup\/elasticsearch,lightslife\/elasticsearch,AshishThakur\/elasticsearch,rajanm\/elasticsearch,fekaputra\/elasticsearch,scorpionvicky\/elasticsearch,zkidkid\/elasticsearch,socialrank\/elasticsearch,martinstuga\/elasticsearch,IanvsPoplicola\/elasticsearch,tahaemin\/elasticsearch,jprante\/elasticsearch,Widen\/elasticsearch,zhiqinghuang\/elasticsearch,luiseduardohdbackup\/elasticsearch,abibell\/elasticsearch,wangyuxue\/elasticsearch,Ansh90\/elasticsearch,koxa29\/elasticsearch,JackyMai\/elasticsearch,wimvds\/elasticsearch,gfyoung\/elasticsearch,ouyangkongtong\/elasticsearch,kunallimaye\/elasticsearch,infusionsoft\/elasticsearch,btiernay\/elasticsearch,ivansun1010\/elasticsearch,vroyer\/elasticassandra,kkirsche\/elasticsearch,NBSW\/elasticsearch,Kakakakakku\/elasticsearch,Rygbee\/elasticsearch,dpursehouse\/elasticsearch,C-Bish\/elasticsearch,MisterAndersen\/elasticsearch,hafkensite\/elasticsearch,C-Bish\/elasticsearch,avikurapati\/elasticsearch,szroland\/elasticsearch,luiseduardohdbackup\/elasticsearch,smflorentino\/elasticsearch,golubev\/elasticsearch,codebunt\/elasticsearch,Asimov4\/elasticsearch,a2lin\/elasticsearch,ulkas\/elasticsearch,tkssharma\/elasticsearch,onegambler\/elasticsearch,iantruslove\/elasticsearch,mm0\/elasticsearch,fforbeck\/elasticsearch,tahaemin\/elasticsearch,chirilo\/elasticsearch,EasonYi\/elasticsearch,andrejserafim\/elasticsearch,hanswang\/elasticsearch,Liziyao\/elasticsearch,AleksKochev\/elasticsearch,alexshadow007\/elasticsearch,ckclark\/elasticsearch,brandonkearby\/elasticsearch,ouyangkongtong\/elasticsearch,phani546\/elasticsearch,markllama\/elasticsearch,tsohil\/elasticsearch,artnowo\/elasticsearch,vroyer\/elassandra,uschindler\/elasticsearch,cwurm\/elasticsearch,mjhennig\/elasticsearch,kunallimaye\/elasticsearch,mgalushka\/elasticsearch,jaynblue\/elasticsearch,kkirsche\/elasticsearch,springning\/elasticsearch,sdauletau\/elasticsearch,maddin2016\/elasticsearch,rajanm\/elasticsearch,hirdesh2008\/elasticsearch,strapdata\/elassandra-test,nrkkalyan\/elasticsearch,karthikjaps\/elasticsearch,AshishThakur\/elasticsearch,PhaedrusTheGreek\/elasticsearch,Widen\/elasticsearch,feiqitian\/elasticsearch,jchampion\/elasticsearch,strapdata\/elassandra-test,mkis-\/elasticsearch,phani546\/elasticsearch,GlenRSmith\/elasticsearch,trangvh\/elasticsearch,nrkkalyan\/elasticsearch,thecocce\/elasticsearch,episerver\/elasticsearch,fforbeck\/elasticsearch,kimimj\/elasticsearch,jpountz\/elasticsearch,slavau\/elasticsearch,StefanGor\/elasticsearch,iamjakob\/elasticsearch,HarishAtGitHub\/elasticsearch,wbowling\/elasticsearch,dongjoon-hyun\/elasticsearch,andrestc\/elasticsearch,wangyuxue\/elasticsearch,wittyameta\/elasticsearch,Siddartha07\/elasticsearch,MetSystem\/elasticsearch,skearns64\/elasticsearch,hydro2k\/elasticsearch,iacdingping\/elasticsearch,weipinghe\/elasticsearch,mkis-\/elasticsearch,yuy168\/elasticsearch,davidvgalbraith\/elasticsearch,wuranbo\/elasticsearch,kenshin233\/elasticsearch,GlenRSmith\/elasticsearch,ydsakyclguozi\/elasticsearch,queirozfcom\/elasticsearch,mute\/elasticsearch,thecocce\/elasticsearch,mapr\/elasticsearch,artnowo\/elasticsearch,jsgao0\/elasticsearch,huanzhong\/elasticsearch,MichaelLiZhou\/elasticsearch,IanvsPoplicola\/elasticsearch,obourgain\/elasticsearch,milodky\/elasticsearch,andrejserafim\/elasticsearch,tkssharma\/elasticsearch,episerver\/elasticsearch,wayeast\/elasticsearch,F0lha\/elasticsearch,hechunwen\/elasticsearch,markllama\/elasticsearch,jeteve\/elasticsearch,sarwarbhuiyan\/elasticsearch,sreeramjayan\/elasticsearch,trangvh\/elasticsearch,kalburgimanjunath\/elasticsearch,strapdata\/elassandra-test,weipinghe\/elasticsearch,mcku\/elasticsearch,Shepard1212\/elasticsearch,schonfeld\/elasticsearch,szroland\/elasticsearch,F0lha\/elasticsearch,ajhalani\/elasticsearch,bestwpw\/elasticsearch,mute\/elasticsearch,MisterAndersen\/elasticsearch,jimhooker2002\/elasticsearch,petmit\/elasticsearch,Kakakakakku\/elasticsearch,Brijeshrpatel9\/elasticsearch,andrejserafim\/elasticsearch,hechunwen\/elasticsearch,queirozfcom\/elasticsearch,elasticdog\/elasticsearch,kevinkluge\/elasticsearch,gmarz\/elasticsearch,MetSystem\/elasticsearch,onegambler\/elasticsearch,ThalaivaStars\/OrgRepo1,diendt\/elasticsearch,rmuir\/elasticsearch,zeroctu\/elasticsearch,lzo\/elasticsearch-1,Shekharrajak\/elasticsearch,VukDukic\/elasticsearch,vvcephei\/elasticsearch,MichaelLiZhou\/elasticsearch,avikurapati\/elasticsearch,franklanganke\/elasticsearch,F0lha\/elasticsearch,qwerty4030\/elasticsearch,lks21c\/elasticsearch,camilojd\/elasticsearch,hirdesh2008\/elasticsearch,mbrukman\/elasticsearch,kalburgimanjunath\/elasticsearch,tcucchietti\/elasticsearch,MisterAndersen\/elasticsearch,socialrank\/elasticsearch,boliza\/elasticsearch,vrkansagara\/elasticsearch,yongminxia\/elasticsearch,rento19962\/elasticsearch,janmejay\/elasticsearch,JervyShi\/elasticsearch,mmaracic\/elasticsearch,jsgao0\/elasticsearch,YosuaMichael\/elasticsearch,liweinan0423\/elasticsearch,wimvds\/elasticsearch,Shekharrajak\/elasticsearch,mrorii\/elasticsearch,mapr\/elasticsearch,artnowo\/elasticsearch,YosuaMichael\/elasticsearch,javachengwc\/elasticsearch,camilojd\/elasticsearch,nazarewk\/elasticsearch,MisterAndersen\/elasticsearch,MaineC\/elasticsearch,abibell\/elasticsearch,ouyangkongtong\/elasticsearch,sposam\/elasticsearch,acchen97\/elasticsearch,lmtwga\/elasticsearch,truemped\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,jimczi\/elasticsearch,mm0\/elasticsearch,Fsero\/elasticsearch,rlugojr\/elasticsearch,springning\/elasticsearch,anti-social\/elasticsearch,polyfractal\/elasticsearch,djschny\/elasticsearch,linglaiyao1314\/elasticsearch,ivansun1010\/elasticsearch,alexbrasetvik\/elasticsearch,mikemccand\/elasticsearch,glefloch\/elasticsearch,jaynblue\/elasticsearch,sdauletau\/elasticsearch,caengcjd\/elasticsearch,pritishppai\/elasticsearch,davidvgalbraith\/elasticsearch,kcompher\/elasticsearch,jpountz\/elasticsearch,artnowo\/elasticsearch,Siddartha07\/elasticsearch,queirozfcom\/elasticsearch,feiqitian\/elasticsearch,Fsero\/elasticsearch,JSCooke\/elasticsearch,Shekharrajak\/elasticsearch,iantruslove\/elasticsearch,xingguang2013\/elasticsearch,dataduke\/elasticsearch,Asimov4\/elasticsearch,sarwarbhuiyan\/elasticsearch,awislowski\/elasticsearch,dongjoon-hyun\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mbrukman\/elasticsearch,mnylen\/elasticsearch,kingaj\/elasticsearch,iantruslove\/elasticsearch,camilojd\/elasticsearch,markharwood\/elasticsearch,szroland\/elasticsearch,vietlq\/elasticsearch,kalimatas\/elasticsearch,likaiwalkman\/elasticsearch,btiernay\/elasticsearch,micpalmia\/elasticsearch,VukDukic\/elasticsearch,javachengwc\/elasticsearch,episerver\/elasticsearch,kkirsche\/elasticsearch,kubum\/elasticsearch,VukDukic\/elasticsearch,jaynblue\/elasticsearch,robin13\/elasticsearch,Kakakakakku\/elasticsearch,nellicus\/elasticsearch,Microsoft\/elasticsearch,EasonYi\/elasticsearch,luiseduardohdbackup\/elasticsearch,nilabhsagar\/elasticsearch,awislowski\/elasticsearch,hechunwen\/elasticsearch,elasticdog\/elasticsearch,socialrank\/elasticsearch,iantruslove\/elasticsearch,jpountz\/elasticsearch,rhoml\/elasticsearch,markwalkom\/elasticsearch,chrismwendt\/elasticsearch,mm0\/elasticsearch,jsgao0\/elasticsearch,cnfire\/elasticsearch-1,markllama\/elasticsearch,adrianbk\/elasticsearch,khiraiwa\/elasticsearch,brandonkearby\/elasticsearch,wuranbo\/elasticsearch,wbowling\/elasticsearch,hydro2k\/elasticsearch,fernandozhu\/elasticsearch,sposam\/elasticsearch,adrianbk\/elasticsearch,javachengwc\/elasticsearch,beiske\/elasticsearch,kubum\/elasticsearch,pablocastro\/elasticsearch,kimimj\/elasticsearch,petabytedata\/elasticsearch,amit-shar\/elasticsearch,knight1128\/elasticsearch,dongjoon-hyun\/elasticsearch,kevinkluge\/elasticsearch,rmuir\/elasticsearch,sjohnr\/elasticsearch,pablocastro\/elasticsearch,dylan8902\/elasticsearch,snikch\/elasticsearch,pranavraman\/elasticsearch,GlenRSmith\/elasticsearch,IanvsPoplicola\/elasticsearch,xpandan\/elasticsearch,jchampion\/elasticsearch,achow\/elasticsearch,kevinkluge\/elasticsearch,skearns64\/elasticsearch,andrestc\/elasticsearch,Charlesdong\/elasticsearch,kimimj\/elasticsearch,pranavraman\/elasticsearch,LewayneNaidoo\/elasticsearch,robin13\/elasticsearch,tahaemin\/elasticsearch,beiske\/elasticsearch,dantuffery\/elasticsearch,markllama\/elasticsearch,snikch\/elasticsearch,snikch\/elasticsearch,jbertouch\/elasticsearch,diendt\/elasticsearch,Helen-Zhao\/elasticsearch,alexkuk\/elasticsearch,hanswang\/elasticsearch,martinstuga\/elasticsearch,jaynblue\/elasticsearch,ESamir\/elasticsearch,kubum\/elasticsearch,rento19962\/elasticsearch,markharwood\/elasticsearch,s1monw\/elasticsearch,ckclark\/elasticsearch,loconsolutions\/elasticsearch,18098924759\/elasticsearch,pozhidaevak\/elasticsearch,sjohnr\/elasticsearch,gingerwizard\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,elancom\/elasticsearch,tahaemin\/elasticsearch,alexkuk\/elasticsearch,AleksKochev\/elasticsearch,zhiqinghuang\/elasticsearch,mnylen\/elasticsearch,andrestc\/elasticsearch,tsohil\/elasticsearch,khiraiwa\/elasticsearch,wittyameta\/elasticsearch,henakamaMSFT\/elasticsearch,Helen-Zhao\/elasticsearch,xuzha\/elasticsearch,mgalushka\/elasticsearch,sauravmondallive\/elasticsearch,vvcephei\/elasticsearch,kunallimaye\/elasticsearch,dylan8902\/elasticsearch,F0lha\/elasticsearch,wittyameta\/elasticsearch,xingguang2013\/elasticsearch,wayeast\/elasticsearch,awislowski\/elasticsearch,kenshin233\/elasticsearch,Widen\/elasticsearch,kunallimaye\/elasticsearch,jimhooker2002\/elasticsearch,janmejay\/elasticsearch,strapdata\/elassandra5-rc,geidies\/elasticsearch,ThalaivaStars\/OrgRepo1,cnfire\/elasticsearch-1,kenshin233\/elasticsearch,truemped\/elasticsearch,truemped\/elasticsearch,iacdingping\/elasticsearch,yanjunh\/elasticsearch,easonC\/elasticsearch,tkssharma\/elasticsearch,sc0ttkclark\/elasticsearch,andrejserafim\/elasticsearch,njlawton\/elasticsearch,wbowling\/elasticsearch,kubum\/elasticsearch,vingupta3\/elasticsearch,ivansun1010\/elasticsearch,caengcjd\/elasticsearch,sdauletau\/elasticsearch,karthikjaps\/elasticsearch,beiske\/elasticsearch,wimvds\/elasticsearch,ThalaivaStars\/OrgRepo1,coding0011\/elasticsearch,Siddartha07\/elasticsearch,acchen97\/elasticsearch,sposam\/elasticsearch,nazarewk\/elasticsearch,janmejay\/elasticsearch,myelin\/elasticsearch,EasonYi\/elasticsearch,cnfire\/elasticsearch-1,kalburgimanjunath\/elasticsearch,strapdata\/elassandra,glefloch\/elasticsearch,MichaelLiZhou\/elasticsearch,strapdata\/elassandra-test,yuy168\/elasticsearch,lzo\/elasticsearch-1,mgalushka\/elasticsearch,Ansh90\/elasticsearch,hanswang\/elasticsearch,alexbrasetvik\/elasticsearch,jeteve\/elasticsearch,VukDukic\/elasticsearch,likaiwalkman\/elasticsearch,xpandan\/elasticsearch,fred84\/elasticsearch,Liziyao\/elasticsearch,s1monw\/elasticsearch,polyfractal\/elasticsearch,martinstuga\/elasticsearch,Helen-Zhao\/elasticsearch,ckclark\/elasticsearch,glefloch\/elasticsearch,Clairebi\/ElasticsearchClone,mnylen\/elasticsearch,PhaedrusTheGreek\/elasticsearch,obourgain\/elasticsearch,springning\/elasticsearch,schonfeld\/elasticsearch,hanswang\/elasticsearch,spiegela\/elasticsearch,ZTE-PaaS\/elasticsearch,TonyChai24\/ESSource,elancom\/elasticsearch,btiernay\/elasticsearch,combinatorist\/elasticsearch,dataduke\/elasticsearch,mrorii\/elasticsearch,heng4fun\/elasticsearch,YosuaMichael\/elasticsearch,xpandan\/elasticsearch,spiegela\/elasticsearch,fernandozhu\/elasticsearch,jimczi\/elasticsearch,linglaiyao1314\/elasticsearch,Stacey-Gammon\/elasticsearch,geidies\/elasticsearch,wuranbo\/elasticsearch,mohit\/elasticsearch,petabytedata\/elasticsearch,liweinan0423\/elasticsearch,kalimatas\/elasticsearch,yuy168\/elasticsearch,djschny\/elasticsearch,fekaputra\/elasticsearch,lightslife\/elasticsearch,elasticdog\/elasticsearch,dpursehouse\/elasticsearch,markllama\/elasticsearch,Siddartha07\/elasticsearch,MetSystem\/elasticsearch,nezirus\/elasticsearch,pranavraman\/elasticsearch,avikurapati\/elasticsearch,scottsom\/elasticsearch,golubev\/elasticsearch,elancom\/elasticsearch,camilojd\/elasticsearch,petabytedata\/elasticsearch,i-am-Nathan\/elasticsearch,milodky\/elasticsearch,markwalkom\/elasticsearch,wenpos\/elasticsearch,pritishppai\/elasticsearch,djschny\/elasticsearch,TonyChai24\/ESSource,micpalmia\/elasticsearch,kaneshin\/elasticsearch,lightslife\/elasticsearch,apepper\/elasticsearch,maddin2016\/elasticsearch,ricardocerq\/elasticsearch,dpursehouse\/elasticsearch,szroland\/elasticsearch,wittyameta\/elasticsearch,apepper\/elasticsearch,huanzhong\/elasticsearch,wbowling\/elasticsearch,ESamir\/elasticsearch,IanvsPoplicola\/elasticsearch,karthikjaps\/elasticsearch,lzo\/elasticsearch-1,fred84\/elasticsearch,Chhunlong\/elasticsearch,mrorii\/elasticsearch,ZTE-PaaS\/elasticsearch,combinatorist\/elasticsearch,qwerty4030\/elasticsearch,wittyameta\/elasticsearch,robin13\/elasticsearch,infusionsoft\/elasticsearch,slavau\/elasticsearch,weipinghe\/elasticsearch,andrestc\/elasticsearch,a2lin\/elasticsearch,mm0\/elasticsearch,infusionsoft\/elasticsearch,scorpionvicky\/elasticsearch,girirajsharma\/elasticsearch,jeteve\/elasticsearch,ESamir\/elasticsearch,hafkensite\/elasticsearch,TonyChai24\/ESSource,wittyameta\/elasticsearch,hydro2k\/elasticsearch,bestwpw\/elasticsearch,skearns64\/elasticsearch,adrianbk\/elasticsearch,ESamir\/elasticsearch,easonC\/elasticsearch,huypx1292\/elasticsearch,mmaracic\/elasticsearch,qwerty4030\/elasticsearch,cnfire\/elasticsearch-1,clintongormley\/elasticsearch,masaruh\/elasticsearch,gingerwizard\/elasticsearch,kingaj\/elasticsearch,fernandozhu\/elasticsearch,clintongormley\/elasticsearch,huypx1292\/elasticsearch,Charlesdong\/elasticsearch,ouyangkongtong\/elasticsearch,dataduke\/elasticsearch,polyfractal\/elasticsearch,djschny\/elasticsearch,nezirus\/elasticsearch,kaneshin\/elasticsearch,artnowo\/elasticsearch,xuzha\/elasticsearch,wbowling\/elasticsearch,franklanganke\/elasticsearch,Rygbee\/elasticsearch,gfyoung\/elasticsearch,andrejserafim\/elasticsearch,palecur\/elasticsearch,ulkas\/elasticsearch,hechunwen\/elasticsearch,sarwarbhuiyan\/elasticsearch,jango2015\/elasticsearch,heng4fun\/elasticsearch,ouyangkongtong\/elasticsearch,strapdata\/elassandra5-rc,xuzha\/elasticsearch,petmit\/elasticsearch,mikemccand\/elasticsearch,schonfeld\/elasticsearch,lzo\/elasticsearch-1,davidvgalbraith\/elasticsearch,petabytedata\/elasticsearch,drewr\/elasticsearch,micpalmia\/elasticsearch,TonyChai24\/ESSource,jimhooker2002\/elasticsearch,petmit\/elasticsearch,loconsolutions\/elasticsearch,lchennup\/elasticsearch,winstonewert\/elasticsearch,iantruslove\/elasticsearch,spiegela\/elasticsearch,acchen97\/elasticsearch,VukDukic\/elasticsearch,alexkuk\/elasticsearch,mjhennig\/elasticsearch,nilabhsagar\/elasticsearch,aglne\/elasticsearch,Liziyao\/elasticsearch,Collaborne\/elasticsearch,lmtwga\/elasticsearch,janmejay\/elasticsearch,himanshuag\/elasticsearch,hechunwen\/elasticsearch,dantuffery\/elasticsearch,hanswang\/elasticsearch,Fsero\/elasticsearch,martinstuga\/elasticsearch,combinatorist\/elasticsearch,djschny\/elasticsearch,sdauletau\/elasticsearch,petmit\/elasticsearch,bestwpw\/elasticsearch,iamjakob\/elasticsearch,huypx1292\/elasticsearch,mohit\/elasticsearch,AshishThakur\/elasticsearch,acchen97\/elasticsearch,Kakakakakku\/elasticsearch,zeroctu\/elasticsearch,infusionsoft\/elasticsearch,mgalushka\/elasticsearch,Brijeshrpatel9\/elasticsearch,MjAbuz\/elasticsearch,nrkkalyan\/elasticsearch,sjohnr\/elasticsearch,kingaj\/elasticsearch,jw0201\/elastic,MaineC\/elasticsearch,alexbrasetvik\/elasticsearch,phani546\/elasticsearch,pritishppai\/elasticsearch,thecocce\/elasticsearch,golubev\/elasticsearch,Rygbee\/elasticsearch,chirilo\/elasticsearch,nomoa\/elasticsearch,wangtuo\/elasticsearch,i-am-Nathan\/elasticsearch,sc0ttkclark\/elasticsearch,iamjakob\/elasticsearch,EasonYi\/elasticsearch,khiraiwa\/elasticsearch,MetSystem\/elasticsearch,elasticdog\/elasticsearch,jbertouch\/elasticsearch,LeoYao\/elasticsearch,springning\/elasticsearch,vroyer\/elassandra,JackyMai\/elasticsearch,rhoml\/elasticsearch,yongminxia\/elasticsearch,ESamir\/elasticsearch,mute\/elasticsearch,hanst\/elasticsearch,vietlq\/elasticsearch,franklanganke\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,scottsom\/elasticsearch,knight1128\/elasticsearch,mortonsykes\/elasticsearch,pritishppai\/elasticsearch,kcompher\/elasticsearch,EasonYi\/elasticsearch,karthikjaps\/elasticsearch,pranavraman\/elasticsearch,markharwood\/elasticsearch,amit-shar\/elasticsearch,micpalmia\/elasticsearch,MjAbuz\/elasticsearch,szroland\/elasticsearch,likaiwalkman\/elasticsearch,lmtwga\/elasticsearch,himanshuag\/elasticsearch,lightslife\/elasticsearch,mortonsykes\/elasticsearch,areek\/elasticsearch,EasonYi\/elasticsearch,ricardocerq\/elasticsearch,jchampion\/elasticsearch,SergVro\/elasticsearch,coding0011\/elasticsearch,linglaiyao1314\/elasticsearch,Asimov4\/elasticsearch,Shekharrajak\/elasticsearch,amaliujia\/elasticsearch,Stacey-Gammon\/elasticsearch,easonC\/elasticsearch,ckclark\/elasticsearch,mbrukman\/elasticsearch,rlugojr\/elasticsearch,mortonsykes\/elasticsearch,yongminxia\/elasticsearch,areek\/elasticsearch,strapdata\/elassandra5-rc,acchen97\/elasticsearch,kimimj\/elasticsearch,nilabhsagar\/elasticsearch,Uiho\/elasticsearch,yuy168\/elasticsearch,Flipkart\/elasticsearch,Microsoft\/elasticsearch,Helen-Zhao\/elasticsearch,shreejay\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,hafkensite\/elasticsearch,hydro2k\/elasticsearch,wenpos\/elasticsearch,sscarduzio\/elasticsearch,slavau\/elasticsearch,humandb\/elasticsearch,opendatasoft\/elasticsearch,huypx1292\/elasticsearch,wangtuo\/elasticsearch,tebriel\/elasticsearch,AndreKR\/elasticsearch,gingerwizard\/elasticsearch,SergVro\/elasticsearch,caengcjd\/elasticsearch,jimhooker2002\/elasticsearch,dantuffery\/elasticsearch,phani546\/elasticsearch,scottsom\/elasticsearch,mnylen\/elasticsearch,slavau\/elasticsearch,PhaedrusTheGreek\/elasticsearch,glefloch\/elasticsearch,chrismwendt\/elasticsearch,aglne\/elasticsearch,sposam\/elasticsearch,myelin\/elasticsearch,coding0011\/elasticsearch,vrkansagara\/elasticsearch,mmaracic\/elasticsearch,jango2015\/elasticsearch,uschindler\/elasticsearch,Liziyao\/elasticsearch,jaynblue\/elasticsearch,ulkas\/elasticsearch,fooljohnny\/elasticsearch,fooljohnny\/elasticsearch,mrorii\/elasticsearch,henakamaMSFT\/elasticsearch,SergVro\/elasticsearch,areek\/elasticsearch,lydonchandra\/elasticsearch,xingguang2013\/elasticsearch,cnfire\/elasticsearch-1,himanshuag\/elasticsearch,tebriel\/elasticsearch,mgalushka\/elasticsearch,amit-shar\/elasticsearch,areek\/elasticsearch,humandb\/elasticsearch,masaruh\/elasticsearch,AleksKochev\/elasticsearch,liweinan0423\/elasticsearch,alexshadow007\/elasticsearch,nellicus\/elasticsearch,koxa29\/elasticsearch,yynil\/elasticsearch,Stacey-Gammon\/elasticsearch,linglaiyao1314\/elasticsearch,adrianbk\/elasticsearch,glefloch\/elasticsearch,lightslife\/elasticsearch,kingaj\/elasticsearch,btiernay\/elasticsearch,liweinan0423\/elasticsearch,elancom\/elasticsearch,mmaracic\/elasticsearch,sauravmondallive\/elasticsearch,dylan8902\/elasticsearch,TonyChai24\/ESSource,nknize\/elasticsearch,ydsakyclguozi\/elasticsearch,nknize\/elasticsearch,yongminxia\/elasticsearch,episerver\/elasticsearch,chirilo\/elasticsearch,MaineC\/elasticsearch,hanst\/elasticsearch,drewr\/elasticsearch,Microsoft\/elasticsearch,bestwpw\/elasticsearch,xingguang2013\/elasticsearch,mcku\/elasticsearch,vvcephei\/elasticsearch,masterweb121\/elasticsearch,feiqitian\/elasticsearch,cnfire\/elasticsearch-1,kalimatas\/elasticsearch,fforbeck\/elasticsearch,hydro2k\/elasticsearch,lzo\/elasticsearch-1,PhaedrusTheGreek\/elasticsearch,Charlesdong\/elasticsearch,mgalushka\/elasticsearch,dylan8902\/elasticsearch,clintongormley\/elasticsearch,MichaelLiZhou\/elasticsearch,rlugojr\/elasticsearch,rhoml\/elasticsearch,loconsolutions\/elasticsearch,rlugojr\/elasticsearch,onegambler\/elasticsearch,iacdingping\/elasticsearch,tebriel\/elasticsearch,Uiho\/elasticsearch,ImpressTV\/elasticsearch,pritishppai\/elasticsearch,wenpos\/elasticsearch,ajhalani\/elasticsearch,snikch\/elasticsearch,tahaemin\/elasticsearch,a2lin\/elasticsearch,caengcjd\/elasticsearch,sscarduzio\/elasticsearch,andrejserafim\/elasticsearch,koxa29\/elasticsearch,StefanGor\/elasticsearch,areek\/elasticsearch,abibell\/elasticsearch,MichaelLiZhou\/elasticsearch,qwerty4030\/elasticsearch,kunallimaye\/elasticsearch,koxa29\/elasticsearch,KimTaehee\/elasticsearch,yynil\/elasticsearch,jimhooker2002\/elasticsearch,jchampion\/elasticsearch,PhaedrusTheGreek\/elasticsearch,kingaj\/elasticsearch,yynil\/elasticsearch,apepper\/elasticsearch,zeroctu\/elasticsearch,caengcjd\/elasticsearch,mortonsykes\/elasticsearch,lightslife\/elasticsearch,lchennup\/elasticsearch,JackyMai\/elasticsearch,mrorii\/elasticsearch,AndreKR\/elasticsearch,ZTE-PaaS\/elasticsearch,slavau\/elasticsearch,MetSystem\/elasticsearch,hafkensite\/elasticsearch,njlawton\/elasticsearch,kaneshin\/elasticsearch,achow\/elasticsearch,Asimov4\/elasticsearch,ThalaivaStars\/OrgRepo1,aglne\/elasticsearch,knight1128\/elasticsearch,dataduke\/elasticsearch,trangvh\/elasticsearch,obourgain\/elasticsearch,petabytedata\/elasticsearch,nezirus\/elasticsearch,gfyoung\/elasticsearch,robin13\/elasticsearch,polyfractal\/elasticsearch,alexbrasetvik\/elasticsearch,lchennup\/elasticsearch,Kakakakakku\/elasticsearch,rmuir\/elasticsearch,scottsom\/elasticsearch,JervyShi\/elasticsearch,awislowski\/elasticsearch,huypx1292\/elasticsearch,hirdesh2008\/elasticsearch,iacdingping\/elasticsearch,hanst\/elasticsearch,Shekharrajak\/elasticsearch,fforbeck\/elasticsearch,mapr\/elasticsearch,Shepard1212\/elasticsearch,diendt\/elasticsearch,humandb\/elasticsearch,alexbrasetvik\/elasticsearch,vvcephei\/elasticsearch,sneivandt\/elasticsearch,Brijeshrpatel9\/elasticsearch,skearns64\/elasticsearch,pablocastro\/elasticsearch,humandb\/elasticsearch,Rygbee\/elasticsearch,hirdesh2008\/elasticsearch,pritishppai\/elasticsearch,masterweb121\/elasticsearch,NBSW\/elasticsearch,opendatasoft\/elasticsearch,codebunt\/elasticsearch,kenshin233\/elasticsearch,Uiho\/elasticsearch,uschindler\/elasticsearch,markharwood\/elasticsearch,jango2015\/elasticsearch,HonzaKral\/elasticsearch,loconsolutions\/elasticsearch,szroland\/elasticsearch,martinstuga\/elasticsearch,elasticdog\/elasticsearch,tkssharma\/elasticsearch,PhaedrusTheGreek\/elasticsearch,btiernay\/elasticsearch,wangtuo\/elasticsearch,mcku\/elasticsearch,KimTaehee\/elasticsearch,mjhennig\/elasticsearch,masterweb121\/elasticsearch,geidies\/elasticsearch,lks21c\/elasticsearch,Flipkart\/elasticsearch,markwalkom\/elasticsearch,rhoml\/elasticsearch,JervyShi\/elasticsearch,kcompher\/elasticsearch,drewr\/elasticsearch,iantruslove\/elasticsearch,nezirus\/elasticsearch,jsgao0\/elasticsearch,fernandozhu\/elasticsearch,overcome\/elasticsearch,rmuir\/elasticsearch,sauravmondallive\/elasticsearch,jeteve\/elasticsearch,yynil\/elasticsearch,kevinkluge\/elasticsearch,codebunt\/elasticsearch,overcome\/elasticsearch,nellicus\/elasticsearch,polyfractal\/elasticsearch,xuzha\/elasticsearch,StefanGor\/elasticsearch,mjason3\/elasticsearch,pozhidaevak\/elasticsearch,kenshin233\/elasticsearch,mjason3\/elasticsearch,markharwood\/elasticsearch,jw0201\/elastic,zkidkid\/elasticsearch,bestwpw\/elasticsearch,uschindler\/elasticsearch,shreejay\/elasticsearch,ZTE-PaaS\/elasticsearch,maddin2016\/elasticsearch,MaineC\/elasticsearch,truemped\/elasticsearch,mbrukman\/elasticsearch,lightslife\/elasticsearch,cwurm\/elasticsearch,feiqitian\/elasticsearch,gmarz\/elasticsearch,EasonYi\/elasticsearch,loconsolutions\/elasticsearch,rmuir\/elasticsearch,Liziyao\/elasticsearch,yynil\/elasticsearch,liweinan0423\/elasticsearch,nellicus\/elasticsearch,gfyoung\/elasticsearch,jsgao0\/elasticsearch,robin13\/elasticsearch,a2lin\/elasticsearch,gingerwizard\/elasticsearch,tahaemin\/elasticsearch,wuranbo\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,schonfeld\/elasticsearch,coding0011\/elasticsearch,huanzhong\/elasticsearch,schonfeld\/elasticsearch,clintongormley\/elasticsearch,opendatasoft\/elasticsearch,heng4fun\/elasticsearch,18098924759\/elasticsearch,jaynblue\/elasticsearch,yongminxia\/elasticsearch,combinatorist\/elasticsearch,JervyShi\/elasticsearch,jchampion\/elasticsearch,andrestc\/elasticsearch,LeoYao\/elasticsearch,palecur\/elasticsearch,shreejay\/elasticsearch,masterweb121\/elasticsearch,Chhunlong\/elasticsearch,ulkas\/elasticsearch,zkidkid\/elasticsearch,sarwarbhuiyan\/elasticsearch,bawse\/elasticsearch,achow\/elasticsearch,ajhalani\/elasticsearch,spiegela\/elasticsearch,rlugojr\/elasticsearch,JSCooke\/elasticsearch,YosuaMichael\/elasticsearch,winstonewert\/elasticsearch,jango2015\/elasticsearch,vingupta3\/elasticsearch,jimhooker2002\/elasticsearch,opendatasoft\/elasticsearch,mcku\/elasticsearch,Collaborne\/elasticsearch,nrkkalyan\/elasticsearch,strapdata\/elassandra-test,yanjunh\/elasticsearch,myelin\/elasticsearch,caengcjd\/elasticsearch,alexbrasetvik\/elasticsearch,dantuffery\/elasticsearch,zeroctu\/elasticsearch,StefanGor\/elasticsearch,lks21c\/elasticsearch,milodky\/elasticsearch,tkssharma\/elasticsearch,mjhennig\/elasticsearch,wangtuo\/elasticsearch,iantruslove\/elasticsearch,dataduke\/elasticsearch,Clairebi\/ElasticsearchClone,clintongormley\/elasticsearch,drewr\/elasticsearch,janmejay\/elasticsearch,HarishAtGitHub\/elasticsearch,ImpressTV\/elasticsearch,milodky\/elasticsearch,ajhalani\/elasticsearch,petabytedata\/elasticsearch,C-Bish\/elasticsearch,sposam\/elasticsearch,HarishAtGitHub\/elasticsearch,alexshadow007\/elasticsearch,abibell\/elasticsearch,bestwpw\/elasticsearch,yuy168\/elasticsearch,jango2015\/elasticsearch,zhiqinghuang\/elasticsearch,andrestc\/elasticsearch,loconsolutions\/elasticsearch,JSCooke\/elasticsearch,pablocastro\/elasticsearch,alexshadow007\/elasticsearch,alexkuk\/elasticsearch,rento19962\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,overcome\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,fred84\/elasticsearch,mjhennig\/elasticsearch,kkirsche\/elasticsearch,tkssharma\/elasticsearch,ckclark\/elasticsearch,cwurm\/elasticsearch,SergVro\/elasticsearch,drewr\/elasticsearch,YosuaMichael\/elasticsearch,AndreKR\/elasticsearch,javachengwc\/elasticsearch,IanvsPoplicola\/elasticsearch,tebriel\/elasticsearch,sarwarbhuiyan\/elasticsearch,anti-social\/elasticsearch,mbrukman\/elasticsearch,JackyMai\/elasticsearch,heng4fun\/elasticsearch,s1monw\/elasticsearch,mkis-\/elasticsearch,vietlq\/elasticsearch,Siddartha07\/elasticsearch,Rygbee\/elasticsearch,mcku\/elasticsearch,YosuaMichael\/elasticsearch,ouyangkongtong\/elasticsearch,wimvds\/elasticsearch,apepper\/elasticsearch,amaliujia\/elasticsearch,micpalmia\/elasticsearch,winstonewert\/elasticsearch,vingupta3\/elasticsearch,jw0201\/elastic,NBSW\/elasticsearch,queirozfcom\/elasticsearch,rajanm\/elasticsearch,avikurapati\/elasticsearch,aglne\/elasticsearch,maddin2016\/elasticsearch,diendt\/elasticsearch,djschny\/elasticsearch,gmarz\/elasticsearch,onegambler\/elasticsearch,jsgao0\/elasticsearch,nellicus\/elasticsearch,YosuaMichael\/elasticsearch,awislowski\/elasticsearch,fernandozhu\/elasticsearch,cnfire\/elasticsearch-1,xingguang2013\/elasticsearch,kevinkluge\/elasticsearch,tahaemin\/elasticsearch,Liziyao\/elasticsearch,Siddartha07\/elasticsearch,dpursehouse\/elasticsearch,dylan8902\/elasticsearch,vingupta3\/elasticsearch,iamjakob\/elasticsearch,PhaedrusTheGreek\/elasticsearch,knight1128\/elasticsearch,davidvgalbraith\/elasticsearch,achow\/elasticsearch,bawse\/elasticsearch,umeshdangat\/elasticsearch,Stacey-Gammon\/elasticsearch,tkssharma\/elasticsearch,MisterAndersen\/elasticsearch,polyfractal\/elasticsearch,naveenhooda2000\/elasticsearch,girirajsharma\/elasticsearch,huanzhong\/elasticsearch,Rygbee\/elasticsearch,jpountz\/elasticsearch,pritishppai\/elasticsearch,MetSystem\/elasticsearch,mikemccand\/elasticsearch,Asimov4\/elasticsearch,jimczi\/elasticsearch,girirajsharma\/elasticsearch,huanzhong\/elasticsearch,thecocce\/elasticsearch,mjason3\/elasticsearch,chirilo\/elasticsearch,mbrukman\/elasticsearch,franklanganke\/elasticsearch,lchennup\/elasticsearch,masterweb121\/elasticsearch,Shepard1212\/elasticsearch,sreeramjayan\/elasticsearch,tsohil\/elasticsearch,GlenRSmith\/elasticsearch,Chhunlong\/elasticsearch,phani546\/elasticsearch,TonyChai24\/ESSource,xpandan\/elasticsearch,lmtwga\/elasticsearch,Clairebi\/ElasticsearchClone,Asimov4\/elasticsearch,vrkansagara\/elasticsearch,HarishAtGitHub\/elasticsearch,hydro2k\/elasticsearch,Uiho\/elasticsearch,sscarduzio\/elasticsearch,jbertouch\/elasticsearch,trangvh\/elasticsearch,knight1128\/elasticsearch,kunallimaye\/elasticsearch,wayeast\/elasticsearch,vroyer\/elasticassandra,jango2015\/elasticsearch,lydonchandra\/elasticsearch,elancom\/elasticsearch,a2lin\/elasticsearch,aglne\/elasticsearch,kkirsche\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,lmtwga\/elasticsearch,Microsoft\/elasticsearch,Ansh90\/elasticsearch,mikemccand\/elasticsearch,cwurm\/elasticsearch,mkis-\/elasticsearch,sc0ttkclark\/elasticsearch,tsohil\/elasticsearch,winstonewert\/elasticsearch,golubev\/elasticsearch,sjohnr\/elasticsearch,franklanganke\/elasticsearch,janmejay\/elasticsearch,tcucchietti\/elasticsearch,humandb\/elasticsearch,vietlq\/elasticsearch,Collaborne\/elasticsearch,codebunt\/elasticsearch,milodky\/elasticsearch,scorpionvicky\/elasticsearch,tebriel\/elasticsearch,hafkensite\/elasticsearch,hirdesh2008\/elasticsearch,spiegela\/elasticsearch,kubum\/elasticsearch,ImpressTV\/elasticsearch,mcku\/elasticsearch,Brijeshrpatel9\/elasticsearch,Fsero\/elasticsearch,sc0ttkclark\/elasticsearch,ulkas\/elasticsearch,onegambler\/elasticsearch,dataduke\/elasticsearch,diendt\/elasticsearch,kimimj\/elasticsearch,KimTaehee\/elasticsearch,boliza\/elasticsearch,umeshdangat\/elasticsearch,tsohil\/elasticsearch,naveenhooda2000\/elasticsearch,nknize\/elasticsearch,markllama\/elasticsearch,gingerwizard\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,thecocce\/elasticsearch,alexkuk\/elasticsearch,Helen-Zhao\/elasticsearch,fekaputra\/elasticsearch,linglaiyao1314\/elasticsearch,wangtuo\/elasticsearch,vrkansagara\/elasticsearch,AshishThakur\/elasticsearch,Shepard1212\/elasticsearch,SergVro\/elasticsearch,amit-shar\/elasticsearch,btiernay\/elasticsearch,jw0201\/elastic,koxa29\/elasticsearch,sdauletau\/elasticsearch,HarishAtGitHub\/elasticsearch,smflorentino\/elasticsearch,nrkkalyan\/elasticsearch,chirilo\/elasticsearch,shreejay\/elasticsearch,s1monw\/elasticsearch,lydonchandra\/elasticsearch,AndreKR\/elasticsearch,yanjunh\/elasticsearch,mnylen\/elasticsearch,wimvds\/elasticsearch,naveenhooda2000\/elasticsearch,hafkensite\/elasticsearch,ricardocerq\/elasticsearch,MichaelLiZhou\/elasticsearch,MjAbuz\/elasticsearch,LeoYao\/elasticsearch,hydro2k\/elasticsearch,sarwarbhuiyan\/elasticsearch,tsohil\/elasticsearch,markwalkom\/elasticsearch,LeoYao\/elasticsearch,iacdingping\/elasticsearch,himanshuag\/elasticsearch,xingguang2013\/elasticsearch,dylan8902\/elasticsearch,elancom\/elasticsearch,mapr\/elasticsearch,Charlesdong\/elasticsearch,likaiwalkman\/elasticsearch,knight1128\/elasticsearch,davidvgalbraith\/elasticsearch,girirajsharma\/elasticsearch,Flipkart\/elasticsearch,jeteve\/elasticsearch,dylan8902\/elasticsearch,zhiqinghuang\/elasticsearch,Kakakakakku\/elasticsearch,jprante\/elasticsearch,StefanGor\/elasticsearch,mmaracic\/elasticsearch,yuy168\/elasticsearch,iamjakob\/elasticsearch,vroyer\/elassandra,rento19962\/elasticsearch,apepper\/elasticsearch,Widen\/elasticsearch,AleksKochev\/elasticsearch,vvcephei\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,jango2015\/elasticsearch,overcome\/elasticsearch,Charlesdong\/elasticsearch,C-Bish\/elasticsearch,henakamaMSFT\/elasticsearch,socialrank\/elasticsearch,kingaj\/elasticsearch,NBSW\/elasticsearch,nknize\/elasticsearch,achow\/elasticsearch,LeoYao\/elasticsearch,vingupta3\/elasticsearch,fekaputra\/elasticsearch,henakamaMSFT\/elasticsearch,myelin\/elasticsearch,gingerwizard\/elasticsearch,mkis-\/elasticsearch,LewayneNaidoo\/elasticsearch,franklanganke\/elasticsearch,skearns64\/elasticsearch,weipinghe\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,umeshdangat\/elasticsearch,18098924759\/elasticsearch,rajanm\/elasticsearch,Microsoft\/elasticsearch,yanjunh\/elasticsearch,Ansh90\/elasticsearch,mohit\/elasticsearch,jw0201\/elastic,mrorii\/elasticsearch,dongjoon-hyun\/elasticsearch,rajanm\/elasticsearch,fekaputra\/elasticsearch,lchennup\/elasticsearch,winstonewert\/elasticsearch,kalimatas\/elasticsearch,beiske\/elasticsearch,koxa29\/elasticsearch,elancom\/elasticsearch,uschindler\/elasticsearch,wimvds\/elasticsearch,infusionsoft\/elasticsearch,beiske\/elasticsearch,ricardocerq\/elasticsearch,mm0\/elasticsearch,weipinghe\/elasticsearch,F0lha\/elasticsearch,Uiho\/elasticsearch,njlawton\/elasticsearch,sposam\/elasticsearch,Charlesdong\/elasticsearch,lchennup\/elasticsearch,pablocastro\/elasticsearch,fforbeck\/elasticsearch,chrismwendt\/elasticsearch,khiraiwa\/elasticsearch,coding0011\/elasticsearch,sposam\/elasticsearch,JackyMai\/elasticsearch,kcompher\/elasticsearch,ydsakyclguozi\/elasticsearch,rento19962\/elasticsearch,MaineC\/elasticsearch,pozhidaevak\/elasticsearch,palecur\/elasticsearch,nknize\/elasticsearch,fooljohnny\/elasticsearch,jchampion\/elasticsearch,ThalaivaStars\/OrgRepo1,infusionsoft\/elasticsearch,KimTaehee\/elasticsearch,camilojd\/elasticsearch,tebriel\/elasticsearch,amit-shar\/elasticsearch,HarishAtGitHub\/elasticsearch,ImpressTV\/elasticsearch,linglaiyao1314\/elasticsearch,strapdata\/elassandra,MjAbuz\/elasticsearch,likaiwalkman\/elasticsearch,mikemccand\/elasticsearch,huypx1292\/elasticsearch,HarishAtGitHub\/elasticsearch,strapdata\/elassandra,Widen\/elasticsearch,zkidkid\/elasticsearch,mm0\/elasticsearch,kunallimaye\/elasticsearch,feiqitian\/elasticsearch,rento19962\/elasticsearch,ImpressTV\/elasticsearch,xpandan\/elasticsearch,wayeast\/elasticsearch,jprante\/elasticsearch,pranavraman\/elasticsearch,hanst\/elasticsearch,naveenhooda2000\/elasticsearch,queirozfcom\/elasticsearch,jbertouch\/elasticsearch,himanshuag\/elasticsearch,mgalushka\/elasticsearch,kalburgimanjunath\/elasticsearch,masaruh\/elasticsearch,nomoa\/elasticsearch,wayeast\/elasticsearch,luiseduardohdbackup\/elasticsearch,wayeast\/elasticsearch,skearns64\/elasticsearch,drewr\/elasticsearch,codebunt\/elasticsearch,slavau\/elasticsearch,vietlq\/elasticsearch,tcucchietti\/elasticsearch,nilabhsagar\/elasticsearch,kenshin233\/elasticsearch,kcompher\/elasticsearch,tcucchietti\/elasticsearch,amaliujia\/elasticsearch,Flipkart\/elasticsearch,i-am-Nathan\/elasticsearch,jpountz\/elasticsearch,strapdata\/elassandra-test,girirajsharma\/elasticsearch,jeteve\/elasticsearch,Flipkart\/elasticsearch,LeoYao\/elasticsearch,vietlq\/elasticsearch,xuzha\/elasticsearch,karthikjaps\/elasticsearch,mute\/elasticsearch,hafkensite\/elasticsearch,zkidkid\/elasticsearch,abibell\/elasticsearch,anti-social\/elasticsearch,pranavraman\/elasticsearch,ImpressTV\/elasticsearch,JervyShi\/elasticsearch,ajhalani\/elasticsearch,opendatasoft\/elasticsearch,Clairebi\/ElasticsearchClone,Fsero\/elasticsearch,khiraiwa\/elasticsearch,smflorentino\/elasticsearch,kevinkluge\/elasticsearch,wbowling\/elasticsearch,Collaborne\/elasticsearch,LeoYao\/elasticsearch,wittyameta\/elasticsearch,brandonkearby\/elasticsearch,karthikjaps\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,phani546\/elasticsearch,javachengwc\/elasticsearch,combinatorist\/elasticsearch,iamjakob\/elasticsearch,tsohil\/elasticsearch,lzo\/elasticsearch-1,ivansun1010\/elasticsearch,Uiho\/elasticsearch,wangyuxue\/elasticsearch,golubev\/elasticsearch,petmit\/elasticsearch,nellicus\/elasticsearch,areek\/elasticsearch"} {"commit":"0cd63a5e82762a748021f29d7a370bd5ae6fd7bd","old_file":"src\/docs\/asciidoc\/jme3\/virtualreality.adoc","new_file":"src\/docs\/asciidoc\/jme3\/virtualreality.adoc","old_contents":"= virtualreality\n:author: \n:revnumber: \n:revdate: 2016\/03\/17 20:48\n:relfileprefix: ..\/\n:imagesdir: ..\nifdef::env-github,env-browser[:outfilesuffix: .adoc]\n\n\n\n== OpenCV\n\n\n== JavaCV\n\n\n== Hand gesture links:\n\nlink:http:\/\/www.movesinstitute.org\/~kolsch\/HandVu\/HandVu.html[http:\/\/www.movesinstitute.org\/~kolsch\/HandVu\/HandVu.html]\n","new_contents":"= virtualreality\n:author: \n:revnumber: \n:revdate: 2016\/10\/23 11:22\n:relfileprefix: ..\/\n:imagesdir: ..\nifdef::env-github,env-browser[:outfilesuffix: .adoc]\n\njMonkeyEngine 3 has a wide range of support for Virtual Reality (VR). The known supported systems are:\nHTC Vive and systems supporting SteamVR\/OpenVR\nRazer HDK and systems supporting OSVR\nGoogle Cardboard \/ GoogleVR\nLegacy: Oculus Rift 0.5\n\nIn any form of VR, a library is needed as support is not built in to the core of jMonkeyEngine3.\n\n== jMonkeyVR (https:\/\/github.com\/phr00t\/jMonkeyVR)\nThis is the main library to use when you want wide VR support. It has full OpenVR\/SteamVR support and OSVR support in the making (as of Oct 2016)\n\n== jme3-osvr (https:\/\/github.com\/neph1\/jme3-osvr)\nTogether with https:\/\/github.com\/neph1\/OSVR-Java provides rudimentary OSVR support (extended mode). Examples: https:\/\/github.com\/neph1\/jme3-osvr-examples\n\n== gvr-android-jme (https:\/\/github.com\/nordfalk\/gvr-android-jme)\nGoogle Cardboard VR SDK 1.0 integration\n","subject":"Update the VR page to something more recent","message":"Update the VR page to something more recent","lang":"AsciiDoc","license":"cc0-1.0","repos":"jMonkeyEngine\/wiki.jmonkeyengine.org,jMonkeyEngine\/wiki.jmonkeyengine.org,jMonkeyEngine\/wiki.jmonkeyengine.org,jMonkeyEngine\/wiki.jmonkeyengine.org"} {"commit":"d32f391de90c96ba09f72a1275817ddb9c5333ba","old_file":"docs\/reference\/migration\/migrate_5_5.asciidoc","new_file":"docs\/reference\/migration\/migrate_5_5.asciidoc","old_contents":"[[breaking-changes-5.5]]\n== Breaking changes in 5.5\n\n[[breaking_55_plugins]]\n[float]\n=== Ignoring hidden folders\n\nPrevious versions of Elasticsearch would skip hidden files and directories when\nscanning the plugins folder. This allows broken plugin installs to remain\nundetected so this leniency has been removed.\n\n[[breaking_55_packaging_changes]]\n[float]\n=== Skip setting kernel parameters\n\nElasticsearch attempts to set the kernel parameter `vm.max_map_count` during\ninstallation. In some environments this can fail. Previous versions of\nElasticsearch accepted a flag `ES_SKIP_SET_KERNEL_PARAMTERS` to skip this\nwriting. Starting in Elasticsearch 5.5.0, this flag has been removed and\ninstead the same functionality can be achieved by masking the `systemd-sysctl`\nservice.\n","new_contents":"[[breaking-changes-5.5]]\n== Breaking changes in 5.5\n\n[[breaking_55_plugins]]\n[float]\n=== Ignoring hidden folders\n\nPrevious versions of Elasticsearch would skip hidden files and directories when\nscanning the plugins folder. This allows broken plugin installs to remain\nundetected so this leniency has been removed.\n\n[[breaking_55_packaging_changes]]\n[float]\n=== Skip setting kernel parameters\n\nElasticsearch attempts to set the kernel parameter `vm.max_map_count` during\ninstallation. In some environments this can fail. Previous versions of\nElasticsearch accepted a flag `ES_SKIP_SET_KERNEL_PARAMTERS` to skip this\nwriting. Starting in Elasticsearch 5.5.0, this flag has been removed and\ninstead the same functionality can be achieved by masking the `systemd-sysctl`\nservice.\n\n[[breaking_55_rest_changes]]\n[float]\n=== 404s on get alias and get mapping APIs\n\nPrevious versions of Elasticsearch did not return a 404 in all cases when a\nrequested alias or a requested type did not exist on the get alias or get\nmapping APIs, respectively. Starting in Elasticsearch 5.5.0, these APIs\nconsistently return a 404 in any case when an alias or type is requested that\ndoes not exist.\n","subject":"Add migration note on get alias and get mapping APIs","message":"Add migration note on get alias and get mapping APIs\n\nThese APIs now return 404 if any requested alias or type, respectively,\ndoes not exist. This commit adds a note to the migration docs regarding\nthis change.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc"} {"commit":"6ae3afc30c23c482b8911ca22d18655dab5d52d7","old_file":"docs\/reference\/migration\/migrate_6_2.asciidoc","new_file":"docs\/reference\/migration\/migrate_6_2.asciidoc","old_contents":"[[breaking-changes-6.2]]\n== Breaking changes in 6.2\n\n[[breaking_62_packaging]]\n[float]\n=== All permission bootstrap check\n\nElasticsearch installs a security manager during bootstrap to mitigate the scope\nof exploits in the JDK, in third-party dependencies, and in Elasticsearch itself\nas well as to sandbox untrusted plugins. A custom security policy can be applied\nand one permission that can be added to this policy is\n`java.security.AllPermission`. However, this effectively disables the security\nmanager. As such, granting this permission in production mode is now forbidden\nvia the <>.\n","new_contents":"[[breaking-changes-6.2]]\n== Breaking changes in 6.2\n\n[[breaking_62_packaging]]\n[float]\n=== All permission bootstrap check\n\nElasticsearch installs a security manager during bootstrap to mitigate the scope\nof exploits in the JDK, in third-party dependencies, and in Elasticsearch itself\nas well as to sandbox untrusted plugins. A custom security policy can be applied\nand one permission that can be added to this policy is\n`java.security.AllPermission`. However, this effectively disables the security\nmanager. As such, granting this permission in production mode is now forbidden\nvia the <>.\n\n=== Private temporary directory\n\nOn Linux, previous versions of Elasticsearch defaulted to using `\/tmp` as the\ntemporary directory for the process. However, `\/tmp` is public so we have\nelected to change the packaging so that we use a private temporary directory. If\nyou are upgrading from a previous version of Elasticsearch and preserve your\nexisting <>, you should add the line\n`-Djava.io.tmpdir=${ES_TMPDIR}`. It is safe to do this on all OS as we preserve\nusing a private temporary directory on non-Linux systems with the same\nmechanism.\n","subject":"Add migration note on private temporary directory","message":"Add migration note on private temporary directory\n\nThis commit adds a note to the migration docs on the packaging change to\r\nalways use a private temporary directory.\r\n\r\nRelates #27624\r\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra,strapdata\/elassandra,strapdata\/elassandra,vroyer\/elassandra,vroyer\/elassandra,strapdata\/elassandra,vroyer\/elasticassandra,vroyer\/elasticassandra,vroyer\/elassandra,strapdata\/elassandra,vroyer\/elasticassandra"} {"commit":"e6cb9d642b262c347f31e84500cb2dc1309f42f1","old_file":"docs\/java-api\/query-dsl\/type-query.asciidoc","new_file":"docs\/java-api\/query-dsl\/type-query.asciidoc","old_contents":"[[java-query-dsl-type-query]]\n==== Type Query\n\ndeprecated[7.0.0, Types are being removed, prefer filtering on a field instead. For more information, please see <>.]\n\nSee {ref}\/query-dsl-type-query.html[Type Query]\n\n[\"source\",\"java\",subs=\"attributes,callouts,macros\"]\n--------------------------------------------------\ninclude-tagged::{query-dsl-test}[type]\n--------------------------------------------------\n<1> type\n","new_contents":"[[java-query-dsl-type-query]]\n==== Type Query\n\ndeprecated[7.0.0, Types are being removed, prefer filtering on a field instead. For more information, please see {ref}\/removal-of-types.html[Removal of mapping types].]\n\nSee {ref}\/query-dsl-type-query.html[Type Query]\n\n[\"source\",\"java\",subs=\"attributes,callouts,macros\"]\n--------------------------------------------------\ninclude-tagged::{query-dsl-test}[type]\n--------------------------------------------------\n<1> type\n","subject":"Fix a broken reference to types removal in the Java API docs.","message":"Fix a broken reference to types removal in the Java API docs.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"gfyoung\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,gingerwizard\/elasticsearch,uschindler\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,robin13\/elasticsearch,robin13\/elasticsearch,uschindler\/elasticsearch,coding0011\/elasticsearch,robin13\/elasticsearch,robin13\/elasticsearch,gingerwizard\/elasticsearch,gfyoung\/elasticsearch,HonzaKral\/elasticsearch,GlenRSmith\/elasticsearch,nknize\/elasticsearch,gfyoung\/elasticsearch,nknize\/elasticsearch,GlenRSmith\/elasticsearch,scorpionvicky\/elasticsearch,GlenRSmith\/elasticsearch,GlenRSmith\/elasticsearch,uschindler\/elasticsearch,robin13\/elasticsearch,HonzaKral\/elasticsearch,nknize\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,uschindler\/elasticsearch,coding0011\/elasticsearch,uschindler\/elasticsearch,gfyoung\/elasticsearch,HonzaKral\/elasticsearch,coding0011\/elasticsearch,HonzaKral\/elasticsearch,nknize\/elasticsearch,coding0011\/elasticsearch,gingerwizard\/elasticsearch,GlenRSmith\/elasticsearch,gfyoung\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,coding0011\/elasticsearch,nknize\/elasticsearch"} {"commit":"ca448933a53331a614d8516584f7201ddbe4d7fa","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Explorer for Hawkular\n\nhttp:\/\/hawkular.org\/[Hawkular] is a set of components for Monitoring.\nThis explorer connects to a Hawkular server and allows to browse trough\ninventory and view entities, graph metrics.\n\n.Main screen with availability pop-up\nifndef::env-github[]\nimage::docs\/screenshot.png[]\nendif::[]\nifdef::env-github[]\nimage::https:\/\/github.com\/pilhuhn\/hawkfx\/blob\/master\/docs\/screenshot.png[]\nendif::[]\n\nOther functions include listing of all metrics on a system, listing of Events\/Alerts, injection of Events,\ninjection of metric values and a few more things.\n\n\n.Events list\nifndef::env-github[]\nimage::docs\/event_list.png[]\nendif::[]\nifdef::env-github[]\nimage::https:\/\/github.com\/pilhuhn\/hawkfx\/blob\/master\/docs\/event_list.png[]\nendif::[]\n\n\n== Running\n\nThe explorer requires JRuby in version 9+ and Java8\n\nIf you are using `rvm` you can select it via\n\n`rvm use jruby-9.1.5.0`\n\ninstall and use `bundler` to install the required gems\n\n`gem install bundler`\n\n`bundle install`\n\nthen run\n\n`jruby -S -G hawkfx.rb`","new_contents":"= Explorer for Hawkular\n\nhttp:\/\/hawkular.org\/[Hawkular] is a set of components for Monitoring.\nThis explorer connects to a Hawkular server and allows to browse trough\ninventory and view entities, graph metrics.\n\n.Main screen with availability pop-up\nifndef::env-github[]\nimage::docs\/screenshot.png[]\nendif::[]\nifdef::env-github[]\nimage::https:\/\/github.com\/pilhuhn\/hawkfx\/blob\/master\/docs\/screenshot.png[]\nendif::[]\n\nOther functions include listing of all metrics on a system, listing of Events\/Alerts, injection of Events,\ninjection of metric values and a few more things.\n\n\n.Events list\nifndef::env-github[]\nimage::docs\/event_list.png[]\nendif::[]\nifdef::env-github[]\nimage::https:\/\/github.com\/pilhuhn\/hawkfx\/blob\/master\/docs\/event_list.png[]\nendif::[]\n\n\n== Running\n\nThe explorer requires JRuby in version 9+ and Java8\n\nIf you are using `rvm` you can select it via\n\n`rvm use jruby-9.1.5.0`\n\ninstall and use `bundler` to install the required gems\n\n`gem install bundler`\n\n`bundle install`\n\nthen run\n\n`jruby -S -G hawkfx.rb`\n\n=== Using SSL\n\nThere is a blog post on the Hawkular\nblog http:\/\/www.hawkular.org\/blog\/2016\/09\/14\/consuming-hawkular-api-over-ssl.html[that describes how to use SSL] in Hawkular and HawkFX.","subject":"Add a blurb about SSL setup","message":"Add a blurb about SSL setup\n","lang":"AsciiDoc","license":"apache-2.0","repos":"pilhuhn\/hawkfx"} {"commit":"bdc69a259f1a9c6ed1474bc864845466131a4137","old_file":"README.asciidoc","new_file":"README.asciidoc","old_contents":"= jediterm-forge\n\nProvides https:\/\/github.com\/forge\/core\/[JBoss Forge] console component based on \nhttps:\/\/github.com\/JetBrains\/jediterm[JediTerm] for Swing applications, like IntelliJ, NetBeans, \nor standalone shell client.\n\n== Build\n\n* Clone this JediTerm repository fork:\n** `git clone https:\/\/github.com\/adamwy\/jediterm.git`\n** `git checkout 2.0`\n* Build default JediTerm target with http:\/\/ant.apache.org\/bindownload.cgi[Apache Ant]:\n** `ant`\n* Install JediTerm as Maven artifact:\n** `.\/install-jediterm-artifact \"jediterm\/build\/jediterm-terminal-2.0.jar\"`\n* Build and install this project to local Maven repository:\n** `mvn clean install`\n","new_contents":"= jediterm-forge\n\nProvides https:\/\/github.com\/forge\/core\/[JBoss Forge] console component based on \nhttps:\/\/github.com\/JetBrains\/jediterm[JediTerm] for Swing applications, like IntelliJ, NetBeans, \nor standalone shell client.\n\n== Build\n\n* Clone this JediTerm repository fork:\n** `git clone https:\/\/github.com\/adamwy\/jediterm.git`\n** `git checkout 2.0`\n* Install JediTerm as Maven artifact:\n** `.\/install-jediterm-artifact \"jediterm\/build\/jediterm-terminal-2.0.jar\"`\n* Build and install this project to local Maven repository:\n** `mvn clean install`\n","subject":"Remove JediTerm build instruction (since terminal jar is provided in repository)","message":"Remove JediTerm build instruction (since terminal jar is provided in repository)\n","lang":"AsciiDoc","license":"epl-1.0","repos":"adamwy\/jediterm-forge,adamwy\/jediterm-forge"} {"commit":"ed66e3f1c8faeeaa5eb9a5cacee5038b6cbfa3e9","old_file":"modules\/cluster-logging-kibana-interface-launch.adoc","new_file":"modules\/cluster-logging-kibana-interface-launch.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * logging\/cluster-logging-kibana-interface.adoc\n\n[id=\"cluster-logging-kibana-interface-launch_{context}\"]\n= Launching Kibana\n\nKibana is a browser-based console to query, discover, and visualize your logs through histograms, line graphs,\npie charts, heat maps, built-in geospatial support, and other visualizations.\n\n.Procedure\n\nTo launch Kibana:\n\n. In the {product-title} console, click *Monitoring* -> *Logging*.\n\n. Log in using the same credentials you use to log in to the {product-title} console.\n+\nThe Kibana interface launches. You can now:\n+\n* Search and browse your data using the Discover page.\n* Chart and map your data using the Visualize page.\n* Create and view custom dashboards using the Dashboard page.\n+\nUse and configuration of the Kibana interface is beyond the scope of this documentation. For more information,\non using the interface, see the link:https:\/\/www.elastic.co\/guide\/en\/kibana\/5.6\/connect-to-elasticsearch.html[Kibana documentation].\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * logging\/cluster-logging-kibana-interface.adoc\n\n[id=\"cluster-logging-kibana-interface-launch_{context}\"]\n= Launching Kibana\n\nKibana is a browser-based console to query, discover, and visualize your logs through histograms, line graphs,\npie charts, heat maps, built-in geospatial support, and other visualizations.\n\n.Procedure\n\nTo launch Kibana:\n\n. In the {product-title} console, click *Monitoring* -> *Logging*.\n\n. Log in using the same credentials you use to log in to the {product-title} console.\n+\nThe Kibana interface launches. You can now:\n+\n* Search and browse your data using the Discover page.\n* Chart and map your data using the Visualize page.\n* Create and view custom dashboards using the Dashboard page.\n+\nUse and configuration of the Kibana interface is beyond the scope of this documentation. For more information,\non using the interface, see the link:https:\/\/www.elastic.co\/guide\/en\/kibana\/5.6\/connect-to-elasticsearch.html[Kibana documentation].\n\n[NOTE]\n====\nIf you get a *security_exception* error in the Kibana console and cannot access your Kibana indices, you might have an expired OAuth token. If you see this error, log out of the Kibana console, and then log back in. This refreshes your OAuth tokens and you should be able to access your indices.\n====\n","subject":"Add note on Kibana OAuth refresh","message":"Add note on Kibana OAuth refresh\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"318833f165ed5f4322f8af664fe7aa2815b7298e","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Spring Boot and Two DataSources\n\nThis project demonstrates how to use two `DataSource` s with Spring Boot. \n\nIt utilizes: \n\n* Spring Data https:\/\/github.com\/spring-projects\/spring-data-jpa[JPA] \/ https:\/\/github.com\/spring-projects\/spring-data-rest[REST]\n* https:\/\/github.com\/flyway\/flyway[Flyway] migrations for the two `DataSource` s\n* Separate Hibernate properties for each `DataSource` defined in the application.yml\n* https:\/\/github.com\/thymeleaf\/thymeleaf[Thymeleaf] 3\n* https:\/\/github.com\/DataTables\/DataTablesSrc[DataTables]\n* Unit tests for components","new_contents":"= Spring Boot and Two DataSources\n\nThis project demonstrates how to use two `DataSource` s with Spring Boot. \n\nIt utilizes: \n\n* Spring Data https:\/\/github.com\/spring-projects\/spring-data-jpa[JPA] \/ https:\/\/github.com\/spring-projects\/spring-data-rest[REST]\n* https:\/\/github.com\/flyway\/flyway[Flyway] migrations for the two `DataSource` s\n* Separate Hibernate properties for each `DataSource` defined in the application.yml\n* https:\/\/github.com\/thymeleaf\/thymeleaf[Thymeleaf] 3\n* https:\/\/github.com\/DataTables\/DataTablesSrc[DataTables]\n* Unit tests for components\n\n Note: It may take a few seconds for the app to start if no one has not accessed it recently","subject":"Add note about potential slow hosted app startup","message":"Add note about potential slow hosted app startup\n","lang":"AsciiDoc","license":"unlicense","repos":"drumonii\/SpringBootTwoDataSources"} {"commit":"e8d178b53565ea5e11b47d9697c0a6030fdbadf7","old_file":"README.adoc","new_file":"README.adoc","old_contents":"== asciidoctor-fopub-embed-svg-example\n\nAn example for embedding SVG images in an asciidoctor document.\n\n=== Setup\n\n----\nbundle install\n----\n\n=== How to make the target pdf file\n\nRunning the command below make the target pdf file named \"class_diagram.pdf\" out of \"class_diagram.adoc\"\n\n----\nbundle exec rake\n----\n\n=== Watch *.adoc files\n\nRunning the command below, rake watches \"\\*.adoc\" files and build \"*.adoc\" files whenever they are modified.\n\n----\nbundle exec rake watch\n----\n","new_contents":"== asciidoctor-fopub-embed-svg-example\n\nAn example for embedding SVG images in an asciidoctor document.\n\n=== Setup\n\n----\nbundle install\n----\n\n=== How to make the target pdf file\n\nRunning the command below make the target pdf file named \"class_diagram.pdf\" out of \"class_diagram.adoc\"\n\n----\nbundle exec rake\n----\n\n=== Watch *.adoc files\n\nRunning the command below, rake watches \"\\*.adoc\" files and build \"*.adoc\" files whenever they are modified.\n\n----\nbundle exec rake watch\n----\n\n=== Example output files\n\nYou can see the example output files at\n\n* https:\/\/hnakamur.github.io\/asciidoctor-fopub-embed-svg-example\/class_diagram.pdf[class_diagram.pdf]\n* https:\/\/hnakamur.github.io\/asciidoctor-fopub-embed-svg-example\/class_diagram.html[class_diagram.html]\n","subject":"Add links for example output files","message":"Add links for example output files\n","lang":"AsciiDoc","license":"mit","repos":"hnakamur\/asciidoctor-fopub-embed-svg-example"} {"commit":"947daf68d1efe1406f2a5e7b23834032cd1991fc","old_file":"docs\/reference\/search\/request\/from-size.asciidoc","new_file":"docs\/reference\/search\/request\/from-size.asciidoc","old_contents":"[[search-request-from-size]]\n=== From \/ Size\n\nPagination of results can be done by using the `from` and `size`\nparameters. The `from` parameter defines the offset from the first\nresult you want to fetch. The `size` parameter allows you to configure\nthe maximum amount of hits to be returned.\n\nThough `from` and `size` can be set as request parameters, they can also\nbe set within the search body. `from` defaults to `0`, and `size`\ndefaults to `10`.\n\n[source,js]\n--------------------------------------------------\n{\n \"from\" : 0, \"size\" : 10,\n \"query\" : {\n \"term\" : { \"user\" : \"kimchy\" }\n }\n}\n--------------------------------------------------\n\nNote that `from` + `size` can not be more than the `index.max_result_window`\nindex setting which defaults to 10,000. See the <> or <>\nAPI for more efficient ways to do deep scrolling.\n","new_contents":"[[search-request-from-size]]\n=== From \/ Size\n\nPagination of results can be done by using the `from` and `size`\nparameters. The `from` parameter defines the offset from the first\nresult you want to fetch. The `size` parameter allows you to configure\nthe maximum amount of hits to be returned.\n\nThough `from` and `size` can be set as request parameters, they can also\nbe set within the search body. `from` defaults to `0`, and `size`\ndefaults to `10`.\n\n[source,js]\n--------------------------------------------------\nGET \/_search\n{\n \"from\" : 0, \"size\" : 10,\n \"query\" : {\n \"term\" : { \"user\" : \"kimchy\" }\n }\n}\n--------------------------------------------------\n\/\/ CONSOLE\n\n\nNote that `from` + `size` can not be more than the `index.max_result_window`\nindex setting which defaults to 10,000. See the <> or <>\nAPI for more efficient ways to do deep scrolling.\n","subject":"Add CONSOLE to from\/size docs","message":"Add CONSOLE to from\/size docs\n\nRelates to #18160\n","lang":"AsciiDoc","license":"apache-2.0","repos":"a2lin\/elasticsearch,qwerty4030\/elasticsearch,liweinan0423\/elasticsearch,mohit\/elasticsearch,myelin\/elasticsearch,StefanGor\/elasticsearch,spiegela\/elasticsearch,obourgain\/elasticsearch,IanvsPoplicola\/elasticsearch,shreejay\/elasticsearch,shreejay\/elasticsearch,JSCooke\/elasticsearch,Shepard1212\/elasticsearch,obourgain\/elasticsearch,avikurapati\/elasticsearch,trangvh\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,ZTE-PaaS\/elasticsearch,shreejay\/elasticsearch,sneivandt\/elasticsearch,fred84\/elasticsearch,mohit\/elasticsearch,awislowski\/elasticsearch,IanvsPoplicola\/elasticsearch,camilojd\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,avikurapati\/elasticsearch,i-am-Nathan\/elasticsearch,avikurapati\/elasticsearch,strapdata\/elassandra5-rc,wangtuo\/elasticsearch,coding0011\/elasticsearch,LewayneNaidoo\/elasticsearch,rajanm\/elasticsearch,Shepard1212\/elasticsearch,umeshdangat\/elasticsearch,glefloch\/elasticsearch,njlawton\/elasticsearch,HonzaKral\/elasticsearch,zkidkid\/elasticsearch,masaruh\/elasticsearch,zkidkid\/elasticsearch,mortonsykes\/elasticsearch,winstonewert\/elasticsearch,JackyMai\/elasticsearch,rajanm\/elasticsearch,awislowski\/elasticsearch,gingerwizard\/elasticsearch,ZTE-PaaS\/elasticsearch,cwurm\/elasticsearch,dpursehouse\/elasticsearch,nilabhsagar\/elasticsearch,camilojd\/elasticsearch,Shepard1212\/elasticsearch,fernandozhu\/elasticsearch,Stacey-Gammon\/elasticsearch,nezirus\/elasticsearch,mikemccand\/elasticsearch,masaruh\/elasticsearch,henakamaMSFT\/elasticsearch,a2lin\/elasticsearch,strapdata\/elassandra,C-Bish\/elasticsearch,sneivandt\/elasticsearch,palecur\/elasticsearch,bawse\/elasticsearch,LewayneNaidoo\/elasticsearch,awislowski\/elasticsearch,JSCooke\/elasticsearch,jprante\/elasticsearch,camilojd\/elasticsearch,trangvh\/elasticsearch,obourgain\/elasticsearch,JervyShi\/elasticsearch,umeshdangat\/elasticsearch,brandonkearby\/elasticsearch,artnowo\/elasticsearch,brandonkearby\/elasticsearch,s1monw\/elasticsearch,sneivandt\/elasticsearch,alexshadow007\/elasticsearch,ricardocerq\/elasticsearch,fforbeck\/elasticsearch,nilabhsagar\/elasticsearch,geidies\/elasticsearch,a2lin\/elasticsearch,nknize\/elasticsearch,camilojd\/elasticsearch,mohit\/elasticsearch,nezirus\/elasticsearch,jprante\/elasticsearch,palecur\/elasticsearch,Helen-Zhao\/elasticsearch,mikemccand\/elasticsearch,obourgain\/elasticsearch,jimczi\/elasticsearch,palecur\/elasticsearch,scorpionvicky\/elasticsearch,awislowski\/elasticsearch,s1monw\/elasticsearch,scottsom\/elasticsearch,camilojd\/elasticsearch,uschindler\/elasticsearch,mjason3\/elasticsearch,gmarz\/elasticsearch,alexshadow007\/elasticsearch,geidies\/elasticsearch,fforbeck\/elasticsearch,artnowo\/elasticsearch,maddin2016\/elasticsearch,mjason3\/elasticsearch,obourgain\/elasticsearch,girirajsharma\/elasticsearch,myelin\/elasticsearch,MisterAndersen\/elasticsearch,wangtuo\/elasticsearch,GlenRSmith\/elasticsearch,gfyoung\/elasticsearch,girirajsharma\/elasticsearch,wenpos\/elasticsearch,fred84\/elasticsearch,gfyoung\/elasticsearch,awislowski\/elasticsearch,IanvsPoplicola\/elasticsearch,wenpos\/elasticsearch,gmarz\/elasticsearch,ricardocerq\/elasticsearch,s1monw\/elasticsearch,myelin\/elasticsearch,spiegela\/elasticsearch,myelin\/elasticsearch,njlawton\/elasticsearch,strapdata\/elassandra5-rc,gmarz\/elasticsearch,bawse\/elasticsearch,fred84\/elasticsearch,GlenRSmith\/elasticsearch,yanjunh\/elasticsearch,camilojd\/elasticsearch,ZTE-PaaS\/elasticsearch,LeoYao\/elasticsearch,JackyMai\/elasticsearch,trangvh\/elasticsearch,ZTE-PaaS\/elasticsearch,strapdata\/elassandra5-rc,kalimatas\/elasticsearch,JervyShi\/elasticsearch,geidies\/elasticsearch,qwerty4030\/elasticsearch,MisterAndersen\/elasticsearch,brandonkearby\/elasticsearch,markwalkom\/elasticsearch,LewayneNaidoo\/elasticsearch,cwurm\/elasticsearch,glefloch\/elasticsearch,spiegela\/elasticsearch,glefloch\/elasticsearch,ricardocerq\/elasticsearch,masaruh\/elasticsearch,elasticdog\/elasticsearch,cwurm\/elasticsearch,umeshdangat\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,uschindler\/elasticsearch,strapdata\/elassandra5-rc,avikurapati\/elasticsearch,wenpos\/elasticsearch,Helen-Zhao\/elasticsearch,markwalkom\/elasticsearch,nezirus\/elasticsearch,rajanm\/elasticsearch,liweinan0423\/elasticsearch,kalimatas\/elasticsearch,JervyShi\/elasticsearch,MisterAndersen\/elasticsearch,elasticdog\/elasticsearch,girirajsharma\/elasticsearch,robin13\/elasticsearch,i-am-Nathan\/elasticsearch,wangtuo\/elasticsearch,pozhidaevak\/elasticsearch,mjason3\/elasticsearch,artnowo\/elasticsearch,pozhidaevak\/elasticsearch,sreeramjayan\/elasticsearch,HonzaKral\/elasticsearch,coding0011\/elasticsearch,mjason3\/elasticsearch,GlenRSmith\/elasticsearch,bawse\/elasticsearch,nknize\/elasticsearch,spiegela\/elasticsearch,girirajsharma\/elasticsearch,maddin2016\/elasticsearch,umeshdangat\/elasticsearch,masaruh\/elasticsearch,wangtuo\/elasticsearch,zkidkid\/elasticsearch,wenpos\/elasticsearch,strapdata\/elassandra5-rc,MisterAndersen\/elasticsearch,winstonewert\/elasticsearch,yanjunh\/elasticsearch,maddin2016\/elasticsearch,rajanm\/elasticsearch,geidies\/elasticsearch,lks21c\/elasticsearch,brandonkearby\/elasticsearch,sreeramjayan\/elasticsearch,LeoYao\/elasticsearch,StefanGor\/elasticsearch,JackyMai\/elasticsearch,fernandozhu\/elasticsearch,rajanm\/elasticsearch,cwurm\/elasticsearch,jprante\/elasticsearch,yanjunh\/elasticsearch,C-Bish\/elasticsearch,pozhidaevak\/elasticsearch,naveenhooda2000\/elasticsearch,jimczi\/elasticsearch,Shepard1212\/elasticsearch,nazarewk\/elasticsearch,jprante\/elasticsearch,gingerwizard\/elasticsearch,gingerwizard\/elasticsearch,ricardocerq\/elasticsearch,umeshdangat\/elasticsearch,kalimatas\/elasticsearch,elasticdog\/elasticsearch,qwerty4030\/elasticsearch,mortonsykes\/elasticsearch,naveenhooda2000\/elasticsearch,jprante\/elasticsearch,naveenhooda2000\/elasticsearch,elasticdog\/elasticsearch,LeoYao\/elasticsearch,vroyer\/elassandra,glefloch\/elasticsearch,nazarewk\/elasticsearch,mortonsykes\/elasticsearch,mikemccand\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,robin13\/elasticsearch,henakamaMSFT\/elasticsearch,fforbeck\/elasticsearch,dongjoon-hyun\/elasticsearch,mortonsykes\/elasticsearch,gfyoung\/elasticsearch,wuranbo\/elasticsearch,JackyMai\/elasticsearch,henakamaMSFT\/elasticsearch,StefanGor\/elasticsearch,qwerty4030\/elasticsearch,masaruh\/elasticsearch,nilabhsagar\/elasticsearch,nknize\/elasticsearch,HonzaKral\/elasticsearch,fforbeck\/elasticsearch,StefanGor\/elasticsearch,a2lin\/elasticsearch,Helen-Zhao\/elasticsearch,vroyer\/elasticassandra,StefanGor\/elasticsearch,i-am-Nathan\/elasticsearch,MaineC\/elasticsearch,coding0011\/elasticsearch,gfyoung\/elasticsearch,fernandozhu\/elasticsearch,robin13\/elasticsearch,JervyShi\/elasticsearch,yanjunh\/elasticsearch,vroyer\/elasticassandra,coding0011\/elasticsearch,glefloch\/elasticsearch,lks21c\/elasticsearch,GlenRSmith\/elasticsearch,elasticdog\/elasticsearch,njlawton\/elasticsearch,girirajsharma\/elasticsearch,vroyer\/elasticassandra,vroyer\/elassandra,MaineC\/elasticsearch,LeoYao\/elasticsearch,sreeramjayan\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,alexshadow007\/elasticsearch,winstonewert\/elasticsearch,MaineC\/elasticsearch,strapdata\/elassandra,mohit\/elasticsearch,nazarewk\/elasticsearch,sneivandt\/elasticsearch,markwalkom\/elasticsearch,JSCooke\/elasticsearch,lks21c\/elasticsearch,gmarz\/elasticsearch,LewayneNaidoo\/elasticsearch,qwerty4030\/elasticsearch,i-am-Nathan\/elasticsearch,vroyer\/elassandra,robin13\/elasticsearch,JSCooke\/elasticsearch,nknize\/elasticsearch,rlugojr\/elasticsearch,cwurm\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mjason3\/elasticsearch,LeoYao\/elasticsearch,ricardocerq\/elasticsearch,a2lin\/elasticsearch,gingerwizard\/elasticsearch,geidies\/elasticsearch,alexshadow007\/elasticsearch,C-Bish\/elasticsearch,markwalkom\/elasticsearch,palecur\/elasticsearch,artnowo\/elasticsearch,henakamaMSFT\/elasticsearch,fforbeck\/elasticsearch,sreeramjayan\/elasticsearch,njlawton\/elasticsearch,MisterAndersen\/elasticsearch,kalimatas\/elasticsearch,njlawton\/elasticsearch,i-am-Nathan\/elasticsearch,artnowo\/elasticsearch,trangvh\/elasticsearch,Helen-Zhao\/elasticsearch,Stacey-Gammon\/elasticsearch,JSCooke\/elasticsearch,geidies\/elasticsearch,nezirus\/elasticsearch,fernandozhu\/elasticsearch,bawse\/elasticsearch,JervyShi\/elasticsearch,Stacey-Gammon\/elasticsearch,Stacey-Gammon\/elasticsearch,scottsom\/elasticsearch,strapdata\/elassandra,dongjoon-hyun\/elasticsearch,scottsom\/elasticsearch,dpursehouse\/elasticsearch,naveenhooda2000\/elasticsearch,scottsom\/elasticsearch,liweinan0423\/elasticsearch,MaineC\/elasticsearch,rlugojr\/elasticsearch,C-Bish\/elasticsearch,mortonsykes\/elasticsearch,bawse\/elasticsearch,maddin2016\/elasticsearch,Stacey-Gammon\/elasticsearch,mikemccand\/elasticsearch,wuranbo\/elasticsearch,nknize\/elasticsearch,IanvsPoplicola\/elasticsearch,dongjoon-hyun\/elasticsearch,markwalkom\/elasticsearch,s1monw\/elasticsearch,kalimatas\/elasticsearch,uschindler\/elasticsearch,liweinan0423\/elasticsearch,shreejay\/elasticsearch,jimczi\/elasticsearch,coding0011\/elasticsearch,fernandozhu\/elasticsearch,jimczi\/elasticsearch,uschindler\/elasticsearch,scorpionvicky\/elasticsearch,nilabhsagar\/elasticsearch,palecur\/elasticsearch,maddin2016\/elasticsearch,gmarz\/elasticsearch,dpursehouse\/elasticsearch,mikemccand\/elasticsearch,nazarewk\/elasticsearch,lks21c\/elasticsearch,strapdata\/elassandra,winstonewert\/elasticsearch,wangtuo\/elasticsearch,LewayneNaidoo\/elasticsearch,IanvsPoplicola\/elasticsearch,s1monw\/elasticsearch,GlenRSmith\/elasticsearch,gingerwizard\/elasticsearch,LeoYao\/elasticsearch,uschindler\/elasticsearch,dongjoon-hyun\/elasticsearch,Shepard1212\/elasticsearch,ZTE-PaaS\/elasticsearch,sreeramjayan\/elasticsearch,alexshadow007\/elasticsearch,jimczi\/elasticsearch,wenpos\/elasticsearch,nilabhsagar\/elasticsearch,HonzaKral\/elasticsearch,rajanm\/elasticsearch,rlugojr\/elasticsearch,myelin\/elasticsearch,scorpionvicky\/elasticsearch,brandonkearby\/elasticsearch,markwalkom\/elasticsearch,fred84\/elasticsearch,JervyShi\/elasticsearch,gfyoung\/elasticsearch,henakamaMSFT\/elasticsearch,Helen-Zhao\/elasticsearch,mohit\/elasticsearch,wuranbo\/elasticsearch,zkidkid\/elasticsearch,shreejay\/elasticsearch,fred84\/elasticsearch,nezirus\/elasticsearch,C-Bish\/elasticsearch,wuranbo\/elasticsearch,strapdata\/elassandra,nazarewk\/elasticsearch,MaineC\/elasticsearch,winstonewert\/elasticsearch,girirajsharma\/elasticsearch,spiegela\/elasticsearch,avikurapati\/elasticsearch,robin13\/elasticsearch,sreeramjayan\/elasticsearch,naveenhooda2000\/elasticsearch,pozhidaevak\/elasticsearch,rlugojr\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,lks21c\/elasticsearch,dongjoon-hyun\/elasticsearch,liweinan0423\/elasticsearch,gingerwizard\/elasticsearch,rlugojr\/elasticsearch,wuranbo\/elasticsearch,pozhidaevak\/elasticsearch,trangvh\/elasticsearch,scorpionvicky\/elasticsearch,JackyMai\/elasticsearch,sneivandt\/elasticsearch,scottsom\/elasticsearch,zkidkid\/elasticsearch,LeoYao\/elasticsearch,yanjunh\/elasticsearch,dpursehouse\/elasticsearch,dpursehouse\/elasticsearch"} {"commit":"c89c7319b25f77de2f19ee422e0d0920db5b7d83","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= griffon-configuration-plugin\n:linkattrs:\n:project-name: griffon-configuration-plugin\n\nimage:http:\/\/img.shields.io\/travis\/griffon-plugins\/{project-name}\/master.svg[\"Build Status\", link=\"https:\/\/travis-ci.org\/griffon-plugins\/{project-name}\"]\nimage:http:\/\/img.shields.io\/coveralls\/griffon-plugins\/{project-name}\/master.svg[\"Coverage Status\", link=\"https:\/\/coveralls.io\/r\/griffon-plugins\/{project-name}\"]\nimage:http:\/\/img.shields.io\/badge\/license-ASF2-blue.svg[\"Apache License 2\", link=\"http:\/\/www.apache.org\/licenses\/LICENSE-2.0.txt\"]\nimage:https:\/\/api.bintray.com\/packages\/griffon\/griffon-plugins\/{project-name}\/images\/download.svg[link=\"https:\/\/bintray.com\/griffon\/griffon-plugins\/{project-name}\/_latestVersion\"]\n\n---\n\nProvides additional configuration formats such as YAML and JSON.\n\nRefer to the link:http:\/\/griffon-plugins.github.io\/griffon-configuration-plugin\/[plugin guide, window=\"_blank\"] for\nfurther information on configuration and usage.\n","new_contents":"= griffon-configuration-plugin\n:linkattrs:\n:project-name: griffon-configuration-plugin\n\nimage:http:\/\/img.shields.io\/travis\/griffon-plugins\/{project-name}\/master.svg[\"Build Status\", link=\"https:\/\/travis-ci.org\/griffon-plugins\/{project-name}\"]\nimage:http:\/\/img.shields.io\/coveralls\/griffon-plugins\/{project-name}\/master.svg[\"Coverage Status\", link=\"https:\/\/coveralls.io\/r\/griffon-plugins\/{project-name}\"]\nimage:http:\/\/img.shields.io\/badge\/license-ASF2-blue.svg[\"Apache License 2\", link=\"http:\/\/www.apache.org\/licenses\/LICENSE-2.0.txt\"]\nimage:https:\/\/api.bintray.com\/packages\/griffon\/griffon-plugins\/{project-name}\/images\/download.svg[link=\"https:\/\/bintray.com\/griffon\/griffon-plugins\/{project-name}\/_latestVersion\"]\n\n---\n\nimage:https:\/\/img.shields.io\/gitter\/room\/griffon\/griffon.js.svg[link=\"https:\/\/gitter.im\/griffon\/griffon]\nimage:https:\/\/img.shields.io\/badge\/donations-Patreon-orange.svg[https:\/\/www.patreon.com\/user?u=6609318]\n\n---\n\nProvides additional configuration formats such as YAML and JSON.\n\nRefer to the link:http:\/\/griffon-plugins.github.io\/griffon-configuration-plugin\/[plugin guide, window=\"_blank\"] for\nfurther information on configuration and usage.\n","subject":"Add Patreon badge to readme","message":"Add Patreon badge to readme\n","lang":"AsciiDoc","license":"apache-2.0","repos":"griffon-plugins\/griffon-configuration-plugin"} {"commit":"b6b92fa99a37bad480c72b85c740bb2b249c6a08","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Opal Runtime for Node.js\n\nifdef::env-github[]\nimage:https:\/\/img.shields.io\/travis\/mogztter\/opal-runtime\/master.svg[Travis build status, link=https:\/\/travis-ci.org\/mogztter\/opal-runtime]\nimage:http:\/\/img.shields.io\/npm\/v\/opal-runtime.svg[npm version, link=https:\/\/www.npmjs.org\/package\/opal-runtime]\nendif::[]\n\n== Usage\n\n```javascript\nvar Opal = require('opal-runtime').Opal;\n\/\/ Now let's have fun with Opal!\n```\n","new_contents":"= Opal Runtime for Node.js\n\nifdef::env-github[]\nimage:https:\/\/img.shields.io\/travis\/Mogztter\/opal-node-runtime\/master.svg[Travis build status, link=https:\/\/travis-ci.org\/Mogztter\/opal-node-runtime]\nimage:http:\/\/img.shields.io\/npm\/v\/opal-runtime.svg[npm version, link=https:\/\/www.npmjs.org\/package\/opal-runtime]\nendif::[]\n\n== Usage\n\n```javascript\nvar Opal = require('opal-runtime').Opal;\n\/\/ Now let's have fun with Opal!\n```\n","subject":"Upgrade Travis build status badge","message":"Upgrade Travis build status badge","lang":"AsciiDoc","license":"mit","repos":"Mogztter\/opal-node-runtime"} {"commit":"f929032a796496046819cac1342d75479d2fbdb6","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= flexy-pool\nAuthor \nv1.0.0, 2014-02-25\n\n:homepage: http:\/\/vladmihalcea.com\/\n\n== Introduction\n\nThe flexy-pool library brings adaptability to a given Connection Pool, allowing it to resize on demand.\nThis is very handy since most connection pools offer a limited set of dynamic configuration strategies.\n\n== Features \n\n* extensive connection pool support\n** http:\/\/docs.codehaus.org\/display\/BTM\/Home[Bitronix Transaction Manager]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP2]\n** http:\/\/www.mchange.com\/projects\/c3p0\/[C3P0]\n** http:\/\/jolbox.com\/[BoneCP]\n** http:\/\/brettwooldridge.github.io\/HikariCP\/[HikariCP]\n* statistics support\n** source connection acquiring time histogram\n** total connection acquiring time histogram\n** retries attempts histogram\n** maximum CP size histogram\n** connection request count histogram\n** connection lease time histogram\n\n== Documentation \n\n. https:\/\/github.com\/vladmihalcea\/flexy-pool\/wiki\/Installation-Guide[Installation Guide]\n. https:\/\/github.com\/vladmihalcea\/flexy-pool\/wiki\/User-Guide[User Guide]\n\nIMPORTANT: Flexy Pool has not yet been released to OSS Maven Repository.\n","new_contents":"= flexy-pool\nAuthor \nv1.0.0, 2014-02-25\n\n:homepage: http:\/\/vladmihalcea.com\/\n\n== Introduction\n\nThe flexy-pool library brings adaptability to a given Connection Pool, allowing it to resize on demand.\nThis is very handy since most connection pools offer a limited set of dynamic configuration strategies.\n\n== Features \n\n* extensive connection pool support\n** http:\/\/docs.codehaus.org\/display\/BTM\/Home[Bitronix Transaction Manager]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP2]\n** http:\/\/www.mchange.com\/projects\/c3p0\/[C3P0]\n** http:\/\/jolbox.com\/[BoneCP]\n** http:\/\/brettwooldridge.github.io\/HikariCP\/[HikariCP]\n* statistics support\n** source connection acquiring time histogram\n** total connection acquiring time histogram\n** retries attempts histogram\n** maximum CP size histogram\n** connection request count histogram\n** connection lease time histogram\n\n== Documentation \n\n. https:\/\/github.com\/vladmihalcea\/flexy-pool\/wiki\/Installation-Guide[Installation Guide]\n. https:\/\/github.com\/vladmihalcea\/flexy-pool\/wiki\/User-Guide[User Guide]\n\n[IMPORTANT]\nFlexy Pool has not yet been released to OSS Maven Repository.\n","subject":"Add IMPORTANT section for Release status","message":"Add IMPORTANT section for Release status\n","lang":"AsciiDoc","license":"apache-2.0","repos":"mosoft521\/flexy-pool,wgpshashank\/flexy-pool,vladmihalcea\/flexy-pool"} {"commit":"2ed2d5cd42b1734bf2f3fd932c9aaceee65959d3","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Spring Boot, AngularJS 2, Kotlin demo\n\nThis is a demo which shows how to use Spring Boot, Spring Data JPA and AngularJS 2.\nThe demo is an implementation of Angular's Tour of Heroes tutorial. The demo is written in Kotlin and TypeScript.\n\nThe Heroes are stored in an in-memory H2 database. The H2 schema is managed by Flyway.\n\nYou can start the AngularJS 2 App and access it on `http:\/\/localhost:3000`:\n\n`gradlew npmStartServer`\n\nYou can start the Spring Boot App and access it on `http:\/\/localhost:8090`:\n\n`gradlew bootRun`\n\nWebpack proxies the request from Angular2 to Spring Boot.\n\nTODOs:\n\n- [x] Implement Angular's Tour of Heroes tutorial\n- Add Angular2 app as a static resource to the Spring Boot app\n- Implement authentication\/authorization with Spring Security and JWT Tokens\n\n== Angular's Tour of Heroes\n\nimage:docs\/tutorial.JPG[]\n","new_contents":"= Spring Boot, AngularJS 2, Kotlin demo\n\nThis is a demo which shows how to use Spring Boot, Spring Data JPA and AngularJS 2.\nThe demo is an implementation of Angular's Tour of Heroes tutorial. The demo is written in Kotlin and TypeScript.\n\nThe Heroes are stored in an in-memory H2 database. The H2 schema is managed by Flyway.\n\nYou can start the Angular2 App and access it on `http:\/\/localhost:3000`:\n\n`gradlew npmStartServer`\n\nYou can start the Spring Boot App and access it on `http:\/\/localhost:8090`:\n\n`gradlew bootRun`\n\nWebpack proxies the request from Angular2 to Spring Boot.\n\nYou can package the Spring Boot App and Angular2 App into one Jar file:\n\n`gradlew build`\n\n\nThe Angular2 App is served as static content under `http:\/\/localhost:8090\/index.html, when you start the application`:\n\n`java -jar spring-boot-server-0.1.0.jar`\n\nTODOs:\n\n- [x] Implement Angular's Tour of Heroes tutorial\n- Add Angular2 app as a static resource to the Spring Boot app\n- Implement authentication\/authorization with Spring Security and JWT Tokens\n\n== Angular's Tour of Heroes\n\nimage:docs\/tutorial.JPG[]\n","subject":"Add angular2-ui as a dependency to spring-boot-server","message":"Add angular2-ui as a dependency to spring-boot-server\n","lang":"AsciiDoc","license":"apache-2.0","repos":"RobWin\/springboot-angular2-kotlin-demo,RobWin\/springboot-angular2-kotlin-demo,RobWin\/springboot-angular2-kotlin-demo,RobWin\/springboot-angular2-kotlin-demo"} {"commit":"85d30b22bb8c2b74dfe8351533b4f4795319fd0b","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Flexy Pool\nAuthor \nv1.0.0, 2014-02-25\n\n:homepage: http:\/\/vladmihalcea.com\/\n\n== Introduction\n\nThe Flexy Pool library brings adaptability to a given Connection Pool, allowing it to resize on demand.\nThis is very handy since most connection pools offer a limited set of dynamic configuration strategies.\n\n== Features \n\n* extensive connection pool support\n** http:\/\/docs.codehaus.org\/display\/BTM\/Home[Bitronix Transaction Manager]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP2]\n** http:\/\/www.mchange.com\/projects\/c3p0\/[C3P0]\n** http:\/\/jolbox.com\/[BoneCP]\n** http:\/\/brettwooldridge.github.io\/HikariCP\/[HikariCP]\n* statistics support\n** source connection acquiring time histogram\n** total connection acquiring time histogram\n** retries attempts histogram\n** maximum CP size histogram\n** connection request count histogram\n** connection lease time histogram\n\n== Documentation \n\n. https:\/\/github.com\/vladmihalcea\/flexy-pool\/wiki\/Installation-Guide[Installation Guide]\n. https:\/\/github.com\/vladmihalcea\/flexy-pool\/wiki\/User-Guide[User Guide]\n","new_contents":"= Flexy Pool\nAuthor \nv1.0.0, 2014-02-25\n\n:homepage: http:\/\/vladmihalcea.com\/\n\n== Introduction\n\nThe Flexy Pool library brings adaptability to a given Connection Pool, allowing it to resize on demand.\nThis is very handy since most connection pools offer a limited set of dynamic configuration strategies.\n\nimage::https:\/\/raw.githubusercontent.com\/wiki\/vladmihalcea\/flexy-pool\/image\/architecture\/FlexyPoolArchitecture.gif[Flexy Pool Architecture]\n\n== Features \n\n* extensive connection pool support\n** http:\/\/docs.codehaus.org\/display\/BTM\/Home[Bitronix Transaction Manager]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP2]\n** http:\/\/www.mchange.com\/projects\/c3p0\/[C3P0]\n** http:\/\/jolbox.com\/[BoneCP]\n** http:\/\/brettwooldridge.github.io\/HikariCP\/[HikariCP]\n* statistics support\n** source connection acquiring time histogram\n** total connection acquiring time histogram\n** retries attempts histogram\n** maximum CP size histogram\n** connection request count histogram\n** connection lease time histogram\n\n== Documentation \n\n. https:\/\/github.com\/vladmihalcea\/flexy-pool\/wiki\/Installation-Guide[Installation Guide]\n. https:\/\/github.com\/vladmihalcea\/flexy-pool\/wiki\/User-Guide[User Guide]\n","subject":"Add Flexy Pool Architecture diagram","message":"Add Flexy Pool Architecture diagram","lang":"AsciiDoc","license":"apache-2.0","repos":"mosoft521\/flexy-pool,wgpshashank\/flexy-pool,vladmihalcea\/flexy-pool"} {"commit":"392d8f309d4748e31a1381f15a5bb69d3dff9574","old_file":"modules\/storage-persistent-storage-nfs-selinux.adoc","new_file":"modules\/storage-persistent-storage-nfs-selinux.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * storage\/persistent_storage\/persistent-storage-nfs.adoc\n\n[id=\"nfs-selinux_{context}\"]\n= SELinux\n\nBy default, SELinux does not allow writing from a Pod to a remote\nNFS server. The NFS volume mounts correctly, but is read-only.\n\nTo enable writing to a remote NFS server, follow the below procedure.\n\n.Prerequisites\n\n* The `container-selinux` package must be installed. This package provides\nthe `virt_use_nfs` SELinux boolean.\n\n.Procedure\n\n* Enable the `virt_use_nfs` boolean using the following command.\nThe `-P` option makes this boolean persistent across reboots.\n+\n[source,terminal]\n----\n# setsebool -P virt_use_nfs 1\n----\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * storage\/persistent_storage\/persistent-storage-nfs.adoc\n\n[id=\"nfs-selinux_{context}\"]\n= SELinux\n\n{op-system-base-full} and {op-system-first} systems are configured to use SELinux on remote NFS servers by default.\n\nFor non-{op-system-base} and non-{op-system} systems, SELinux does not allow writing from a pod to a remote NFS server. The NFS volume mounts correctly but it is read-only. You will need to enable the correct SELinux permissions by using the following procedure.\n\n.Prerequisites\n\n* The `container-selinux` package must be installed. This package provides the `virt_use_nfs` SELinux boolean.\n\n.Procedure\n\n* Enable the `virt_use_nfs` boolean using the following command. The `-P` option makes this boolean persistent across reboots.\n+\n[source,terminal]\n----\n# setsebool -P virt_use_nfs 1\n----\n","subject":"Fix ISSUE-23216 - add RHEL note","message":"Fix ISSUE-23216 - add RHEL note\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"4ba7f4fa8999a7130388caf30344f04f68f7d491","old_file":"src\/main\/jbake\/content\/docs\/overview\/getting-started.adoc","new_file":"src\/main\/jbake\/content\/docs\/overview\/getting-started.adoc","old_contents":"= Getting Started\nGary Brown\n2015-04-21\n:description: How to get started with Scribble\n:jbake-type: page\n:jbake-status: published\n:icons: font\n\n== Getting Started with Scribble.\n\n----\nmodule examples;\n\nglobal protocol HelloWorld(role Me, role World) {\n\thello(Greetings) from Me to World;\n\tchoice at World {\n\t\tgoodMorning(Compliments) from World to Me;\n\t} or {\n\t\tgoodAfternoon(Salutations) from World to Me;\n\t}\n}\n----\n\nA very simply example, but this illustrates the basic syntax for a hello world interaction, where a party performing the role Me sends a message of type Greetings to another party performing the role 'World', who subsequently makes a decision which determines which path of the choice will be followed, resulting in a GoodMorning or GoodAfternoon message being exchanged.\n\n\n=== Working on Scribble source\n\nIf you are interested in building Scribble from source, then check out\nlink:\/docs\/dev\/developer-guide.html[Development resources]\n\n\n\n\n","new_contents":"= Getting Started\nGary Brown\n2015-04-21\n:description: How to get started with Scribble\n:jbake-type: page\n:jbake-status: published\n:icons: font\n\n== Getting Started with Scribble.\n\n----\nmodule example;\n\ntype \"{http:\/\/www.acme.com\/types}Greetings\" from \"http:\/\/www.acme.com\/types\/Greetings.xsd\" as Greetings;\ntype \"{http:\/\/www.acme.com\/types}Compliments\" from \"http:\/\/www.acme.com\/types\/Compliments.xsd\" as Compliments;\ntype \"{http:\/\/www.acme.com\/types}Salutations\" from \"http:\/\/www.acme.com\/types\/Salutations.xsd\" as Salutations;\n\nglobal protocol HelloWorld(role Me, role World) {\n\thello(Greetings) from Me to World;\n\tchoice at World {\n\t\tgoodMorning(Compliments) from World to Me;\n\t} or {\n\t\tgoodAfternoon(Salutations) from World to Me;\n\t}\n}\n----\n\nA very simply example, but this illustrates the basic syntax for a hello world interaction, where a party performing the role Me sends a message of type Greetings to another party performing the role 'World', who subsequently makes a decision which determines which path of the choice will be followed, resulting in a _goodMorning_ or _goodAfternoon_ message being exchanged.\n\n\n=== Working on Scribble source\n\nIf you are interested in building Scribble from source, then check out\nlink:\/docs\/dev\/developer-guide.html[Development resources]\n\n\n\n\n","subject":"Add message types to example","message":"Add message types to example\n","lang":"AsciiDoc","license":"apache-2.0","repos":"scribble\/scribble.github.io,scribble\/scribble.github.io,scribble\/scribble.github.io,scribble\/scribble.github.io,scribble\/scribble.github.io"} {"commit":"538ceeee7a3a583f40e6f2ad236e2a7c47993ac6","old_file":"docs\/src\/main\/asciidoc\/spring-cloud-cloudfoundry.adoc","new_file":"docs\/src\/main\/asciidoc\/spring-cloud-cloudfoundry.adoc","old_contents":"= Spring Cloud for Cloud Foundry\n\ninclude::intro.adoc[]\n\nThe first time you use it the discovery client might be slow owing to\nthe fact that it has to get an access token from Cloud Foundry.\n\n== Quickstart\n\ninclude::quickstart.adoc[]\n\n=== Single Sign On\n\nNOTE: All of the OAuth2 SSO and resource server features moved to Spring Boot\nin version 1.3. You can find documentation in the \nhttp:\/\/docs.spring.io\/spring-boot\/docs\/current\/reference\/htmlsingle\/[Spring Boot user guide].\n\nThis project provides automatic binding from CloudFoundry service\ncredentials to the Spring Boot features. If you have a CloudFoundry\nservice called \"sso\", for instance, with credentials containing\n\"client_id\", \"client_secret\" and \"auth_domain\", it will bind\nautomatically to the Spring OAuth2 client that you enable with\n`@EnableOAuth2Sso` (from Spring Boot). The name of the service can be\nparameterized using `spring.oauth2.sso.serviceId`.\n\n","new_contents":"= Spring Cloud for Cloud Foundry\n\ninclude::intro.adoc[]\n\nThe first time you use it the discovery client might be slow owing to\nthe fact that it has to get an access token from Cloud Foundry.\n\n== Discovery\n\ninclude::quickstart.adoc[]\n\n== Single Sign On\n\nNOTE: All of the OAuth2 SSO and resource server features moved to Spring Boot\nin version 1.3. You can find documentation in the \nhttp:\/\/docs.spring.io\/spring-boot\/docs\/current\/reference\/htmlsingle\/[Spring Boot user guide].\n\nThis project provides automatic binding from CloudFoundry service\ncredentials to the Spring Boot features. If you have a CloudFoundry\nservice called \"sso\", for instance, with credentials containing\n\"client_id\", \"client_secret\" and \"auth_domain\", it will bind\nautomatically to the Spring OAuth2 client that you enable with\n`@EnableOAuth2Sso` (from Spring Boot). The name of the service can be\nparameterized using `spring.oauth2.sso.serviceId`.\n\n","subject":"Make it obvious the docs are about Discovery","message":"Make it obvious the docs are about Discovery\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spring-cloud\/spring-cloud-cloudfoundry,spring-cloud\/spring-cloud-cloudfoundry"} {"commit":"ca2d7a5d99779a350b25e5fee02b5b12b08f9293","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Minimal-J\n\nJava - but small.\n\nimage::doc\/frontends.png[]\n\nMinimal-J applications are\n\n* Responsive to use on every device\n* Straight forward to specify and implement and therefore\n* Easy to plan and manage\n\n=== Idea\n\nBusiness applications tend to get complex and complicated. Minimal-J prevents this by setting clear rules how an application should behave and how it should be implemented.\n\nMinimal applications may not always look the same. But the UI concepts never change. There are no surprises for the user.\n\n== Technical Features\n\n* Independent of the used UI technology. Implementations for Web \/ Mobile \/ Desktop.\n* ORM persistence layer for Maria DB or in memory DB. Transactions and Authorization supported.\n* Small: The minimalj.jar is still < 1MB\n* Very few dependencies\n* Applications can run standalone (like SpringBoot)\n\n== Documentation\n\n* link:doc\/user_guide\/user_guide.adoc[Minimal user guide] User guide for Minimal-J applications.\n* link:doc\/topics.adoc[Tutorial and examples] Informations for developers.\n* link:doc\/release_notes.adoc[Release Notes]\n\n== Hello World\n\nHow to implement Hello World in Minimal-J:\n\nlink:_includes\/ex-video.adoc[]\n\nvideo::0VHz7gv6TpA[youtube]\n\n=== Contact\n\n* Bruno Eberhard, mailto:minimalj@hispeed.ch[minimalj@hispeed.ch] ","new_contents":"= Minimal-J\n\nJava - but small.\n\nimage::doc\/frontends.png[]\n\nMinimal-J applications are\n\n* Responsive to use on every device\n* Straight forward to specify and implement and therefore\n* Easy to plan and manage\n\n=== Idea\n\nBusiness applications tend to get complex and complicated. Minimal-J prevents this by setting clear rules how an application should behave and how it should be implemented.\n\nMinimal applications may not always look the same. But the UI concepts never change. There are no surprises for the user.\n\n== Technical Features\n\n* Independent of the used UI technology. Implementations for Web \/ Mobile \/ Desktop.\n* ORM persistence layer for Maria DB or in memory DB. Transactions and Authorization supported.\n* Small: The minimalj.jar is still < 1MB\n* Very few dependencies\n* Applications can run standalone (like SpringBoot)\n\n== Documentation\n\n* link:doc\/user_guide\/user_guide.adoc[Minimal user guide] User guide for Minimal-J applications.\n* link:doc\/topics.adoc[Tutorial and examples] Informations for developers.\n* link:doc\/release_notes.adoc[Release Notes]\n\n== Hello World\n\nlink:http:\/\/www.youtube.com\/watch?v=0VHz7gv6TpA[How to implement Hello World in Minimal-J]\n\n\n=== Contact\n\n* Bruno Eberhard, mailto:minimalj@hispeed.ch[minimalj@hispeed.ch] ","subject":"Include Hello World Youtube video","message":"Include Hello World Youtube video","lang":"AsciiDoc","license":"apache-2.0","repos":"BrunoEberhard\/minimal-j,BrunoEberhard\/minimal-j,BrunoEberhard\/minimal-j"} {"commit":"884a96cc3f098f4d848b8ce9896673ebca1f0c55","old_file":"docs\/src\/main\/asciidoc\/includes\/extension-status.adoc","new_file":"docs\/src\/main\/asciidoc\/includes\/extension-status.adoc","old_contents":"[NOTE]\n====\nThis technology is considered {extension-status}.\n\nifeval::[\"{extension-status}\" == \"experimental\"]\nIn _experimental_ mode, early feedback is requested to mature the idea.\nThere is no guarantee of stability nor long term presence in the platform until the solution matures.\nFeedback is welcome on our https:\/\/groups.google.com\/d\/forum\/quarkus-dev[mailing list] or as issues in our https:\/\/github.com\/quarkusio\/quarkus\/issues[GitHub issue tracker].\nendif::[]\nifeval::[\"{extension-status}\" == \"preview\"]\nIn _preview_, backward compatibility and presence in the ecosystem is not guaranteed.\nSpecific improvements might require changing configuration or APIs, and plans to become _stable_ are under way.\nFeedback is welcome on our https:\/\/groups.google.com\/d\/forum\/quarkus-dev[mailing list] or as issues in our https:\/\/github.com\/quarkusio\/quarkus\/issues[GitHub issue tracker].\nendif::[]\nifeval::[\"{extension-status}\" == \"stable\"]\nBeing _stable_, backward compatibility and presence in the ecosystem are taken very seriously.\nendif::[]\n\nFor a full list of possible statuses, check our https:\/\/quarkus.io\/faq\/#extension-status[FAQ entry].\n====\n","new_contents":"[NOTE]\n====\nThis technology is considered {extension-status}.\n\nifeval::[\"{extension-status}\" == \"experimental\"]\nIn _experimental_ mode, early feedback is requested to mature the idea.\nThere is no guarantee of stability nor long term presence in the platform until the solution matures.\nFeedback is welcome on our https:\/\/groups.google.com\/d\/forum\/quarkus-dev[mailing list] or as issues in our https:\/\/github.com\/quarkusio\/quarkus\/issues[GitHub issue tracker].\nendif::[]\nifeval::[\"{extension-status}\" == \"preview\"]\nIn _preview_, backward compatibility and presence in the ecosystem is not guaranteed.\nSpecific improvements might require changing configuration or APIs, and plans to become _stable_ are under way.\nFeedback is welcome on our https:\/\/groups.google.com\/d\/forum\/quarkus-dev[mailing list] or as issues in our https:\/\/github.com\/quarkusio\/quarkus\/issues[GitHub issue tracker].\nendif::[]\nifeval::[\"{extension-status}\" == \"stable\"]\nBeing _stable_, backward compatibility and presence in the ecosystem are taken very seriously.\nendif::[]\nifeval::[\"{extension-status}\" == \"deprecated\"]\nBeing _deprecated_ means that this extension is likely to be replaced or removed in a future version of Quarkus.\nendif::[]\n\nFor a full list of possible statuses, check our https:\/\/quarkus.io\/faq\/#what-are-the-extension-statuses[FAQ entry].\n====\n","subject":"Add `deprecated` to extension status note","message":"Add `deprecated` to extension status note\n\nAlso fix the Extension status URL\n","lang":"AsciiDoc","license":"apache-2.0","repos":"quarkusio\/quarkus,quarkusio\/quarkus,quarkusio\/quarkus,quarkusio\/quarkus,quarkusio\/quarkus"} {"commit":"b0901b0056f37bb0ab23a748ec0371f5a038acf5","old_file":"docs\/src\/main\/asciidoc\/spring-cloud-starters.adoc","new_file":"docs\/src\/main\/asciidoc\/spring-cloud-starters.adoc","old_contents":"== Spring Cloud Starters\n\ninclude::intro.adoc[]\n\n\n","new_contents":"== Spring Cloud Starters\n:github: https:\/\/github.com\/spring-cloud\/spring-cloud-starters\n:githubmaster: {github}\/tree\/master\n:docslink: {githubmaster}\/docs\/src\/main\/asciidoc\n\ninclude::intro.adoc[]\n\ninclude::https:\/\/raw.githubusercontent.com\/spring-cloud\/spring-cloud-build\/master\/docs\/src\/main\/asciidoc\/contributing-docs.adoc[]\n","subject":"Add link to github in rendered docs","message":"Add link to github in rendered docs\n","lang":"AsciiDoc","license":"apache-2.0","repos":"royclarkson\/spring-cloud-starters,fritzrichter\/spring-cloud-starters,peb73\/spring-cloud-starters,ilayaperumalg\/spring-cloud-starters"} {"commit":"3e3359dbecdbaf4b088de35f98f95d27eb9c3c82","old_file":"community\/server\/src\/docs\/dev\/rest-api\/indexes-unique.asciidoc","new_file":"community\/server\/src\/docs\/dev\/rest-api\/indexes-unique.asciidoc","old_contents":"[[rest-api-unique-indexes]]\n== Unique Indexing ==\n\nFor uniqueness enforcements, there are two modes:\n\n* URL Parameter `unique=get_or_create`: Create a new node\/relationship and index it if no existing one can be found. If an existing node\/relationship is found, discard the sent data and return the existing node\/relationship.\n\n* URL Parameter `unique=create_or_fail`: Create a new node\/relationship if no existing one can be found in the index. If an existing node\/relationship is found, return a conflict error.\n\nFor more information, see <>.\n\ninclude::get-or-create-unique-node-(create).asciidoc[]\n\ninclude::get-or-create-unique-node-(existing).asciidoc[]\n\ninclude::create-a-unique-node-or-return-fail-(create).asciidoc[]\n\ninclude::create-a-unique-node-or-return-fail-(fail).asciidoc[]\n\ninclude::get-or-create-unique-relationship-(create).asciidoc[]\n\ninclude::get-or-create-unique-relationship-(existing).asciidoc[]\n\ninclude::create-a-unique-relationship-or-return-fail-(create).asciidoc[]\n\ninclude::create-a-unique-relationship-or-return-fail-(fail).asciidoc[]\n\n\n","new_contents":"[[rest-api-unique-indexes]]\n== Unique Indexing ==\n\nNOTE: As of Neo4j 2.0, unique constraints have been added. These make Neo4j enforce the uniqueness,\nguaranteeing that uniqueness is maintained. See <> for details about this.\n\nFor uniqueness enforcements, there are two modes:\n\n* URL Parameter `unique=get_or_create`: Create a new node\/relationship and index it if no existing one can be found.\nIf an existing node\/relationship is found, discard the sent data and return the existing node\/relationship.\n\n* URL Parameter `unique=create_or_fail`: Create a new node\/relationship if no existing one can be found in the index.\nIf an existing node\/relationship is found, return a conflict error.\n\nFor more information, see <>.\n\ninclude::get-or-create-unique-node-(create).asciidoc[]\n\ninclude::get-or-create-unique-node-(existing).asciidoc[]\n\ninclude::create-a-unique-node-or-return-fail-(create).asciidoc[]\n\ninclude::create-a-unique-node-or-return-fail-(fail).asciidoc[]\n\ninclude::get-or-create-unique-relationship-(create).asciidoc[]\n\ninclude::get-or-create-unique-relationship-(existing).asciidoc[]\n\ninclude::create-a-unique-relationship-or-return-fail-(create).asciidoc[]\n\ninclude::create-a-unique-relationship-or-return-fail-(fail).asciidoc[]\n\n\n","subject":"Add reference to unique constraints to unique index chapter.","message":"Add reference to unique constraints to unique index chapter.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"HuangLS\/neo4j,HuangLS\/neo4j,HuangLS\/neo4j,HuangLS\/neo4j,HuangLS\/neo4j"} {"commit":"b5f5f2d3a3612c1f3703ec3ec4cfe6d0ddf49370","old_file":"modules\/machine-user-provisioned-limitations.adoc","new_file":"modules\/machine-user-provisioned-limitations.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * machine_management\/applying_autoscaling.adoc\n\/\/ * machine_management\/creating-infrastructure-machinesets.adoc\n\/\/ * machine_management\/creating-machinesets.adoc\n\/\/ * machine_management\/deploying-machine-health-checks.adoc\n\/\/ * machine_management\/manually-scaling-machinesets.adoc\n\n[IMPORTANT]\n====\nThis process is not applicable to clusters that use user-provisioned\ninfrastructure. Because you manually provisioned your machines yourself, you\ncannot use the advanced machine management and scaling capabilities\nthat an installer-provisioned infrastructure cluster offers.\n====\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * machine_management\/applying_autoscaling.adoc\n\/\/ * machine_management\/creating-infrastructure-machinesets.adoc\n\/\/ * machine_management\/creating-machinesets.adoc\n\/\/ * machine_management\/deploying-machine-health-checks.adoc\n\/\/ * machine_management\/manually-scaling-machinesets.adoc\n\n[IMPORTANT]\n====\nThis process is not applicable to clusters where you manually provisioned the machines yourself. You\ncan use the advanced machine management and scaling capabilities only in clusters where the machine API is operational.\n====\n","subject":"Remove ipi\/upi dichotomy for machine management capabilities","message":"Remove ipi\/upi dichotomy for machine management capabilities\n\nUsage of the machine API does NOT mandate that the customer used IPI. The only requirement is that the customer delegates the ability to create lifecycle machines to the product.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"9f681810e725bea06118f7b8a21756f8e89b5da1","old_file":"docs\/modules\/guides\/pages\/use-prerelease-version.adoc","new_file":"docs\/modules\/guides\/pages\/use-prerelease-version.adoc","old_contents":"== Using a pre-release version\n\nPre-release versions of `AsciidoctorJ` are published to oss.sonatype.org.\nThe exact location of the repository will be announced.\nFinal releases are released to both Maven Central.\n\nHere's how to use a pre-release version in Maven:\n\n[source, xml]\n----\n \n \n staging<\/id>\n https:\/\/oss.sonatype.org\/content\/repositories\/orgasciidoctor-1234<\/url> <1>\n \n true<\/enabled>\n <\/releases>\n <\/repository>\n <\/repositories>\n----\n<1> The exact URL differs for every build\n","new_contents":"= Using a pre-release version\n\nPre-release versions of `AsciidoctorJ` are published to oss.sonatype.org.\nThe exact location of the repository will be announced.\nFinal releases are released to both Maven Central.\n\nHere's how to use a pre-release version in Maven:\n\n[source, xml]\n----\n \n \n staging<\/id>\n https:\/\/oss.sonatype.org\/content\/repositories\/orgasciidoctor-1234<\/url> <1>\n \n true<\/enabled>\n <\/releases>\n <\/repository>\n <\/repositories>\n----\n<1> The exact URL differs for every build\n","subject":"Fix doc filename instead of title shown in nav menu","message":"Fix doc filename instead of title shown in nav menu\n","lang":"AsciiDoc","license":"apache-2.0","repos":"abelsromero\/asciidoctorj,abelsromero\/asciidoctorj,asciidoctor\/asciidoctorj,abelsromero\/asciidoctorj,asciidoctor\/asciidoctorj,asciidoctor\/asciidoctorj"} {"commit":"283c57d38565475495562266d92fcf40e812af8c","old_file":"src\/docs\/asciidoc\/user-guide\/index.adoc","new_file":"src\/docs\/asciidoc\/user-guide\/index.adoc","old_contents":"= Gradle Docker Plugin User Guide & Examples\n:uri-bmuschko-blog: https:\/\/bmuschko.com\/blog\n:uri-ghpages: https:\/\/bmuschko.github.io\/gradle-docker-plugin\n:uri-github: https:\/\/github.com\/bmuschko\/gradle-docker-plugin\n:uri-gradle-docs: https:\/\/docs.gradle.org\/current\n\ninclude::00-intro.adoc[]\n\ninclude::10-remote-api-plugin.adoc[]\n\ninclude::20-java-application-plugin.adoc[]\n\ninclude::30-spring-boot-application-plugin.adoc[]\n\ninclude::40-changes.adoc[]","new_contents":"= Gradle Docker Plugin User Guide & Examples\n:uri-bmuschko-blog: https:\/\/bmuschko.com\/blog\n:uri-ghpages: https:\/\/bmuschko.github.io\/gradle-docker-plugin\/{gradle-project-version}\n:uri-github: https:\/\/github.com\/bmuschko\/gradle-docker-plugin\n:uri-gradle-docs: https:\/\/docs.gradle.org\/current\n\ninclude::00-intro.adoc[]\n\ninclude::10-remote-api-plugin.adoc[]\n\ninclude::20-java-application-plugin.adoc[]\n\ninclude::30-spring-boot-application-plugin.adoc[]\n\ninclude::40-changes.adoc[]","subject":"Use version in API link","message":"Use version in API link\n","lang":"AsciiDoc","license":"apache-2.0","repos":"bmuschko\/gradle-docker-plugin,bmuschko\/gradle-docker-plugin,bmuschko\/gradle-docker-plugin"} {"commit":"b84fdd4856ae46aafe5e6b5b7337469cd66346f6","old_file":"community\/server\/src\/docs\/dev\/rest-api\/indexes-unique.asciidoc","new_file":"community\/server\/src\/docs\/dev\/rest-api\/indexes-unique.asciidoc","old_contents":"[[rest-api-unique-indexes]]\n== Unique Indexes ==\n\nFor uniqueness enforcements, there are two modes:\n\n* URL Parameter `unique=get_or_create`: Create a new node\/relationship and index it if no existing one can be found. If an existing node\/relationship is found, discard the sent data and return the existing node\/relationship.\n\n* URL Parameter `unique=create_or_fail`: Create a new node\/relationship if no existing one can be found in the index. If an existing node\/relationship is found, return a conflict error.\n\nFor more information, see <>.\n\ninclude::get-or-create-unique-node-(create).asciidoc[]\n\ninclude::get-or-create-unique-node-(existing).asciidoc[]\n\ninclude::create-a-unique-node-or-return-fail-(create).asciidoc[]\n\ninclude::create-a-unique-node-or-return-fail-(fail).asciidoc[]\n\ninclude::get-or-create-unique-relationship-(create).asciidoc[]\n\ninclude::get-or-create-unique-relationship-(existing).asciidoc[]\n\ninclude::create-a-unique-relationship-or-return-fail-(create).asciidoc[]\n\ninclude::create-a-unique-relationship-or-return-fail-(fail).asciidoc[]\n\n\n","new_contents":"[[rest-api-unique-indexes]]\n== Unique Indexes ==\n\nFor uniqueness enforcements, there are two modes:\n\n* URL Parameter `uniqueness=get_or_create`: Create a new node\/relationship and index it if no existing one can be found. If an existing node\/relationship is found, discard the sent data and return the existing node\/relationship.\n\n* URL Parameter `uniqueness=create_or_fail`: Create a new node\/relationship if no existing one can be found in the index. If an existing node\/relationship is found, return a conflict error.\n\nFor more information, see <>.\n\ninclude::get-or-create-unique-node-(create).asciidoc[]\n\ninclude::get-or-create-unique-node-(existing).asciidoc[]\n\ninclude::create-a-unique-node-or-return-fail-(create).asciidoc[]\n\ninclude::create-a-unique-node-or-return-fail-(fail).asciidoc[]\n\ninclude::get-or-create-unique-relationship-(create).asciidoc[]\n\ninclude::get-or-create-unique-relationship-(existing).asciidoc[]\n\ninclude::create-a-unique-relationship-or-return-fail-(create).asciidoc[]\n\ninclude::create-a-unique-relationship-or-return-fail-(fail).asciidoc[]\n\n\n","subject":"Fix documentation bug for unique indexes in REST.","message":"Fix documentation bug for unique indexes in REST.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"HuangLS\/neo4j,HuangLS\/neo4j,HuangLS\/neo4j,HuangLS\/neo4j,HuangLS\/neo4j"} {"commit":"043d46765aa3de423ef0b6897fbfdd0096956566","old_file":"pages\/am\/2.x\/breaking-changes\/breaking-changes-2.10.adoc","new_file":"pages\/am\/2.x\/breaking-changes\/breaking-changes-2.10.adoc","old_contents":"= Breaking changes in 2.10\n:page-sidebar: am_2_x_sidebar\n:page-permalink: am\/2.x\/am_breaking_changes_2.10.html\n:page-folder: am\/installation-guide\n:page-layout: am\n\n== JAR Manifest file has changed\n\nStarting from version 2.10.10, the Main-Class of the entry point of the runnable management and gateway application has changed due to typo error.\n\n----\nAM Management API\n\n - io.gravitee.am.management.standalone.boostrap.Bootstrap<\/mainClass>\n + io.gravitee.am.management.standalone.bootstrap.Bootstrap<\/mainClass>\n\nAM Gateway\n\n - io.gravitee.am.gateway.boostrap.Bootstrap<\/mainClass>\n + io.gravitee.am.gateway.bootstrap.Bootstrap<\/mainClass>\n----\n\nIt could have an impact if you are using your own custom build\/launch script with command like `java -jar gravitee-am-*-bootstrap.jar`.\nBe sure to test this scenario before going further in your production environment.\n\nNOTE: There is no impact if you rely on the built-in gravitee(.bat) script.\n\n","new_contents":"= Breaking changes in 2.10\n:page-sidebar: am_2_x_sidebar\n:page-permalink: am\/2.x\/am_breaking_changes_2.10.html\n:page-folder: am\/installation-guide\n:page-layout: am\n\n== JAR Manifest file has changed\n\nStarting from version 2.10.10, the Main-Class of the entry point of the runnable management and gateway application has changed due to typo error.\n\n----\nAM Management API\n\n - io.gravitee.am.management.standalone.boostrap.Bootstrap<\/mainClass>\n + io.gravitee.am.management.standalone.bootstrap.Bootstrap<\/mainClass>\n\nAM Gateway\n\n - io.gravitee.am.gateway.boostrap.Bootstrap<\/mainClass>\n + io.gravitee.am.gateway.bootstrap.Bootstrap<\/mainClass>\n----\n\nIt could have an impact if you are using your own custom build\/launch script with command like `java -jar gravitee-am-*-bootstrap.jar`.\nBe sure to test this scenario before going further in your production environment.\n\nNOTE: There is no impact if you rely on the built-in gravitee(.bat) script.\n\n\n== Docker images\nAll the UI based docker images (console) are now using HTTP port 8080 and HTTPS port 8443 by default to\navoid the need of a root account to use 80\/443 to improve the security of our platform.","subject":"Update breaking changes for docker images","message":"Update breaking changes for docker images\n","lang":"AsciiDoc","license":"apache-2.0","repos":"gravitee-io\/gravitee-docs,gravitee-io\/gravitee-docs,gravitee-io\/gravitee-docs"} {"commit":"09105843b0936e19d1386ae1a77bb7a2c81ecf20","old_file":"docs\/src\/main\/asciidoc\/includes\/devtools\/build-native-container.adoc","new_file":"docs\/src\/main\/asciidoc\/includes\/devtools\/build-native-container.adoc","old_contents":"[source, bash, subs=attributes+, role=\"primary asciidoc-tabs-sync-cli\"]\n.CLI\n----\nifdef::build-additional-parameters[]\nquarkus build --native -Dquarkus.native.container-build=true {build-additional-parameters}\nendif::[]\nifndef::build-additional-parameters[]\nquarkus build --native -Dquarkus.native.container-build=true\nendif::[]\n----\nifndef::devtools-no-maven[]\nifdef::devtools-wrapped[+]\n[source, bash, subs=attributes+, role=\"secondary asciidoc-tabs-sync-maven\"]\n.Maven\n----\nifdef::build-additional-parameters[]\n.\/mvnw package -Dnative -Dquarkus.native.container-build=true {build-additional-parameters}\nendif::[]\nifndef::build-additional-parameters[]\n.\/mvnw package -Dnative -Dquarkus.native.container-build=true\nendif::[]\n----\nendif::[]\nifndef::devtools-no-gradle[]\nifdef::devtools-wrapped[+]\n[source, bash, subs=attributes+, role=\"secondary asciidoc-tabs-sync-gradle\"]\n.Gradle\n----\nifdef::build-additional-parameters[]\n.\/gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true {build-additional-parameters}\nendif::[]\nifndef::build-additional-parameters[]\n.\/gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true\nendif::[]\n----\nendif::[]","new_contents":"[source, bash, subs=attributes+, role=\"primary asciidoc-tabs-sync-cli\"]\n.CLI\n----\nifdef::build-additional-parameters[]\nquarkus build --native --no-tests -Dquarkus.native.container-build=true {build-additional-parameters}\nendif::[]\nifndef::build-additional-parameters[]\nquarkus build --native --no-tests -Dquarkus.native.container-build=true\nendif::[]\n# The --no-tests flag is required only on Windows and macOS.\n----\nifndef::devtools-no-maven[]\nifdef::devtools-wrapped[+]\n[source, bash, subs=attributes+, role=\"secondary asciidoc-tabs-sync-maven\"]\n.Maven\n----\nifdef::build-additional-parameters[]\n.\/mvnw package -Dnative -Dquarkus.native.container-build=true {build-additional-parameters}\nendif::[]\nifndef::build-additional-parameters[]\n.\/mvnw package -Dnative -Dquarkus.native.container-build=true\nendif::[]\n----\nendif::[]\nifndef::devtools-no-gradle[]\nifdef::devtools-wrapped[+]\n[source, bash, subs=attributes+, role=\"secondary asciidoc-tabs-sync-gradle\"]\n.Gradle\n----\nifdef::build-additional-parameters[]\n.\/gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true {build-additional-parameters}\nendif::[]\nifndef::build-additional-parameters[]\n.\/gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true\nendif::[]\n----\nendif::[]","subject":"Improve doc for containerized native build","message":"Improve doc for containerized native build\n\nOn macOS and Windows the following command fails:\n`quarkus build --native -Dquarkus.native.container-build=true`.\nReason is that the Quarkus CLI runs integration tests against binary built in Linux container.\nThe produced binary is ELF not runnable under another OS.\n\nSigned-off-by: Matej Vasek <641136dff7ce0a7463dc13442864dad9b6842739@redhat.com>\n","lang":"AsciiDoc","license":"apache-2.0","repos":"quarkusio\/quarkus,quarkusio\/quarkus,quarkusio\/quarkus,quarkusio\/quarkus,quarkusio\/quarkus"} {"commit":"92734f8e55232621855ac803a16a05a859ff0712","old_file":"README.asciidoc","new_file":"README.asciidoc","old_contents":"== Rook - Sane, smart, fast, Clojure web services\n\nimage:http:\/\/clojars.org\/io.aviso\/rook\/latest-version.svg[Clojars Project, link=\"http:\/\/clojars.org\/io.aviso\/rook\"]\n\nimage:https:\/\/drone.io\/github.com\/AvisoNovate\/rook\/status.png[Build Status, link=\"https:\/\/drone.io\/github.com\/AvisoNovate\/rook\"]\n\nRook is a set of middleware and handlers to enable metadata-based routing for https:\/\/github.com\/ring-clojure\/ring[Ring] web applications.\n\nThe intention is to expose a Clojure _namespace_ as a web service _resource_; there's a default mapping of HTTP verbs\nand paths to function names; these can be extended or overridden by metadata on the functions in the namespace.\n\nThe end result is that a compliant web service resource can be created in very little code.\n\nRook also supports Swagger 2.0: a detailed JSON description of your web service is generated directly from the functions and metadata.\n\nRook is available under the terms of the Apache Software License 2.0.\n\nlink:https:\/\/portal.aviso.io\/#\/document\/open-source\/rook\/Current[Full Documentation]\n","new_contents":"## Rook - Sane, smart, fast, Clojure web services\n\nimage:http:\/\/clojars.org\/io.aviso\/rook\/latest-version.svg[Clojars Project, link=\"http:\/\/clojars.org\/io.aviso\/rook\"]\n\nimage:https:\/\/drone.io\/github.com\/AvisoNovate\/rook\/status.png[Build Status, link=\"https:\/\/drone.io\/github.com\/AvisoNovate\/rook\"]\n\nRook is a set of middleware and handlers to enable metadata-based routing for https:\/\/github.com\/ring-clojure\/ring[Ring] web applications.\n\nThe intention is to expose a Clojure _namespace_ as a web service _resource_; there's a default mapping of HTTP verbs\nand paths to function names; these can be extended or overridden by metadata on the functions in the namespace.\n\nThe end result is that a compliant web service resource can be created in very little code.\n\nRook also supports Swagger 2.0: a detailed JSON description of your web service is generated directly from the functions and metadata.\n\nRook is available under the terms of the Apache Software License 2.0.\n\nlink:https:\/\/portal.aviso.io\/#\/document\/open-source\/rook\/Current[Full Documentation]\n","subject":"Use correct Asciidoc headers (not Markdown)","message":"Use correct Asciidoc headers (not Markdown)\n","lang":"AsciiDoc","license":"apache-2.0","repos":"bmabey\/rook,clyfe\/rook,roblally\/rook"} {"commit":"fbf2ffc94a1b38998d0a688bae005b9f60755ddb","old_file":"networking\/ovn_kubernetes_network_provider\/about-ovn-kubernetes.adoc","new_file":"networking\/ovn_kubernetes_network_provider\/about-ovn-kubernetes.adoc","old_contents":"[id=\"learn-about-ovn-kubernetes\"]\n= About the OVN-Kubernetes Pod network provider\ninclude::modules\/common-attributes.adoc[]\n:context: learn-about-ovn-kubernetes\n\ntoc::[]\n\ninclude::modules\/nw-ovn-technology-preview.adoc[leveloffset=+1]\n\n[id=\"ovn-kubernetes-metrics\"]\n== Exposed metrics\n\nThe OVN-Kubernetes network provider exposes certain metrics for use by the Prometheus-based {product-title} cluster monitoring stack.\n\n\/\/ openshift\/ovn-kubernetes => go-controller\/pkg\/ovn\/metrics.go\n\n.Metrics exposed by OVN-Kubernetes\n[cols=\"2a,8a\",options=\"header\"]\n|===\n|Name |Description\n\n|`nb_e2e_timestamp`\n|A timestamp persisted to the Open vSwitch (OVN) northbound database and updated frequently.\n\n|`pod_creation_latency_seconds`\n|The latency between when a Pod is created and when the Pod is annotated by OVN-Kubernetes. The higher the latency, the more time that elapses before a Pod is available for network connectivity.\n\n|===\n","new_contents":"[id=\"learn-about-ovn-kubernetes\"]\n= About the OVN-Kubernetes Pod network provider\ninclude::modules\/common-attributes.adoc[]\n:context: learn-about-ovn-kubernetes\n\ntoc::[]\n\ninclude::modules\/nw-ovn-technology-preview.adoc[leveloffset=+1]\n\n[id=\"ovn-kubernetes-metrics\"]\n== Exposed metrics\n\nThe OVN-Kubernetes network provider exposes certain metrics for use by the Prometheus-based {product-title} cluster monitoring stack.\n\n\/\/ openshift\/ovn-kubernetes => go-controller\/pkg\/ovn\/metrics.go\n\n.Metrics exposed by OVN-Kubernetes\n[cols=\"2a,8a\",options=\"header\"]\n|===\n|Name |Description\n\n|`ovnkube_master_nb_e2e_timestamp`\n|A timestamp persisted to the Open vSwitch (OVN) northbound database and updated frequently.\n\n|`ovnkube_master_pod_creation_latency_seconds`\n|The latency between when a Pod is created and when the Pod is annotated by OVN-Kubernetes. The higher the latency, the more time that elapses before a Pod is available for network connectivity.\n\n|===\n","subject":"Update the metric names for OVN-Kubernetes","message":"Update the metric names for OVN-Kubernetes\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"e2397be018380757dc2650a36936e4732073633b","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Transform Query Parameters Policy\n\nifdef::env-github[]\nimage:https:\/\/ci.gravitee.io\/buildStatus\/icon?job=gravitee-io\/gravitee-policy-transformqueryparams\/master[\"Build status\", link=\"https:\/\/ci.gravitee.io\/job\/gravitee-io\/job\/gravitee-policy-transformqueryparams\/\"]\nimage:https:\/\/badges.gitter.im\/Join Chat.svg[\"Gitter\", link=\"https:\/\/gitter.im\/gravitee-io\/gravitee-io?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\"]\nendif::[]\n\n== Phase\n\n[cols=\"2*\", options=\"header\"]\n|===\n^|onRequest\n^|onResponse\n\n^.^| X\n^.^|\n\n|===\n\n== Description\n\nThe Transform Query Parameters policy is used to override incoming request HTTP query parameters.\nYou can override these HTTP query parameters by:\n\n* Clearing all existing query parameters\n* Adding or updating list of query parameters\n* Removing them individually\n\n[source, json]\n.Sample\n----\n\"transform-queryparams\": {\n \"addQueryParameters\": [\n {\n \"name\": \"myParam\",\n \"value\": \"{#request.id}\"\n }\n ],\n \"removeQueryParameters\": [\n \"secretParam\"\n ]\n}\n----","new_contents":"= Transform Query Parameters Policy\n\nifdef::env-github[]\nimage:https:\/\/ci.gravitee.io\/buildStatus\/icon?job=gravitee-io\/gravitee-policy-transformqueryparams\/master[\"Build status\", link=\"https:\/\/ci.gravitee.io\/job\/gravitee-io\/job\/gravitee-policy-transformqueryparams\/\"]\nimage:https:\/\/badges.gitter.im\/Join Chat.svg[\"Gitter\", link=\"https:\/\/gitter.im\/gravitee-io\/gravitee-io?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\"]\nendif::[]\n\n== Phase\n\n[cols=\"2*\", options=\"header\"]\n|===\n^|onRequest\n^|onResponse\n\n^.^| X\n^.^|\n\n|===\n\n== Description\n\nThe Transform Query Parameters policy is used to override incoming request HTTP query parameters.\nYou can override these HTTP query parameters by:\n\n* Clearing all existing query parameters\n* Adding or updating list of query parameters\n* Removing them individually\n\nThe values of query parameters of the incoming request are accessible via the `{#request.params['query_parameter_name']}` construct. \n\nThe example below shows how to add the ID of the incoming request to the outgoing request.\n\n[source, json]\n.Sample\n----\n\"transform-queryparams\": {\n \"addQueryParameters\": [\n {\n \"name\": \"myParam\",\n \"value\": \"{#request.id}\"\n }\n ],\n \"removeQueryParameters\": [\n \"secretParam\"\n ]\n}\n----\n","subject":"Document how to access incoming query parameters","message":"Document how to access incoming query parameters\n\nIt wasn't clear how to use values of query parameters of the incoming request.","lang":"AsciiDoc","license":"apache-2.0","repos":"gravitee-io\/gravitee-policy-transform-queryparameters"} {"commit":"32b8b3347d3ea8324e7097df1d414ceacb9dad7f","old_file":"README.adoc","new_file":"README.adoc","old_contents":"# react-popover\n:toc: macro\n\nA specification backed popover for react\n\n\ntoc::[]\n\n\n## Installation\n\n----\nnpm install react-popover\n----\n\n\n## Examples\n\nThe `examples` folder contains basic applications of this component. To try them locally run `npm start`.\n\n\n## API\n\nTODO\n","new_contents":"# react-popover\n:toc: macro\n\nA specification backed popover for react. See [demo](https:\/\/littlebits.github.io\/react-popover\/build).\n\n\ntoc::[]\n\n\n## Installation\n\n----\nnpm install react-popover\n----\n\n\n## Examples\n\nThe `examples` folder contains basic applications of this component. To try them locally run `npm start`.\n\n\n## API\n\nTODO\n","subject":"Update readme with demo link","message":"Update readme with demo link\n","lang":"AsciiDoc","license":"mit","repos":"rainforestapp\/react-popover,littlebits\/react-popover,clara-labs\/react-popover,t3chnoboy\/react-popover,gregory90\/react-popover,prayogoa\/react-popover,derekr\/react-popover"} {"commit":"196952f66cfef1c0dcc798498bb91f54e5b27a78","old_file":"adoc\/omnij-devguide.adoc","new_file":"adoc\/omnij-devguide.adoc","old_contents":"= OmniJ Developer's Guide\nSean Gilligan\nv0.1, July 30, 2015: Early draft\n:numbered:\n:toc:\n:toclevels: 3\n:linkattrs:\n:imagesdir: images\n\nParagraph TBD.\n\n== Introduction to OmniJ\n\nThis section is TBD. For now the project http:\/\/github.com\/OmniLayer\/OmniJ\/README.adoc[README] is the best place to get started.\n\n== JSON-RPC Clients\n\n[plantuml, diagram-classes, svg]\n....\nskinparam packageStyle Rect\nskinparam shadowing false\nhide empty members\n\nnamespace com.msgilligan.bitcoin.rpc {\n class RPCClient\n RPCClient <|-- class DynamicRPCClient << Groovy >>\n RPCClient <|-- BitcoinClient\n BitcoinClient <|-- class BitcoinCLIClient << Groovy >>\n}\n\nnamespace foundation.omni.rpc {\n com.msgilligan.bitcoin.rpc.BitcoinClient <|-- OmniClient\n OmniClient <|-- OmniExtendedClient\n OmniExtendedClient <|-- class OmniCLIClient << Groovy >>\n}\n....\n\n\n\n","new_contents":"= OmniJ Developer's Guide\nSean Gilligan\nv0.1, July 30, 2015: Early draft\n:numbered:\n:toc:\n:toclevels: 3\n:linkattrs:\n:imagesdir: images\n\nParagraph TBD.\n\n== Introduction to OmniJ\n\nThis section is TBD. For now the project https:\/\/github.com\/OmniLayer\/OmniJ#omnij-project[README] is the best place to get started.\n\n== JSON-RPC Clients\n\n[plantuml, diagram-classes, svg]\n....\nskinparam packageStyle Rect\nskinparam shadowing false\nhide empty members\n\nnamespace com.msgilligan.bitcoin.rpc {\n class RPCClient\n RPCClient <|-- class DynamicRPCClient << Groovy >>\n RPCClient <|-- BitcoinClient\n BitcoinClient <|-- class BitcoinCLIClient << Groovy >>\n}\n\nnamespace foundation.omni.rpc {\n com.msgilligan.bitcoin.rpc.BitcoinClient <|-- OmniClient\n OmniClient <|-- OmniExtendedClient\n OmniExtendedClient <|-- class OmniCLIClient << Groovy >>\n}\n....\n\n\n\n","subject":"Fix broken link to OmniJ Project README","message":"Fix broken link to OmniJ Project README","lang":"AsciiDoc","license":"apache-2.0","repos":"OmniLayer\/OmniJ,OmniLayer\/OmniJ,OmniLayer\/OmniJ"} {"commit":"84a64751242e73d1303b4114952c80a6913d5ec5","old_file":"docs\/src\/main\/asciidoc\/0-glossary.adoc","new_file":"docs\/src\/main\/asciidoc\/0-glossary.adoc","old_contents":"= Internal glossary\n\nThis is not a document to be published outside.\nThis is a collection of preferred term in the documentation and website.\nPlease stay witin these terms for consistency.\n\nLive reload:: for our `quarkus:dev` capability\nGraalVM:: preferred term for the VM creating native executable. No space.\nSubstrate VM:: non-preferred. Only if you want to clarify which part of GraalVM we use.\nNative Executable:: the executable that is compiled to native 1s and 0s\nDocker image:: for the actual `Dockerfile` definition and when the tool chain is involved\nContainer:: when we discuss Quarkus running in... containers\nSupersonic Subatomic Java:: our tagline\nKubernetes Native Java:: our preferred tagline to say that we rock for containers \nDeveloper Joy:: for everything going from live reload to the opinionated layer to a single config file\nUnify Imperative and Reactive:: imperative and reactive. 'Nuff said.\nBest of breed frameworks and standards:: when we explain our stack\n","new_contents":"= Internal glossary\n\nThis is not a document to be published outside.\nThis is a collection of preferred term in the documentation and website.\nPlease stay within these terms for consistency.\n\n* Live reload:: for our `quarkus:dev` capability\n* GraalVM:: preferred term for the VM creating native executable. No space.\n* Substrate VM:: non-preferred. Only if you want to clarify which part of GraalVM we use.\n* Native Executable:: the executable that is compiled to native 1s and 0s\n* Docker image:: for the actual `Dockerfile` definition and when the tool chain is involved\n* Container:: when we discuss Quarkus running in... containers\n* Supersonic Subatomic Java:: our tagline\n* Kubernetes Native Java:: our preferred tagline to say that we rock for containers\n* Developer Joy:: for everything going from live reload to the opinionated layer to a single config file\n* Unify Imperative and Reactive:: imperative and reactive. 'Nuff said.\n* Best of breed frameworks and standards:: when we explain our stack\n","subject":"Make the glossary a bit better","message":"Make the glossary a bit better\n","lang":"AsciiDoc","license":"apache-2.0","repos":"quarkusio\/quarkus,quarkusio\/quarkus,quarkusio\/quarkus,quarkusio\/quarkus,quarkusio\/quarkus"} {"commit":"309e54bd213b550b2f15bbd9277f21e8aca0ea59","old_file":"spring-boot-project\/spring-boot-docs\/src\/docs\/asciidoc\/documentation\/upgrading.adoc","new_file":"spring-boot-project\/spring-boot-docs\/src\/docs\/asciidoc\/documentation\/upgrading.adoc","old_contents":"[[documentation.upgrading]]\n== Upgrading From an Earlier Version\n\nYou should always ensure that you are running a {github-wiki}\/Supported-Versions[supported version] of Spring Boot.\n\nDepending on the version that you are upgrading to, you can find some additional tips here:\n\n* *From 1.x:* <>\n* *To a new feature release:* <>\n* *Spring Boot CLI:* <>\n\n","new_contents":"[[documentation.upgrading]]\n== Upgrading From an Earlier Version\n\nYou should always ensure that you are running a {github-wiki}\/Supported-Versions[supported version] of Spring Boot.\n\nDepending on the version that you are upgrading to, you can find some additional tips here:\n\n* *From 1.x:* <>\n* *To a new feature release:* <>\n* *Spring Boot CLI:* <>\n\n","subject":"Fix link to Upgrading From 1.x in multi-page documentation","message":"Fix link to Upgrading From 1.x in multi-page documentation\n\nSee gh-30890\n","lang":"AsciiDoc","license":"apache-2.0","repos":"michael-simons\/spring-boot,chrylis\/spring-boot,scottfrederick\/spring-boot,htynkn\/spring-boot,michael-simons\/spring-boot,chrylis\/spring-boot,vpavic\/spring-boot,chrylis\/spring-boot,dreis2211\/spring-boot,mdeinum\/spring-boot,htynkn\/spring-boot,chrylis\/spring-boot,scottfrederick\/spring-boot,wilkinsona\/spring-boot,htynkn\/spring-boot,wilkinsona\/spring-boot,aahlenst\/spring-boot,dreis2211\/spring-boot,mdeinum\/spring-boot,spring-projects\/spring-boot,vpavic\/spring-boot,mdeinum\/spring-boot,wilkinsona\/spring-boot,spring-projects\/spring-boot,vpavic\/spring-boot,michael-simons\/spring-boot,mdeinum\/spring-boot,wilkinsona\/spring-boot,dreis2211\/spring-boot,wilkinsona\/spring-boot,mdeinum\/spring-boot,scottfrederick\/spring-boot,mdeinum\/spring-boot,aahlenst\/spring-boot,scottfrederick\/spring-boot,michael-simons\/spring-boot,vpavic\/spring-boot,spring-projects\/spring-boot,chrylis\/spring-boot,scottfrederick\/spring-boot,aahlenst\/spring-boot,chrylis\/spring-boot,aahlenst\/spring-boot,spring-projects\/spring-boot,htynkn\/spring-boot,htynkn\/spring-boot,aahlenst\/spring-boot,dreis2211\/spring-boot,spring-projects\/spring-boot,vpavic\/spring-boot,scottfrederick\/spring-boot,michael-simons\/spring-boot,dreis2211\/spring-boot,vpavic\/spring-boot,michael-simons\/spring-boot,spring-projects\/spring-boot,htynkn\/spring-boot,aahlenst\/spring-boot,dreis2211\/spring-boot,wilkinsona\/spring-boot"} {"commit":"1fa758c1cf37209c06560dbd9734cca29a53c689","old_file":"components\/camel-hashicorp-vault\/src\/main\/docs\/hashicorp-vault-component.adoc","new_file":"components\/camel-hashicorp-vault\/src\/main\/docs\/hashicorp-vault-component.adoc","old_contents":"= Hashicorp Vault Component\n:doctitle: Hashicorp Vault\n:shortname: hashicorp-vault\n:artifactid: camel-hashicorp-vault\n:description: Manage secrets in Hashicorp Vault Service\n:since: 3.18\n:supportlevel: Preview\n:component-header: Only producer is supported\n\/\/Manually maintained attributes\n:group: Azure\n:camel-spring-boot-name: hashicorp-vault\n\n*Since Camel {since}*\n\n*{component-header}*\n\nThe hashicorp-vault component that integrates https:\/\/www.vaultproject.io\/[Hashicorp Vault]. \n\n\n== URI Format\n\n[source,xml]\n------------------------------------------------------------\n\n org.apache.camel<\/groupId>\n camel-hashicorp-vault<\/artifactId>\n x.x.x<\/version>\n \n<\/dependency>\n------------------------------------------------------------\n\n\n\/\/ component-configure options: START\n\n\/\/ component-configure options: END\n\n\/\/ component options: START\ninclude::partial$component-configure-options.adoc[]\ninclude::partial$component-endpoint-options.adoc[]\n\/\/ component options: END\n\n\/\/ endpoint options: START\n\n\/\/ endpoint options: END\n","new_contents":"= Hashicorp Vault Component\n:doctitle: Hashicorp Vault\n:shortname: hashicorp-vault\n:artifactid: camel-hashicorp-vault\n:description: Manage secrets in Hashicorp Vault Service\n:since: 3.18\n:supportlevel: Preview\n:component-header: Only producer is supported\n\/\/Manually maintained attributes\n:camel-spring-boot-name: hashicorp-vault\n\n*Since Camel {since}*\n\n*{component-header}*\n\nThe hashicorp-vault component that integrates https:\/\/www.vaultproject.io\/[Hashicorp Vault]. \n\n\n== URI Format\n\n[source,xml]\n------------------------------------------------------------\n\n org.apache.camel<\/groupId>\n camel-hashicorp-vault<\/artifactId>\n x.x.x<\/version>\n \n<\/dependency>\n------------------------------------------------------------\n\n\n\/\/ component-configure options: START\n\n\/\/ component-configure options: END\n\n\/\/ component options: START\ninclude::partial$component-configure-options.adoc[]\ninclude::partial$component-endpoint-options.adoc[]\n\/\/ component options: END\n\n\/\/ endpoint options: START\n\n\/\/ endpoint options: END\n","subject":"Remove group azure as its not from azure","message":"Remove group azure as its not from azure\n","lang":"AsciiDoc","license":"apache-2.0","repos":"cunningt\/camel,christophd\/camel,cunningt\/camel,tadayosi\/camel,cunningt\/camel,christophd\/camel,christophd\/camel,tadayosi\/camel,christophd\/camel,apache\/camel,apache\/camel,tadayosi\/camel,tadayosi\/camel,apache\/camel,cunningt\/camel,apache\/camel,tadayosi\/camel,apache\/camel,cunningt\/camel,tadayosi\/camel,christophd\/camel,apache\/camel,cunningt\/camel,christophd\/camel"} {"commit":"ad6ca6cc30d2e9c8e61622a292da5d6a2b5bbbef","old_file":"doc\/todo.adoc","new_file":"doc\/todo.adoc","old_contents":"= To-Do List\n\n- mock_cone_detector creates infinite area and overflows h\n- [line-through]#new waypoints shorter than old don't delete existing waypoints#\n- adjust waypoints for start position and cone position\n- cone area goes down when very close to cone\n- [line-through]#parameterize throttle and steering PWM values#\n- touch sensor does not work\n- cone detection in bright light does not work\n- GUIDED mode does not work\n- Encode PWM values or range set to use in the waypoints file\n- If waypoint encountered before cone is seen, rover goes into HOLD mode\nwith no recovery. Needs to be fixed.\n\n== Possible To-Do\n\n- [line-through]#Change from using WP_SPEED to CRUISE_SPEED. (Seems to be used by Vicky,\nwhile WP_SPEED is not.)#\n- Have a way of manually triggering parameter reload\n\n== Notes\n\nMAV_CMD_DO_SET_HOME appears to reset the map origin, as well as zero the\noffset between the map origin and base_link (for \/mavros\/local_position\/pose\nand \/mavros\/local_position\/odom).\n","new_contents":"= To-Do List\n\n- mock_cone_detector creates infinite area and overflows h\n- (*DONE*) new waypoints shorter than old don't delete existing waypoints\n- adjust waypoints for start position and cone position\n- cone area goes down when very close to cone\n- (*DONE*) parameterize throttle and steering PWM values\n- touch sensor does not work\n- cone detection in bright light does not work\n- GUIDED mode does not work\n- Encode PWM values or range set to use in the waypoints file\n- If waypoint encountered before cone is seen, rover goes into HOLD mode\nwith no recovery. Needs to be fixed.\n\n== Possible To-Do\n\n- (*DONE*) Change from using WP_SPEED to CRUISE_SPEED. (Seems to be used by Vicky,\nwhile WP_SPEED is not.)\n- Have a way of manually triggering parameter reload\n\n== Notes\n\nMAV_CMD_DO_SET_HOME appears to reset the map origin, as well as zero the\noffset between the map origin and base_link (for \/mavros\/local_position\/pose\nand \/mavros\/local_position\/odom).\n","subject":"Mark completed items as DONE instead of using line-through","message":"Mark completed items as DONE instead of using line-through\n\nGitHub's flavor of asciidoc does not support \"line-through\" for\nstriking out text. Added explicit \"DONE\" indication instead.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"ProgrammingRobotsStudyGroup\/robo_magellan,ProgrammingRobotsStudyGroup\/robo_magellan,ProgrammingRobotsStudyGroup\/robo_magellan,ProgrammingRobotsStudyGroup\/robo_magellan"} {"commit":"7d46332a89b52b8c9314100441c90b33ebf13d65","old_file":"genie-web\/src\/docs\/asciidoc\/api\/commands\/_getClustersForCommand.adoc","new_file":"genie-web\/src\/docs\/asciidoc\/api\/commands\/_getClustersForCommand.adoc","old_contents":"=== Get the Clusters that Have Command Available\n\n==== Description\n\nSearch the clusters that the given command is linked to.\n\n==== Endpoint\n\n`GET \/api\/v3\/applications\/{id}\/commands`\n\n:snippet-base: {snippets}\/command-rest-controller-integration-test\/can-get-clusters-for-command\/8\n:id-base: get-clusters-for-command\n:!request-headers:\n:request-path-params: {snippet-base}\/path-parameters.adoc\n:request-query-params: {snippet-base}\/request-parameters.adoc\n:!request-fields:\n:curl-request: {snippet-base}\/curl-request.adoc\n:httpie-request: {snippet-base}\/httpie-request.adoc\n:response-headers: {snippet-base}\/response-headers.adoc\n:response-fields: {snippet-base}\/response-fields.adoc\n:!response-links:\n:http-request: {snippet-base}\/http-request.adoc\n:http-response: {snippet-base}\/http-response.adoc\n\ninclude::..\/_apiTemplate.adoc[]\n","new_contents":"=== Get the Clusters that Have Command Available\n\n==== Description\n\nSearch the clusters that the given command is linked to.\n\n==== Endpoint\n\n`GET \/api\/v3\/commands\/{id}\/clusters`\n\n:snippet-base: {snippets}\/command-rest-controller-integration-test\/can-get-clusters-for-command\/8\n:id-base: get-clusters-for-command\n:!request-headers:\n:request-path-params: {snippet-base}\/path-parameters.adoc\n:request-query-params: {snippet-base}\/request-parameters.adoc\n:!request-fields:\n:curl-request: {snippet-base}\/curl-request.adoc\n:httpie-request: {snippet-base}\/httpie-request.adoc\n:response-headers: {snippet-base}\/response-headers.adoc\n:response-fields: {snippet-base}\/response-fields.adoc\n:!response-links:\n:http-request: {snippet-base}\/http-request.adoc\n:http-response: {snippet-base}\/http-response.adoc\n\ninclude::..\/_apiTemplate.adoc[]\n","subject":"Fix spelling error in endpoint","message":"Fix spelling error in endpoint\n","lang":"AsciiDoc","license":"apache-2.0","repos":"tgianos\/genie,Netflix\/genie,Netflix\/genie,Netflix\/genie,Netflix\/genie,Netflix\/genie,tgianos\/genie,tgianos\/genie,tgianos\/genie,tgianos\/genie"} {"commit":"cb7811f0882509b25c84a35055116f609b481903","old_file":"CHANGES.adoc","new_file":"CHANGES.adoc","old_contents":"= Changelog\n\n== Version 0.3.0\n\nDate: 2014-01-18\n\n- First version splitted from monolitic buddy package.\n- No changes from original version.\n","new_contents":"= Changelog\n\n== Version 0.4.0\n\nDate: unreleased\n\n- Add encode\/decode functions to JWS\/JWT implementation. Them instead of return\n plain value, return a monadic either. That allows granular error reporting\n instead something like nil that not very useful. The previous sign\/unsign\n are conserved for backward compatibility but maybe in future will be removed.\n\n-\n\n== Version 0.3.0\n\nDate: 2014-01-18\n\n- First version splitted from monolitic buddy package.\n- No changes from original version.\n","subject":"Update changelog related to jws changes.","message":"Update changelog related to jws changes.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"funcool\/buddy-sign"} {"commit":"f16e0e181816408e2e617429e5b47571c70528d2","old_file":"README.asciidoc","new_file":"README.asciidoc","old_contents":"== dda - Django Desktop Application\n\n=== Introduction\n\nDDA is an example project to demonstrate how to use Django as a desktop\napplication. It provides an alternative to using a GUI framework such as\nhttps:\/\/docs.python.org\/3.4\/library\/tkinter.html[Tkinter] or\nhttp:\/\/sourceforge.net\/projects\/pyqt\/[PyQt].\n\nIt is a work in progress.\n","new_contents":"== dda - Django Desktop Application\n\n=== Introduction\n\nDDA is an example project to demonstrate how to use Django as a desktop\napplication. It provides an alternative to using a GUI framework such as\nhttps:\/\/docs.python.org\/3.4\/library\/tkinter.html[Tkinter] or\nhttp:\/\/sourceforge.net\/projects\/pyqt\/[PyQt].\n\nIt is a work in progress.\n\n=== Credits\n\nTo allow the Django Desktop Application to access common javascript and css\nfiles used by the web pages (without having to hit the network), I have\nincluded copies in this distribution. Here is a list:\n\n - http:\/\/jquery.com\/[jQuery (Version 2.1.1)]\n - http:\/\/getbootstrap.com\/[Bootstrap (Version 3.3.1)]\n - http:\/\/glyphicons.com\/[Glyphicons] (Graciously donated to Bootstrap)\n - http:\/\/silviomoreto.github.io\/bootstrap-select\/[Bootstrap Select (Version 1.6.3)]\n\nThey are all awesome.\n","subject":"Add credits section for included content.","message":"Add credits section for included content.\n","lang":"AsciiDoc","license":"mit","repos":"hoadlck\/dda,hoadlck\/dda"} {"commit":"dc1840b1af4c77b933808abfb27a51cd15f9492c","old_file":"doc\/resources\/doc\/sources\/uberjar.adoc","new_file":"doc\/resources\/doc\/sources\/uberjar.adoc","old_contents":"= Creating an Uberjar\n\nEdge provides a script for running pack to build an uberjar.\nTo use it, you can simply run the below from your project sub-directory (the same folder as your deps.edn).\n\n[source,shell]\n----\n$ ..\/bin\/onejar -A:prod --args '-m edge.main' project.jar\n----\n\nThe `-A:prod` indicates an alias you would like to have its `:extra-deps` and `:paths` included in your resulting jar.\n`--args` are default arguments to your jar, in this case we are specifying that the application should run edge.main, part of the edge production modules.\n\nYou can run this jar in production quite easily:\n\n[source,shell]\n----\n$ java -Xmx1G -jar project.jar\n----\n\nWe recommend that you specify the memory usage of your JVM, as the default on Java 6+ is usually insufficient for hosts run only this JVM process.\nA rule of thumb is to use 2\/3rds of the memory of your host.\n","new_contents":"= Creating an Uberjar\n\n== OneJar\n\nEdge provides a script for running pack to build an uberjar.\nTo use it, you can simply run the below from your project sub-directory (the same folder as your deps.edn).\n\n[source,shell]\n----\n$ ..\/bin\/onejar -A:prod --args '-m edge.main' project.jar\n----\n\nThe `-A:prod` indicates an alias you would like to have its `:extra-deps` and `:paths` included in your resulting jar.\n`--args` are default arguments to your jar, in this case we are specifying that the application should run edge.main, part of the edge production modules.\n\n== Capsule \n\nBuild a capsule uberjar using this command: \n\n[source,shell]\n----\n$ ..\/bin\/capsule -m edge.main -e 'target\/prod' -A:prod project.jar\n----\n\nIf you are using clojurescript in your project make sure you run this command first: \n\n[source,shell]\n----\n$ clojure -A:build:build\/once\n----\n\nIt will build the clojurescript files and put them in the correct folder to be included in the uberjar. \n\n== Running the jar\n\nYou can run the produced jar in production quite easily:\n\n[source,shell]\n----\n$ java -Xmx1G -jar project.jar\n----\n\nWe recommend that you specify the memory usage of your JVM, as the default on Java 6+ is usually insufficient for hosts run only this JVM process.\nA rule of thumb is to use 2\/3rds of the memory of your host.\n\n\n","subject":"Add docs for how to use the capsule command","message":"Add docs for how to use the capsule command","lang":"AsciiDoc","license":"mit","repos":"juxt\/edge,juxt\/edge"} {"commit":"b45a7468cb03c32edaff56539fac47fa16468467","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Callfire API v2 REST client\n\nC# client for Callfire platform API version 2. See link:https:\/\/developers.callfire.com\/callfire-api-client-csharp.html[Getting Started]\n page for setup instructions.\n\n.*Requirements:*\n* .NET 4.6+\n\n.*Dependencies:*\n* Newtonsoft.Json >= 7.0.1\n* RestSharp >= 106.4.2\n\n.*Table of contents*\n* link:https:\/\/developers.callfire.com\/callfire-api-client-csharp.html[Getting Started]\n* link:https:\/\/developers.callfire.com\/docs.html[REST endpoints documentation and api code samples]\n* Have a question ?\n** link:https:\/\/developers.callfire.com\/chat.html[Public chat room]\n** link:http:\/\/stackoverflow.com\/questions\/tagged\/callfire[Ask on stackoverflow]\n** link:https:\/\/answers.callfire.com\/hc\/en-us[Call Us]\n","new_contents":"= Callfire API v2 REST client\n\nC# client for Callfire platform API version 2. See link:https:\/\/developers.callfire.com\/callfire-api-client-csharp.html[Getting Started]\n page for setup instructions.\n\n.*Requirements:*\n* .NET 4.6+\n\n.*Dependencies:*\n* Newtonsoft.Json >= 12.0.2\n* RestSharp = 106.6.4 (RestSharp have a bug with serialization to camelCase json string, wait for fix https:\/\/github.com\/restsharp\/RestSharp\/issues\/1251 before upgrade to newer)\n\n.*Table of contents*\n* link:https:\/\/developers.callfire.com\/callfire-api-client-csharp.html[Getting Started]\n* link:https:\/\/developers.callfire.com\/docs.html[REST endpoints documentation and api code samples]\n* Have a question ?\n** link:https:\/\/developers.callfire.com\/chat.html[Public chat room]\n** link:http:\/\/stackoverflow.com\/questions\/tagged\/callfire[Ask on stackoverflow]\n** link:https:\/\/answers.callfire.com\/hc\/en-us[Call Us]\n","subject":"Update readmy with dependency versions","message":"Update readmy with dependency versions","lang":"AsciiDoc","license":"mit","repos":"CallFire\/callfire-api-client-csharp"} {"commit":"59d486e6928660260f587c0cb9cbf99bb84a5b8c","old_file":"code\/issueTracker.adoc","new_file":"code\/issueTracker.adoc","old_contents":"= Report an issue\n:awestruct-layout: normalBase\n:showtitle:\n\n== Issue tracker\n\nWe welcome issue reports (bugs, improvements, new feature requests, ...) in our issue tracker:\n\n*Show https:\/\/issues.jboss.org\/browse\/drools[the JIRA issue tracker].*\n\nLog in and click on the button _Create Issue_ to report a bug, improvement or feature request.\n\n== Pull requests on GitHub\n\nWant to fix the issue yourself? Fork https:\/\/github.com\/droolsjbpm[the git repository] and send in a pull request.\nWe usually process all pull requests within a few days.\n\n== Kanban boards\n\n* https:\/\/issues.jboss.org\/secure\/RapidBoard.jspa?rapidView=4016[Drools]\n* https:\/\/issues.jboss.org\/secure\/RapidBoard.jspa?rapidView=3828[OptaPlanner]\n* https:\/\/issues.jboss.org\/secure\/RapidBoard.jspa?rapidView=3972[jBPM]\n* https:\/\/issues.jboss.org\/secure\/RapidBoard.jspa?rapidView=3462[Guvnor]\n* AppFormer (todo)\n* https:\/\/issues.jboss.org\/secure\/RapidBoard.jspa?rapidView=3838[Designer.NEXT]\n","new_contents":"= Report an issue\n:awestruct-layout: normalBase\n:showtitle:\n\n== Issue tracker\n\nWe welcome issue reports (bugs, improvements, new feature requests, ...) in our issue tracker:\n\n*Show https:\/\/issues.jboss.org\/browse\/drools[the JIRA issue tracker].*\n\nLog in and click on the button _Create Issue_ to report a bug, improvement or feature request.\n\n== Pull requests on GitHub\n\nWant to fix the issue yourself? Fork https:\/\/github.com\/droolsjbpm[the git repository] and send in a pull request.\nWe usually process all pull requests within a few days.\n\n== Kanban boards\n\n* https:\/\/issues.jboss.org\/secure\/RapidBoard.jspa?rapidView=4016[Drools]\n* https:\/\/issues.jboss.org\/secure\/RapidBoard.jspa?rapidView=4032[OptaPlanner]\n* https:\/\/issues.jboss.org\/secure\/RapidBoard.jspa?rapidView=3972[jBPM]\n* https:\/\/issues.jboss.org\/secure\/RapidBoard.jspa?rapidView=3462[Guvnor]\n* AppFormer (todo)\n* https:\/\/issues.jboss.org\/secure\/RapidBoard.jspa?rapidView=3838[Designer.NEXT]\n","subject":"Update to OptaPlanner scrum board","message":"Update to OptaPlanner scrum board","lang":"AsciiDoc","license":"apache-2.0","repos":"droolsjbpm\/drools-website,droolsjbpm\/drools-website,droolsjbpm\/drools-website"} {"commit":"6883c4702db90173bcdc282ce8980fee04f03b66","old_file":"pages\/apim\/overview\/components.adoc","new_file":"pages\/apim\/overview\/components.adoc","old_contents":"= Components\n:page-sidebar: apim_sidebar\n:page-permalink: apim_overview_components.html\n:page-folder: apim\/overview\n\nNext sections are describing top components which are part of Gravitee.io.\n\n== Gateway\nThe gateway is the core component of the Gravitee.io platform. You can compare it to a \"smart\" proxy to understand its goal.\n\nUnlike traditional HTTP proxy, the gateway is able to apply <> (ie. rules) to\nboth HTTP requests and responses according to your needs, meaning that you can enhance requests and responses processing\nby adding transformation, security, and many other crazy features!\n\n.Gravitee.io - Gateway Internal\nimage::architecture\/graviteeio-gateway-internal.png[Gravitee.io - Gateway Internal]\n\n.Gravitee.io - Gateway Architecture\nimage::architecture\/graviteeio-gateway-architecture.png[Gravitee.io - Gateway Architecture]\n\n== Management API\nA restful API providing a bunch of services to manage and configure the global platform. All exposed\nservices are constraint by authentication and authorization rules.\nYou can find more information by having a look to the <> section.\n\n== Management UI\nThis is the Web UI for <>. This UI acts as a management tool\nfor API Publishers but also as a portal for your API Consumers.\n\n","new_contents":"= Components\n:page-sidebar: apim_sidebar\n:page-permalink: apim_overview_components.html\n:page-folder: apim\/overview\n\nNext sections are describing top components which are part of Gravitee.io.\n\n== Gateway\nThe gateway is the core component of the Gravitee.io platform. You can compare it to a \"smart\" proxy to understand its goal.\n\nUnlike traditional HTTP proxy, the gateway is able to apply <> (ie. rules) to\nboth HTTP requests and responses according to your needs, meaning that you can enhance requests and responses processing\nby adding transformation, security, and many other crazy features!\n\n.Gravitee.io - Gateway Internal\nimage::architecture\/graviteeio-gateway-internal.png[Gravitee.io - Gateway Internal]\n\n.Gravitee.io - Gateway Architecture\nimage::architecture\/graviteeio-gateway-architecture.png[Gravitee.io - Gateway Architecture]\n\n== Management API\nA restful API providing a bunch of services to manage and configure the global platform. All exposed\nservices are constraint by authentication and authorization rules.\nYou can find more information by having a look to the link:\/apim_installguide_management_api_documentation.html[Management API > Documentation] section.\n\n== Management UI\nThis is the Web UI for <>. This UI acts as a management tool\nfor API Publishers but also as a portal for your API Consumers.\n\n","subject":"Fix the documentation of REST API link","message":"Fix the documentation of REST API link\n","lang":"AsciiDoc","license":"apache-2.0","repos":"gravitee-io\/gravitee-docs,gravitee-io\/gravitee-docs,gravitee-io\/gravitee-docs"} {"commit":"52bd2ad90495a36c38daddd9ede3ffa20d2e7572","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Talend component for Neo4j\nBenoit Simard \nV1.0\n:experimental:\n:toc:\n:toc-placement: preamble\n:toc-title: pass:[Table of Contents<\/b>]\n:outfilesuffix-old: {outfilesuffix}\nifdef::env-github[:outfilesuffix: .adoc]\nifndef::env-github[]\n:idprefix:\n:idseparator: -\nendif::[]\n\nimage:https:\/\/travis-ci.org\/sim51\/neo4j-talend-component.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/sim51\/neo4j-talend-component\"]\n\nimage:https:\/\/coveralls.io\/repos\/github\/sim51\/neo4j-talend-component\/badge.svg?branch=master[\"Coverage Status\", link=\"https:\/\/coveralls.io\/github\/sim51\/neo4j-talend-component?branch=master\"]\n\nProject website : http:\/\/sim51.github.io\/neo4j-talend-component\/\n\n== TODO\n\n* Remake packaging phase for the assembly (there is some cobertura thing into compile class on the archive)\n\n","new_contents":"= Talend component for Neo4j\nBenoit Simard \nV1.0\n:experimental:\n:toc:\n:toc-placement: preamble\n:toc-title: pass:[Table of Contents<\/b>]\n:outfilesuffix-old: {outfilesuffix}\nifdef::env-github[:outfilesuffix: .adoc]\nifndef::env-github[]\n:idprefix:\n:idseparator: -\nendif::[]\n\nimage:https:\/\/travis-ci.org\/sim51\/neo4j-talend-component.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/sim51\/neo4j-talend-component\"]\n\nimage:https:\/\/coveralls.io\/repos\/github\/sim51\/neo4j-talend-component\/badge.svg?branch=master[\"Coverage Status\", link=\"https:\/\/coveralls.io\/github\/sim51\/neo4j-talend-component?branch=master\"]\n\nProject website : http:\/\/sim51.github.io\/neo4j-talend-component\/\n\n== TODO\n\n","subject":"Remove done job on todo list","message":"Remove done job on todo list\n","lang":"AsciiDoc","license":"mit","repos":"sim51\/neo4j-talend-component"} {"commit":"13c9a13f84fb760d2e71e7f9a41d994923c2ee35","old_file":"README.adoc","new_file":"README.adoc","old_contents":"== asciidoctor-fopub-embed-svg-example\n\nAn example for embedding SVG images in an asciidoctor document.\n\n=== Setup\n\n----\nbundle install\n----\n\n=== How to make the target pdf file\n\nRunning the command below make the target pdf file named \"class_diagram.pdf\" out of \"class_diagram.adoc\"\n\n----\nbundle exec rake\n----\n\n=== Watch *.adoc files\n\nRunning the command below, rake watches \"\\*.adoc\" files and build \"*.adoc\" files whenever they are modified.\n\n----\nbundle exec rake watch\n----\n\n=== Example output files\n\nYou can see the example output files at\n\n* https:\/\/hnakamur.github.io\/asciidoctor-fopub-embed-svg-example\/class_diagram.pdf[class_diagram.pdf]\n\n=== Note\n\nYou must be add `width` and `height` attributes to the root `` element.\nWithout these, you got redundant spaces between the embedded image and the following text.\n","new_contents":"== asciidoctor-fopub-embed-svg-example\n\nAn example for embedding SVG images in an asciidoctor document.\n\n=== Setup\n\n----\nbundle install\n----\n\n=== How to make the target pdf file\n\nRunning the command below make the target pdf file named \"class_diagram.pdf\" out of \"class_diagram.adoc\"\n\n----\nbundle exec rake\n----\n\n=== Watch *.adoc files\n\nRunning the command below, rake watches \"\\*.adoc\" files and build \"*.adoc\" files whenever they are modified.\n\n----\nbundle exec rake watch\n----\n\n=== Example output files\n\nYou can see the example output files at\n\n* https:\/\/hnakamur.github.io\/asciidoctor-fopub-embed-svg-example\/class_diagram.pdf[class_diagram.pdf]\n* https:\/\/hnakamur.github.io\/asciidoctor-fopub-embed-svg-example\/class_diagram.html[class_diagram.html]\n\n=== Note\n\nYou must be add `width` and `height` attributes to the root `` element.\nWithout these, you got redundant spaces between the embedded image and the following text.\n","subject":"Add deleted html example link","message":"Add deleted html example link\n","lang":"AsciiDoc","license":"mit","repos":"hnakamur\/asciidoctor-fopub-embed-svg-example"} {"commit":"19abdf188e32660fd9b14f40fbf84fff4e71f021","old_file":"doc\/releasing.adoc","new_file":"doc\/releasing.adoc","old_contents":"== Source release to pypi\n\n python setup.py release --skip-tests --pypi\n\n== Sign source release for GitHub\n\n gpg --detach-sign dist\/yubikey-manager-VERSION.tar.gz\n\n== Releasing on macOS\n\n python setup.py executable\n resources\/fix_libusb_dep_app_bundle.sh dist\/YubiKey\\ Manager.app\/\n codesign -s 'Developer ID Application' dist\/YubiKey\\ Manager.app\/ --deep\n sudo pkgbuild --install-location \/Applications --component dist\/YubiKey\\ Manager.app\/ dist\/installer.pkg\n productsign -s 'Developer ID Installer' dist\/installer.pkg dist\/yubikey-manager-VERSION-mac.pkg\n gpg --detach-sign dist\/yubikey-manager-VERSION-mac.pkg\n\n== Releasing on Windows\n\n python setup.py executable\n gpg --detach-sign dist\/yubikey-manager-VERSION-win.exe\n","new_contents":"== Source release to pypi\n\n python setup.py release --skip-tests --pypi\n\n== Sign source release for GitHub\n\n gpg --detach-sign dist\/yubikey-manager-VERSION.tar.gz\n\n== Releasing on macOS\n\n python setup.py executable\n resources\/fix_libusb_dep_app_bundle.sh dist\/YubiKey\\ Manager.app\/\n codesign --deep --force --verify --verbose --sign 'Developer ID Application' dist\/YubiKey\\ Manager.app\/\n sudo pkgbuild --sign 'Developer ID Installer' --install-location \/Applications --component dist\/YubiKey\\ Manager.app\/ dist\/installer.pkg\n gpg --detach-sign dist\/yubikey-manager-VERSION-mac.pkg\n\n== Releasing on Windows\n\n python setup.py executable\n gpg --detach-sign dist\/yubikey-manager-VERSION-win.exe\n","subject":"Update code signing commands for macOS","message":"Update code signing commands for macOS","lang":"AsciiDoc","license":"bsd-2-clause","repos":"Yubico\/yubikey-manager,Yubico\/yubikey-manager"} {"commit":"f97d2b4992d6de1a8269ca3f00ca12511ba58b09","old_file":"org.jenetics.doc\/src\/main\/asciidoc\/implementation\/Main.adoc","new_file":"org.jenetics.doc\/src\/main\/asciidoc\/implementation\/Main.adoc","old_contents":"= Implementation protocols\nFranz Wilhelmstötter \n:Author Initials: FWi\n:toc:\n:icons:\n:numbered:\n:website: http:\/\/jenetics.io\/\n\nWhile implementing the library, a lot of concrete implementation decisions have been made. This document gives a more detailed description of some selected implementation details.\n\ninclude::CreateRandomSeed.adoc[]\n\ninclude::OptimizeMinimum.adoc[]\n","new_contents":"= Implementation protocols\nFranz Wilhelmstötter \n:Author Initials: FWi\n:toc:\n:icons:\n:numbered:\n:website: http:\/\/jenetics.io\/\n\nWhile implementing the library, a lot of concrete implementation decisions have been made. This document gives a more detailed description of selected implementation details.\n\ninclude::CreateRandomSeed.adoc[]\n\ninclude::OptimizeMinimum.adoc[]\n","subject":"Update main document of 'Implementation protocol'.","message":"Update main document of 'Implementation protocol'.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"jenetics\/jenetics,jenetics\/jenetics,jenetics\/jenetics,jenetics\/jenetics,jenetics\/jenetics,jenetics\/jenetics,jenetics\/jenetics"} {"commit":"fb04fd0d39c27797786487cb56eaa15a9217fecf","old_file":"docs\/reference\/index.asciidoc","new_file":"docs\/reference\/index.asciidoc","old_contents":"[[elasticsearch-reference]]\n= Elasticsearch Reference\n\n:version: 2.2.0\n:branch: 2.0\n:major-version: 2.x\n:jdk: 1.8.0_25\n:defguide: https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/guide\/current\n:plugins: https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/plugins\/2.x\n:issue: https:\/\/github.com\/elastic\/elasticsearch\/issues\n:pull: https:\/\/github.com\/elastic\/elasticsearch\/pull\n\ninclude::getting-started.asciidoc[]\n\ninclude::setup.asciidoc[]\n\ninclude::migration\/index.asciidoc[]\n\ninclude::api-conventions.asciidoc[]\n\ninclude::docs.asciidoc[]\n\ninclude::search.asciidoc[]\n\ninclude::aggregations.asciidoc[]\n\ninclude::indices.asciidoc[]\n\ninclude::cat.asciidoc[]\n\ninclude::cluster.asciidoc[]\n\ninclude::query-dsl.asciidoc[]\n\ninclude::mapping.asciidoc[]\n\ninclude::analysis.asciidoc[]\n\ninclude::modules.asciidoc[]\n\ninclude::index-modules.asciidoc[]\n\ninclude::testing.asciidoc[]\n\ninclude::glossary.asciidoc[]\n\ninclude::release-notes.asciidoc[]\n\ninclude::redirects.asciidoc[]\n\n\n\n\n","new_contents":"[[elasticsearch-reference]]\n= Elasticsearch Reference\n\n:version: 2.2.0\n:branch: 2.x\n:major-version: 2.x\n:jdk: 1.8.0_25\n:defguide: https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/guide\/current\n:plugins: https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/plugins\/2.x\n:issue: https:\/\/github.com\/elastic\/elasticsearch\/issues\/\n:pull: https:\/\/github.com\/elastic\/elasticsearch\/pull\/\n\ninclude::getting-started.asciidoc[]\n\ninclude::setup.asciidoc[]\n\ninclude::migration\/index.asciidoc[]\n\ninclude::api-conventions.asciidoc[]\n\ninclude::docs.asciidoc[]\n\ninclude::search.asciidoc[]\n\ninclude::aggregations.asciidoc[]\n\ninclude::indices.asciidoc[]\n\ninclude::cat.asciidoc[]\n\ninclude::cluster.asciidoc[]\n\ninclude::query-dsl.asciidoc[]\n\ninclude::mapping.asciidoc[]\n\ninclude::analysis.asciidoc[]\n\ninclude::modules.asciidoc[]\n\ninclude::index-modules.asciidoc[]\n\ninclude::testing.asciidoc[]\n\ninclude::glossary.asciidoc[]\n\ninclude::release-notes.asciidoc[]\n\ninclude::redirects.asciidoc[]\n\n\n\n\n","subject":"Fix :issue: and :pull: asciidoc replacements","message":"Docs: Fix :issue: and :pull: asciidoc replacements\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test"} {"commit":"b545131d24a81eb946f5f61afd7a6846e6677aa4","old_file":"app\/README.adoc","new_file":"app\/README.adoc","old_contents":"= Edge App\n\nUntil CIDER 0.17 has been released (which brings improved support for\nClojure CLI), please use a terminal to run `clj`.\n\nEnsure that you are in the `app` sub-directory.\n\n----\n$ .\/bin\/dev\ndev=> (go)\n----\n\nThis starts an nrepl-server, the port is announced on the command line.\n\n== Cursive support\n\nCurrent versions of Cursive don't support `deps.edn`, but will work with a `pom.xml`.\n\nYou can generate the `pom.xml` with the following command:\n\n----\n$ clojure -Spom\n----\n","new_contents":"= Edge App\n\nUntil CIDER 0.17 has been released (which brings improved support for\nClojure CLI), please use a terminal to run `clj`.\n\nEnsure that you are in the `app` sub-directory.\n\n----\n$ .\/bin\/repl\ndev=> (go)\n----\n\nThis starts an nrepl-server, the port is announced on the command line.\n\n== Cursive support\n\nCurrent versions of Cursive don't support `deps.edn`, but will work with a `pom.xml`.\n\nYou can generate the `pom.xml` with the following command:\n\n----\n$ clojure -Spom\n----\n","subject":"Update docs to reflect dev->repl","message":"Update docs to reflect dev->repl\n","lang":"AsciiDoc","license":"mit","repos":"juxt\/edge,juxt\/edge"} {"commit":"356a692b14309ade9ed368430d0402d089b64de2","old_file":"docs\/conventions.adoc","new_file":"docs\/conventions.adoc","old_contents":"\n# Conventions over configuration\n\nThis document covers conventions used in Dogen that may help you build Dockerfiles faster and easier.\n\n## Handling YUM\/DNF repo files\n\nIn case you add YUM\/DNF repo files that you want to put to the `\/etc\/yum.repos.d` directory\nto enable additional repositories Dogen will handle it for you automatically.\n\nIf Dogen will detect files\nwith `.repo` extension in the `scripts` directory located under the target (output) directory Dogen will\nautomatically copy all these files to `\/etc\/yum.repos.d` directory and enable them to be used while\ninstalling packages listed in the `packages` section.\n\nAfter installation Dogen removes newly added repo files from the `\/etc\/yum.repos.d` directory *automatically*.\nIf you do not want to have these files removed after installation -- you need to make your repo files\npart of some package and install them manually.\n\n### Things to note\n\n1. This feature covers only the situation where you want to add a custom repo file at *build\n time* but you do not want it to be enabled in containers.\n2. Repo file name should be the *same* as the repo id in the repository\n (the name between square brackets).\n3. There should be *only one* repository per file.\n4. Only added repositories will be enabled during install of packages, all other repositories (including default)\n will be *disabled*.\n\n## Running scripts\n\n### Default script name\n\nIf you do not specify an `exec` key for a script, dogen will check for a script named `run`\nand execute it if it exists.\n","new_contents":"\n# Conventions over configuration\n\nThis document covers conventions used in Dogen that may help you build Dockerfiles faster and easier.\n\n## Handling YUM\/DNF repo files\n\nIn case you add YUM\/DNF repo files that you want to put to the `\/etc\/yum.repos.d` directory\nto enable additional repositories Dogen will handle it for you automatically.\n\nIf Dogen will detect files\nwith `.repo` extension in the `scripts` directory located under the target (output) directory Dogen will\nautomatically copy all these files to `\/etc\/yum.repos.d` directory and enable them to be used while\ninstalling packages listed in the `packages` section.\n\nAfter installation Dogen removes newly added repo files from the `\/etc\/yum.repos.d` directory *automatically*.\nIf you do not want to have these files removed after installation -- you need to make your repo files\npart of some package and install them manually.\n\n### Things to note\n\n1. This feature covers only the situation where you want to add a custom repo file at *build\n time* but you do not want it to be enabled in containers.\n2. Repo file name should be the *same* as the repo id in the repository\n (the name between square brackets).\n3. There should be *only one* repository per file.\n4. Only added repositories will be enabled during install of packages, all other repositories (including default)\n will be *disabled*.\n\n## Running scripts\n\n### Default script name\n\nIf you do not specify an `exec` key for a script, dogen will check for a script named `run`\nand execute it if it exists.\n\n### Default script execution user\n\nDogen will execute all scripts as `root` unless you have specified a user with the `user` key.\n","subject":"Document default user is root","message":"Document default user is root\n","lang":"AsciiDoc","license":"mit","repos":"goldmann\/dogen,goldmann\/dogen,jboss-container-images\/concreate,goldmann\/dogen,jboss-dockerfiles\/dogen,jboss-dockerfiles\/dogen,jboss-container-images\/concreate,jboss-dockerfiles\/dogen,jboss-container-images\/concreate"} {"commit":"b349e670b58b4291d6bcbfe14ccff17f083dfd57","old_file":"spring-cloud-stream-docs\/src\/main\/asciidoc\/spring-cloud-stream-aggregate.adoc","new_file":"spring-cloud-stream-docs\/src\/main\/asciidoc\/spring-cloud-stream-aggregate.adoc","old_contents":"include::{stream-docs-basedir}\/core\/spring-cloud-stream-core-docs\/src\/main\/asciidoc\/spring-cloud-stream-overview.adoc[]\n\n= Binder Implementations\n\n== Apache Kafka Binder\n\ninclude::{stream-docs-basedir}\/kafka\/spring-cloud-stream-binder-kafka-docs\/src\/main\/asciidoc\/overview.adoc[leveloffset=+1]\n\n== RabbitMQ Binder\n\ninclude::{stream-docs-basedir}\/rabbit\/spring-cloud-stream-binder-rabbit-docs\/src\/main\/asciidoc\/overview.adoc[leveloffset=+1]\n","new_contents":"include::{stream-docs-basedir}\/core\/spring-cloud-stream-core-docs\/src\/main\/asciidoc\/spring-cloud-stream-overview.adoc[]\n\n= Binder Implementations\n\n== Apache Kafka Binder\n\ninclude::{stream-docs-basedir}\/kafka\/spring-cloud-stream-binder-kafka-docs\/src\/main\/asciidoc\/overview.adoc[leveloffset=+1]\n\n== RabbitMQ Binder\n\ninclude::{stream-docs-basedir}\/rabbit\/spring-cloud-stream-binder-rabbit-docs\/src\/main\/asciidoc\/overview.adoc[leveloffset=+1]\ninclude::{stream-docs-basedir}\/rabbit\/spring-cloud-stream-binder-rabbit-docs\/src\/main\/asciidoc\/dlq.adoc[leveloffset=+1]\n","subject":"Fix the addition of Rabbit DLQ documentation","message":"Fix the addition of Rabbit DLQ documentation\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spring-cloud\/spring-cloud-stream,spring-cloud\/spring-cloud-stream,garyrussell\/spring-cloud-stream,garyrussell\/spring-cloud-stream,spring-cloud\/spring-cloud-stream,garyrussell\/spring-cloud-stream"} {"commit":"7da672a9c225fa8c85f2733520d92b842d102732","old_file":"modules\/nw-ingress-sharding-namespace-labels.adoc","new_file":"modules\/nw-ingress-sharding-namespace-labels.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * configuring_ingress_cluster_traffic\/configuring-ingress-cluster-traffic-ingress-controller.adoc\n\/\/ * ingress-operator.adoc\n\n[id=\"nw-ingress-sharding-namespace-labels_{context}\"]\n= Configuring ingress controller sharding by using namespace labels\n\nIngress Controller sharding by using namespace labels means that the Ingress\nController serves any route in any namespace that is selected by the namespace\nselector.\n\nIngress Controller sharding is useful when balancing incoming traffic load among\na set of Ingress Controllers and when isolating traffic to a specific Ingress\nController. For example, company A goes to one Ingress Controller and company B\nto another.\n\n.Procedure\n\n. Edit the `router-internal.yaml` file:\n+\n----\n# cat router-internal.yaml\napiVersion: v1\nitems:\n- apiVersion: operator.openshift.io\/v1\n kind: IngressController\n metadata:\n name: sharded\n namespace: openshift-ingress-operator\n spec:\n domain: \n nodePlacement:\n nodeSelector:\n matchLabels:\n node-role.kubernetes.io\/worker: \"\"\n routeSelector:\n matchLabels:\n type: sharded\n status: {}\nkind: List\nmetadata:\n resourceVersion: \"\"\n selfLink: \"\"\n----\n\n. Apply the Ingress Controller `router-internal.yaml` file:\n+\n----\n# oc apply -f router-internal.yaml\n----\n+\nThe Ingress Controller selects routes in any namespace that is selected by the\nnamespace selector that have the label `type: sharded`.\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * configuring_ingress_cluster_traffic\/configuring-ingress-cluster-traffic-ingress-controller.adoc\n\/\/ * ingress-operator.adoc\n\n[id=\"nw-ingress-sharding-namespace-labels_{context}\"]\n= Configuring ingress controller sharding by using namespace labels\n\nIngress Controller sharding by using namespace labels means that the Ingress\nController serves any route in any namespace that is selected by the namespace\nselector.\n\nIngress Controller sharding is useful when balancing incoming traffic load among\na set of Ingress Controllers and when isolating traffic to a specific Ingress\nController. For example, company A goes to one Ingress Controller and company B\nto another.\n\n.Procedure\n\n. Edit the `router-internal.yaml` file:\n+\n----\n# cat router-internal.yaml\napiVersion: v1\nitems:\n- apiVersion: operator.openshift.io\/v1\n kind: IngressController\n metadata:\n name: sharded\n namespace: openshift-ingress-operator\n spec:\n domain: \n nodePlacement:\n nodeSelector:\n matchLabels:\n node-role.kubernetes.io\/worker: \"\"\n namespaceSelector:\n matchLabels:\n type: sharded\n status: {}\nkind: List\nmetadata:\n resourceVersion: \"\"\n selfLink: \"\"\n----\n\n. Apply the Ingress Controller `router-internal.yaml` file:\n+\n----\n# oc apply -f router-internal.yaml\n----\n+\nThe Ingress Controller selects routes in any namespace that is selected by the\nnamespace selector that have the label `type: sharded`.\n","subject":"Fix example for ingress sharding by namespace","message":"Fix example for ingress sharding by namespace\n\nFollow-up to commit 69c879f8edaceb4f679eca3f475f0d9851e460c6.\n\n* modules\/nw-ingress-sharding-namespace-labels.adoc: Change routeSelector\nto namespaceSelector.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"ceb118f7f57cd99cd9acda306189a58489ac9127","old_file":"doc\/modules\/ROOT\/partials\/Footer.adoc","new_file":"doc\/modules\/ROOT\/partials\/Footer.adoc","old_contents":"== License\n\n+++\"Deep<\/a>+++\nCopyright © 2015–2019 http:\/\/deepsymmetry.org[Deep Symmetry, LLC]\n\nDistributed under the https:\/\/opensource.org\/licenses\/EPL-2.0[Eclipse\nPublic License 2.0]. By using this software in any fashion, you are\nagreeing to be bound by the terms of this license. You must not remove\nthis notice, or any other, from this software. A copy of the license\ncan be found in\nhttps:\/\/github.com\/Deep-Symmetry\/afterglow\/blob\/master\/LICENSE[LICENSE]\nwithin this project.\n","new_contents":"== License\n\n+++\"Deep<\/a>+++\nCopyright © 2015–2020 http:\/\/deepsymmetry.org[Deep Symmetry, LLC]\n\nDistributed under the https:\/\/opensource.org\/licenses\/EPL-2.0[Eclipse\nPublic License 2.0]. By using this software in any fashion, you are\nagreeing to be bound by the terms of this license. You must not remove\nthis notice, or any other, from this software. A copy of the license\ncan be found in\nhttps:\/\/github.com\/Deep-Symmetry\/afterglow\/blob\/master\/LICENSE[LICENSE]\nwithin this project.\n","subject":"Update user guide copyright date.","message":"Update user guide copyright date.\n","lang":"AsciiDoc","license":"epl-1.0","repos":"brunchboy\/afterglow,brunchboy\/afterglow,brunchboy\/afterglow"} {"commit":"786dbae9588af66a12811e2b908fef964dcb369d","old_file":"src\/main\/docs\/common-warningDependencyNotBuildscriptDependency.adoc","new_file":"src\/main\/docs\/common-warningDependencyNotBuildscriptDependency.adoc","old_contents":"WARNING: Be sure to add the dependency to the `dependencies` section of the `build.gradle` file, and not the `buildscript`\/`dependencies` section. The former is for application dependencies (needed for at compile time, runtime, or testing), whereas the `buildscript` `dependencies` is for those needed as part of the Gradle build process (managing static assets, for example).\n","new_contents":"WARNING: Be sure to add the dependency to the `dependencies` section of the `build.gradle` file, and not the `buildscript`\/`dependencies` section. The former is for application dependencies (needed at compile time, runtime, or for testing), whereas the `buildscript` `dependencies` is for those needed as part of the Gradle build process (managing static assets, for example).\n","subject":"Correct typo in common warning","message":"Correct typo in common warning","lang":"AsciiDoc","license":"apache-2.0","repos":"grails\/grails-guides,grails\/grails-guides,grails\/grails-guides"} {"commit":"d1b0f81cbe7a94344097493eed64de1228c1e98e","old_file":"revapi-site\/src\/site\/asciidoc\/news\/20171029-compatibility-release.adoc","new_file":"revapi-site\/src\/site\/asciidoc\/news\/20171029-compatibility-release.adoc","old_contents":"== New Releases Restoring Compatibility\n\nRevapi has started to use Java 9 for building while maintaining compatibility with Java 8 using the Animal Sniffer Maven\nplugin. This has proven to be problematic and the link:20171015-releases.html[last] releases could not be used with\nJava 8. This should be now fixed and compatibility with Java 8 restored.\n\nThe following were released:\n\n* Revapi API 0.8.4\n* Revapi Basic Features 0.6.3\n* Revapi Ant Task 0.6.3\n* Revapi Java SPI 0.14.0\n* Revapi Java Extension 0.14.3\n* Revapi Text Reporter 0.8.2\n* Revapi Standalone 0.6.4\n* Revapi Maven Plugin 0.9.4\n\nIn addition to the above fix, a new artifact is now released `revapi-java-test-support` starting at version `0.1.0`.\nThis artifact is supposed to help custom extensions with testing by providing simple utilities to build, compile and\ninspect custom jar files.\n","new_contents":"== New Releases Restoring Compatibility\n\nRevapi has started to use Java 9 for building while maintaining compatibility with Java 8 using the Animal Sniffer Maven\nplugin. This has proven to be problematic and the link:20171015-releases.html[last] releases could not be used with\nJava 8. This should be now fixed and compatibility with Java 8 restored.\n\nThe following were released:\n\n* Revapi API 0.8.4\n* Revapi Basic Features 0.6.3\n* Revapi Ant Task 0.6.3\n* Revapi Java SPI 0.14.0\n* Revapi Java Extension 0.14.3\n* Revapi Text Reporter 0.8.2\n* Revapi Standalone 0.6.4\n* Revapi Maven Plugin 0.9.4\n\nIn addition to the above fix, a new artifact is now released `revapi-java-test-support` starting at version `0.1.0`.\nThis artifact is supposed to help custom extensions with testing by providing simple utilities to build, compile and\ninspect custom jar files.\n\nThanks go out to Petr Široký who found, diagnosed and fixed the compatibility issue. Petr, you're a star!\n","subject":"Add a thank-you message to the release notes.","message":"Add a thank-you message to the release notes.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"revapi\/revapi,revapi\/revapi,revapi\/revapi"} {"commit":"1c755d78b4d040ae178ee36fea8d6f12f28c9130","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= AsciiDoc Book Starter\n\nThis is the starter folder structure for writing book with AsciiDoc.\n\nInspired by https:\/\/github.com\/progit\/progit2[Pro Git 2].\n\n== Building\n\nrun `rake` to build book.\n\nrun `rake book:build_chapter_html` to build each chapter into HTML file.\n\n== Lincense\n\nThe MIT License\n","new_contents":"= AsciiDoc Book Starter\n\nThis is the starter folder structure for writing book with AsciiDoc.\n\nInspired by https:\/\/github.com\/progit\/progit2[Pro Git 2].\n\n== Installation\n\nInstall the gems via `bundle install`.\n\n== Building\n\nrun `bundle exec rake` to build book.\n\nrun `bundle exec rake book:build_chapter_html` to build each chapter into HTML file.\n\n== Lincense\n\nThe MIT License\n","subject":"Update readme to include installation. Add bundler: exec needs a command to run to the Converting to HTML... -- HTML output at output\/master.html Converting to EPub... -- Epub output at output\/master.epub Converting to Mobi (kf8)... -- Mobi output at output\/master.mobi Converting to PDF... (this one takes a while) -- PDF output at output\/master.pdf command.","message":"Update readme to include installation. Add bundler: exec needs a command to run to the Converting to HTML...\n -- HTML output at output\/master.html\nConverting to EPub...\n -- Epub output at output\/master.epub\nConverting to Mobi (kf8)...\n -- Mobi output at output\/master.mobi\nConverting to PDF... (this one takes a while)\n -- PDF output at output\/master.pdf command.\n","lang":"AsciiDoc","license":"mit","repos":"makzan\/asciidoc-book-starter"} {"commit":"7d62ee05a0fbdf9dded5db8674979eeda4761213","old_file":"documentation\/modules\/ROOT\/pages\/_attributes.adoc","new_file":"documentation\/modules\/ROOT\/pages\/_attributes.adoc","old_contents":":moduledir: ..\n:attachmentsdir: {moduledir}\/assets\/attachments\n:examplesdir: {moduledir}\/examples\n:imagesdir: {moduledir}\/assets\/images\n:partialsdir: {moduledir}\/pages\/_partials\n\n:debezium-version: 0.10.0.Beta4\n:debezium-dev-version: 0.10\n:debezium-kafka-version: 2.3.0\n:debezium-docker-label: 0.10\n:install-version: 0.10\n:confluent-platform-version: 5.1.2\n:strimzi-version: 0.9.0\n","new_contents":":moduledir: ..\n:attachmentsdir: {moduledir}\/assets\/attachments\n:examplesdir: {moduledir}\/examples\n:imagesdir: {moduledir}\/assets\/images\n:partialsdir: {moduledir}\/pages\/_partials\n\n:debezium-version: 1.0.0.Beta2\n:debezium-dev-version: 1.0\n:debezium-kafka-version: 2.3.0\n:debezium-docker-label: 1.0\n:install-version: 1.0\n:confluent-platform-version: 5.1.2\n:strimzi-version: 0.9.0\n","subject":"Update documentation version attributes","message":"Update documentation version attributes [ci skip]\n","lang":"AsciiDoc","license":"apache-2.0","repos":"debezium\/debezium,debezium\/debezium,jpechane\/debezium,jpechane\/debezium,debezium\/debezium,jpechane\/debezium,debezium\/debezium,jpechane\/debezium"} {"commit":"26e6dfbe200903ee30790b0685e946c53d6a3171","old_file":"neo4j-ogm-docs\/src\/main\/asciidoc\/index.adoc","new_file":"neo4j-ogm-docs\/src\/main\/asciidoc\/index.adoc","old_contents":"= Neo4j-OGM - An Object Graph Mapping Library for Neo4j\n\n\nifdef::backend-html5[(C) {copyright}]\nifndef::backend-pdf[]\n\nLicense: link:{common-license-page-uri}[Creative Commons 4.0]\nendif::[]\nifdef::backend-pdf[]\n(C) {copyright}\n\nLicense: <>\nendif::[]\n\n[abstract]\n--\nThis is the Neo4j object-graph mapping (OGM) manual, authored by the Neo4j team.\n--\n\nThe three parts of the manual are:\n\n* <> -- Introducing graph database concepts, Neo4j and object-graph mapping.\n* <> -- Follow along as you get started using Neo4j-OGM.\n* <> -- Reference documentation for Neo4j-OGM.\n\nBut before starting, let's see the most important new features.\n\ninclude::introduction\/index.adoc[leveloffset=+1]\n\ninclude::tutorial\/index.adoc[leveloffset=+1]\n\ninclude::reference\/index.adoc[leveloffset=+1]\n\n:numbered!:\n\ninclude::appendix\/migration-2.1-to-3.0.adoc[leveloffset=+1]\n\ninclude::appendix\/design-considerations.adoc[leveloffset=+1]\n\ninclude::appendix\/faq.adoc[leveloffset=+1]\n\n\nifdef::backend-pdf[]\ninclude::{license-dir}\/license.adoc[leveloffset=1]\nendif::[]\n","new_contents":"= Neo4j-OGM - An Object Graph Mapping Library for Neo4j\n\n\nifdef::backend-html5[(C) {copyright}]\nifndef::backend-pdf[]\n\nLicense: link:{common-license-page-uri}[Creative Commons 4.0]\nendif::[]\nifdef::backend-pdf[]\n(C) {copyright}\n\nLicense: <>\nendif::[]\n\n[abstract]\n--\nThis is the manual of Neo4j object-graph mapping (OGM) v{ogm-doc-version}, authored by the Neo4j team.\n--\n\nThe three parts of the manual are:\n\n* <> -- Introducing graph database concepts, Neo4j and object-graph mapping.\n* <> -- Follow along as you get started using Neo4j-OGM.\n* <> -- Reference documentation for Neo4j-OGM.\n\nBut before starting, let's see the most important new features.\n\ninclude::introduction\/index.adoc[leveloffset=+1]\n\ninclude::tutorial\/index.adoc[leveloffset=+1]\n\ninclude::reference\/index.adoc[leveloffset=+1]\n\n:numbered!:\n\ninclude::appendix\/migration-2.1-to-3.0.adoc[leveloffset=+1]\n\ninclude::appendix\/design-considerations.adoc[leveloffset=+1]\n\ninclude::appendix\/faq.adoc[leveloffset=+1]\n\n\nifdef::backend-pdf[]\ninclude::{license-dir}\/license.adoc[leveloffset=1]\nendif::[]\n","subject":"Add Neo4j-OGM version in short description.","message":"Add Neo4j-OGM version in short description.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"neo4j\/neo4j-ogm,neo4j\/neo4j-ogm,neo4j\/neo4j-ogm,neo4j\/neo4j-ogm"} {"commit":"5ae1310344eaaaca1712878db1cae72a86e659ba","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= TodoService - World's least awesome Web View and REST Service for TODO\n\nThis will be a nice working TODO app by 2022..\nFor now it provides a trivial ToDo lister\/editor for one person via HTML (JSF).\n\nUses ..\/TodoModel for its JPA Data; do mvn install in that project first.\n\nIt will someday soon also provide a REST interface, which will be awesome enough\nthat there will also be an Android Synch Service to go with it.\n\nYou need to copy config-sample.properties to config.properties, and edit it.\n\nAssuming you're using Wildfly 8 or 9 and PostGres 9,, just set up the datasource and do `mvn wildfly:deploy`\n\n\nThings do do.\n\nBetter UI!\n\nMove away from container-managed security so it can more easily become multi-user.\n","new_contents":"= TodoService - World's least awesome REST Service for TODO\n\nThis will be a nice working TODO app by 2022..\nFor now it provides a trivial ToDo lister\/editor for one person via HTML (JSF).\n\nUses ..\/TodoModel for its JPA Data; do mvn install in that project first.\n\nYou need to copy config-sample.properties to config.properties, and edit it.\n\nAssuming you're using Wildfly 8 or 9 and PostGreSQL 9, just set up the datasource and do `mvn wildfly:deploy`\n\n== Things do do.\n\nMove away from container-managed security so it can more easily become multi-user.\n\n== BUGS\n\nThe only reason this is split off from TodoJSF is that Java EE doesn't allow two\nlogin-config elements, we need FORM for the JSF and BASIC for the REST. Sigh...\n","subject":"Split into JSF and REST","message":"Split into JSF and REST\n","lang":"AsciiDoc","license":"bsd-2-clause","repos":"IanDarwin\/TodoService,IanDarwin\/TodoService,IanDarwin\/TodoREST,IanDarwin\/TodoREST"} {"commit":"7049aa9c1b4cf624b5ef74a05cf563e41c3d4cf6","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Docker test training\n\n== Prerequisites\n* Hebben ze docker geinstalleerd? Zo nee, doen!\n\n== Doel van de presentatie\n* Basisconcepten van Docker uitleggen\n* Simpele voorbeelden van containers\n* Workshop met als doel zelf webpagina met DB backend testen mbv Docker\n\n=== Vragen wat mensen nog meer zouden willen weten\n\n== Wat is docker?\n* Docker vs VM: de verschillen (-> networking)\n* Docker distributie model (git-achtig)\n* Docker client\/server\n* Container file systeem -> volumes\n\n== Simpele voorbeelden:\n* docker run hello-world\n* docker run bash -> docker inspect, docker ps\n* docker run nginx -> in browser laten zien\n* docker run pgsql -> inloggen met pgadmin\n\n== Labs\n* start nginx container met statische inhoud\n** volume mounten, aanpassen etc\n* nginx + selenium, klein testje (java omgeving?)\n* nginx + selenium + database, test dynamische pagina (docker link)\n\n== Extra credit lab\n* Met docker build pgsql image aanpassen dat ie automatisch baseline data inlaadt, die weer gebruiken in de test\n\n","new_contents":"= Docker for testers\n\nThis repository contains training material for testers that want to get started with http:\/\/www.docker.com[Docker]. It was developed by engineers at http:\/\/www.bol.com[bol.com].\n\n== Building the course material\nNOTE: You must have a recent version of the http:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/index.html[JDK] installed to build the course material.\n\nThe course material is written in http:\/\/asciidoctor.org\/[Asciidoctor] and can be built using the following command:\n\n .\/gradlew assemble\n\nThis command will generate a zip file containing all the material in the `workshop\/build\/distributions` directory.","subject":"Update the readme for github","message":"Update the readme for github\n","lang":"AsciiDoc","license":"apache-2.0","repos":"bolcom\/docker-for-testers,bolcom\/docker-for-testers,bolcom\/docker-for-testers"} {"commit":"e92a28385a14fe7a87608e5e88cc2bb8ca61c72f","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= SpringBoot WebApp Demo\n\nhttps:\/\/projects.spring.io\/spring-boot[Spring Boot]\nlooks like a nice way to get started.\nThis is a trivial webapp created using SpringBoot.\n\n== HowTo\n\n\tmvn spring-boot:run\n\nOr, in Eclipse with Spring plugin (or \"Spring Tool Suite\"), \nright-click project or Application.java, \nthen RunAs->Spring Boot Application\n\nSeconds later, connect to \n\nhttp:\/\/localhost:8000\/\n\nNote: that is port 8000, _not_ the usual 8080, to avoid conflicts.\nChange this in application.properties if you don't like it.\n\nFill in the form and click Submit.\n\n== War Packaging for EE App Server Deployment\n\nThis version has the modifications described in\nthe section entitled \"Traditional Deployment\"--\"Create a deployable war file\" in\nthe spring-boot reference manual (Section 85.1 as of\nthis writing).\nit still works in Maven and Eclipse with these settings,\nand the packaged was file has a jboss-web.xml config file\nso it deploys as \/springbootdemos when you simply copy the war file to\nWILDFLYHOME\/standalone\/deployments.\n","new_contents":"= SpringBoot WebApp Demo\n\nhttps:\/\/projects.spring.io\/spring-boot[Spring Boot]\nlooks like a nice way to get started.\nThis is a trivial webapp created using SpringBoot.\n\n== HowTo\n\n\tmvn spring-boot:run\n\nOr, in Eclipse with Spring plugin (or \"Spring Tool Suite\"), \nright-click project or Application.java, \nthen RunAs->Spring Boot Application\n\nSeconds later, connect to \n\nhttp:\/\/localhost:8000\/\n\nNote: that is port 8000, _not_ the usual 8080, to avoid conflicts.\nChange this in application.properties if you don't like it.\n\nFill in the form and click Submit.\n\n== War Packaging for EE App Server Deployment\n\nThis version has the modifications described in\nthe section entitled \"Traditional Deployment\"--\"Create a deployable war file\" in\nthe spring-boot reference manual (Section 85.1 as of\nthis writing).\nit still works in Maven (`mvn package`) and can be run in Eclipse with these settings.\nFor WildFly users, the packaged _war_ file has a jboss-web.xml config file\nso it deploys as _\/springbootdemos_ when you simply copy the _war_ file to\nWILDFLYHOME\/standalone\/deployments.\n","subject":"Fix typo; while here, tweak wording, formatting.","message":"Fix typo; while here, tweak wording, formatting.\n","lang":"AsciiDoc","license":"bsd-2-clause","repos":"IanDarwin\/springbootdemo,IanDarwin\/springbootdemo"} {"commit":"39b154566b6aa98307c2ab7cd4a95eb13c6c4c25","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Blueprint\n:author: Hafid Haddouti\n\nimage:https:\/\/travis-ci.org\/haf-tech\/blueprint.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/haf-tech\/blueprint\"] \nimage:https:\/\/img.shields.io\/badge\/License-Apache%202.0-blue.svg[\"License\", link=\"https:\/\/opensource.org\/licenses\/Apache-2.0\"]\n\n\nBlueprint is a playground for illustrating different paradigms.\n\nIn the meantime the following concepts are integrated or planned:\n\n- Spring Boot\n- AsciiDoctor integration, with UML and different outputs\n- Onion architecture\n- Docker build\/push\n\nNext:\n\n- reactive programming\n\nAn up to date documentation is https:\/\/haf-tech.github.io\/blueprint\/[online] available.\n","new_contents":"= Blueprint\n:author: Hafid Haddouti\n\nimage:https:\/\/travis-ci.org\/haf-tech\/blueprint.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/haf-tech\/blueprint\"] \nimage:https:\/\/img.shields.io\/badge\/License-Apache%202.0-blue.svg[\"License\", link=\"https:\/\/opensource.org\/licenses\/Apache-2.0\"]\nimage:https:\/\/sonarqube.com\/api\/badges\/gate?key=com.haddouti.pg%3Ablueprint-parent[\"Sonar Quality Gate\", link=\"https:\/\/sonarqube.com\/api\/badges\/gate?key=com.haddouti.pg%3Ablueprint-parent\"]\n\nBlueprint is a playground for illustrating different paradigms.\n\nIn the meantime the following concepts are integrated or planned:\n\n- Spring Boot\n- AsciiDoctor integration, with UML and different outputs\n- Onion architecture\n- Docker build\/push\n\nNext:\n\n- reactive programming\n\nAn up to date documentation is https:\/\/haf-tech.github.io\/blueprint\/[online] available.\n","subject":"Add badge for SonarQube integration","message":"Add badge for SonarQube integration","lang":"AsciiDoc","license":"apache-2.0","repos":"haf-tech\/blueprint"} {"commit":"35f736464f7990d6ca041f83a0b286dd181e85cc","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Tiny Request Limits Library designed for Java 8\n\n:hardbreaks:\n\nimage:https:\/\/travis-ci.org\/storozhukBM\/requestlimit.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/storozhukBM\/requestlimit\"] image:https:\/\/coveralls.io\/repos\/github\/storozhukBM\/requestlimit\/badge.svg[\"Coverage Status\", link=\"https:\/\/coveralls.io\/github\/storozhukBM\/requestlimit\"]","new_contents":"= Tiny Request Limits Library designed for Java 8\n\n:hardbreaks:\n\n\nimage:https:\/\/travis-ci.org\/storozhukBM\/requestlimit.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/storozhukBM\/requestlimit\"] image:https:\/\/coveralls.io\/repos\/github\/storozhukBM\/requestlimit\/badge.svg[\"Coverage Status\", link=\"https:\/\/coveralls.io\/github\/storozhukBM\/requestlimit\"]","subject":"Rebuild master with coverage report","message":"Rebuild master with coverage report\n","lang":"AsciiDoc","license":"apache-2.0","repos":"storozhukBM\/requestlimit"} {"commit":"638bb25702931b9e8f71ee91fac3b9c2f4e69e83","old_file":"doc\/release-process.adoc","new_file":"doc\/release-process.adoc","old_contents":"= OmniJ Release Process\n\n== Main Release Process\n\n\n. Official builds are now done with JDK 11. (Although most release JARs are JDK 8-compatible)\n.. `sdk use java 11.0.10.hs-adpt`\n. Update `CHANGELOG.adoc`\n. Set versions\n.. `gradle.properties`\n.. omnij-dsl `ExtensionModule`\n.. `README.adoc`\n. Commit version bump and changelog.\n. Full build, test\n.. `.\/gradlew clean buildCI regTest`\n. Tag: `git tag -a v0.x.y -m \"Release 0.x.y\"`\n. Push: `git push --tags origin master`\n. Publish to Bintray:\n.. `.\/gradlew bintrayUpload`\n.. Confirm publish of artifacts in Bintray Web UI.\n. Publish Github pages site including JavaDoc and GroovyDoc\n.. `.\/gradlew publishSite`\n. Publish to Github Packages\n.. `.\/gradlew publish`\n. Update Github https:\/\/github.com\/OmniLayer\/OmniJ\/releases[OmniJ Releases] page.\n\n== Announcements\n\n. Not yet.\n\n== After release\n\n. Set versions back to -SNAPSHOT\n.. `gradle.properties`\n.. omnij-dsl `ExtensionModule`\n.. `CHANGELOG.adoc`\n.. *Not* `README.adoc` -- it should match release version\n. Commit and push to master\n\n\n== Publish Snapshot release to Github Maven repo\n\n. `.gradlew clean buildCI regTest publish`\n\n== Install Snapshot to local maven repo\n\n. `.\/gradlew clean buildCI publishToMavenLocal`\n\n\n\n","new_contents":"= OmniJ Release Process\n\n== Main Release Process\n\n\n. Official builds are now done with JDK 11. (Although most release JARs are JDK 8-compatible)\n.. `sdk use java 11.0.10.hs-adpt`\n. Update `CHANGELOG.adoc`\n. Set versions\n.. `gradle.properties`\n.. omnij-dsl `ExtensionModule`\n.. `README.adoc`\n. Commit version bump and changelog.\n. Full build, test\n.. `.\/gradlew clean buildCI regTest`\n. Tag: `git tag -a v0.x.y -m \"Release 0.x.y\"`\n. Push: `git push --tags origin master`\n. Publish to Gitlab Maven repo:\n.. `.\/gradlew publish`\n. Publish Github pages site including JavaDoc and GroovyDoc\n.. `.\/gradlew publishSite`\n. Update Github https:\/\/github.com\/OmniLayer\/OmniJ\/releases[OmniJ Releases] page.\n\n== Announcements\n\n. Not yet.\n\n== After release\n\n. Set versions back to -SNAPSHOT\n.. `gradle.properties`\n.. omnij-dsl `ExtensionModule`\n.. `CHANGELOG.adoc`\n.. *Not* `README.adoc` -- it should match release version\n. Commit and push to master\n\n\n== Publish Snapshot release to Github Maven repo\n\n. `.gradlew clean buildCI regTest publish`\n\n== Install Snapshot to local maven repo\n\n. `.\/gradlew clean buildCI publishToMavenLocal`\n\n\n\n","subject":"Update release process for Gitlab Maven repo","message":"Update release process for Gitlab Maven repo","lang":"AsciiDoc","license":"apache-2.0","repos":"OmniLayer\/OmniJ,OmniLayer\/OmniJ,OmniLayer\/OmniJ"} {"commit":"a75cc8e9c997737d724f581e7cc2d6615ea6d092","old_file":"docs\/modules\/ROOT\/pages\/installation.adoc","new_file":"docs\/modules\/ROOT\/pages\/installation.adoc","old_contents":"= Installation\n\nRuboCop's installation is pretty standard:\n\n[source,sh]\n----\n$ gem install rubocop\n----\n\nIf you'd rather install RuboCop using `bundler`, don't require it in your `Gemfile`:\n\n[source,rb]\n----\ngem 'rubocop', require: false\n----\n\nRuboCop's development is moving at a very rapid pace and there are\noften backward-incompatible changes between minor releases (since we\nhaven't reached version 1.0 yet). To prevent an unwanted RuboCop update you\nmight want to use a conservative version locking in your `Gemfile`:\n\n[source,rb]\n----\ngem 'rubocop', '~> 0.85.1', require: false\n----\n\nNOTE: You can check out our progress on the road to version 1.0 https:\/\/github.com\/rubocop-hq\/rubocop\/milestone\/4[here].\nYou can also help us get there faster! :-)\n","new_contents":"= Installation\n\nRuboCop's installation is pretty standard:\n\n[source,sh]\n----\n$ gem install rubocop\n----\n\nIf you'd rather install RuboCop using `bundler`, don't require it in your `Gemfile`:\n\n[source,rb]\n----\ngem 'rubocop', require: false\n----\n\nRuboCop's development is moving at a very rapid pace and there are\noften backward-incompatible changes between minor releases (since we\nhaven't reached version 1.0 yet). To prevent an unwanted RuboCop update you\nmight want to use a conservative version locking in your `Gemfile`:\n\n[source,rb]\n----\ngem 'rubocop', '~> 0.85.1', require: false\n----\n\nNOTE: You can check out our progress on the road to version 1.0 https:\/\/github.com\/rubocop-hq\/rubocop\/milestone\/4[here].\nYou can also help us get there faster! :-)\n\n.A Modular RuboCop\n****\nOriginally RuboCop bundled cops focused on performance and Ruby on Rails, but those were\nextracted into their own gems eventually:\n\n* the performance cops were extracted in `rubocop-performance` and were removed from the main gem in 0.68\n* the Ruby on Rails cops were extracted in `rubocop-rails` and were removed from the main gem in 0.72\n\nYou'll need to install those gems separately if you'd like to use them.\nSee https:\/\/metaredux.com\/posts\/2019\/05\/22\/a-modular-rubocop.html[this article] for more details.\n\nAdditionally, RuboCop's AST logic was extracted to `rubocop-ast` in RuboCop 0.84. While this change is\ntransparent to RuboCop's users (`rubocop-ast` is a runtime dependency of `rubocop`), it's good to be\naware that you can leverage RuboCop's AST node extensions and AST node pattern matching outside of RuboCop.\n****\n","subject":"Add a sidebar about gems that were extracted from RuboCop","message":"[Docs] Add a sidebar about gems that were extracted from RuboCop\n","lang":"AsciiDoc","license":"mit","repos":"rrosenblum\/rubocop,tdeo\/rubocop,maxjacobson\/rubocop,tejasbubane\/rubocop,bbatsov\/rubocop,jmks\/rubocop,tdeo\/rubocop,bbatsov\/rubocop,tejasbubane\/rubocop,tdeo\/rubocop,rrosenblum\/rubocop,jmks\/rubocop,tejasbubane\/rubocop,jmks\/rubocop,maxjacobson\/rubocop,maxjacobson\/rubocop,rrosenblum\/rubocop"} {"commit":"936919d3dfbff306bdf6cacecb9d2e0b939de6f2","old_file":"sample.adoc","new_file":"sample.adoc","old_contents":"= _Precompiled_ Math!\n:math:\n:imagesoutdir: generated_images\n:imagesdir: images\n\n## Equations!\n\n[latexmath]\n++++\nk_{n+1} = n^2 + k_n^2 - k_{n-1}\n++++\n\nSome useful text! Formula for quadratic root:\n\n[latexmath]\n++++\nx = \\frac{-b \\pm \\sqrt{b^2 - 4ac}}{2a}\n++++\n\nInline equation works too! latexmath:[a^2+b^2=c^2]. Pretty nice, huh?\n","new_contents":"= _Precompiled_ Math!\n:math:\n:imagesoutdir: generated_images\n:imagesdir: images\n:stem: latexmath\n\n## Equations!\n\n[latexmath]\n++++\nk_{n+1} = n^2 + k_n^2 - k_{n-1}\n++++\n\nSome useful text! Formula for quadratic root:\n\n[stem]\n++++\nx = \\frac{-b \\pm \\sqrt{b^2 - 4ac}}{2a}\n++++\n\nInline equation works too! latexmath:[a^2+b^2=c^2]. Or as stem\nstem:[a^2+b^2=c^2]. Pretty nice, huh?\n","subject":"Add tests for stem macros","message":"Add tests for stem macros\n","lang":"AsciiDoc","license":"mit","repos":"tstumm\/asciidoctor-mathematical,asciidoctor\/asciidoctor-mathematical"} {"commit":"35758235f8e526b22681cf372a636f6475b5d23e","old_file":"CHANGES.adoc","new_file":"CHANGES.adoc","old_contents":"= Changelog\n\n== Version 0.4.0\n\nDate: unreleased\n\n- Add encode\/decode functions to JWS\/JWT implementation. Them instead of return\n plain value, return a monadic either. That allows granular error reporting\n instead something like nil that not very useful. The previous sign\/unsign\n are conserved for backward compatibility but maybe in future will be removed.\n- Rename parameter `maxage` to `max-age` on jws implementation. This change\n introduces a little backward incompatibility.\n- Add \"compact\" signing implementation as replacemen of django based one.\n- Django based generic signing is removed.\n- Update buddy-core version to 0.4.0\n\n\n== Version 0.3.0\n\nDate: 2014-01-18\n\n- First version splitted from monolitic buddy package.\n- No changes from original version.\n","new_contents":"= Changelog\n\n== Version 0.4.0\n\nDate: 2015-02-22\n\n- Add encode\/decode functions to JWS\/JWT implementation. Them instead of return\n plain value, return a monadic either. That allows granular error reporting\n instead something like nil that not very useful. The previous sign\/unsign\n are conserved for backward compatibility but maybe in future will be removed.\n- Rename parameter `maxage` to `max-age` on jws implementation. This change\n introduces a little backward incompatibility.\n- Add \"compact\" signing implementation as replacemen of django based one.\n- Django based generic signing is removed.\n- Update buddy-core version to 0.4.0\n\n\n== Version 0.3.0\n\nDate: 2014-01-18\n\n- First version splitted from monolitic buddy package.\n- No changes from original version.\n","subject":"Update changelog with release date of 0.4.0","message":"Update changelog with release date of 0.4.0\n","lang":"AsciiDoc","license":"apache-2.0","repos":"funcool\/buddy-sign"} {"commit":"a8b46d7aa524c61bb30bffdc64b30c245772066c","old_file":"ci\/README.adoc","new_file":"ci\/README.adoc","old_contents":"== Concourse pipeline\n\nEnsure that you've setup the spring-boot target and can login\n\n[source]\n----\n$ fly -t spring-boot login -n spring-boot -c https:\/\/ci.spring.io\n----\n\nThe pipeline can be deployed using the following command:\n\n[source]\n----\n$ fly -t spring-boot set-pipeline -p spring-boot -c ci\/pipeline.yml -l ci\/parameters.yml\n----\n\nNOTE: This assumes that you have credhub integration configured with the appropriate\nsecrets.\n","new_contents":"== Concourse pipeline\n\nEnsure that you've setup the spring-boot target and can login\n\n[source]\n----\n$ fly -t spring-boot login -n spring-boot -c https:\/\/ci.spring.io\n----\n\nThe pipeline can be deployed using the following command:\n\n[source]\n----\n$ fly -t spring-boot set-pipeline -p spring-boot-2.2.x -c ci\/pipeline.yml -l ci\/parameters.yml\n----\n\nNOTE: This assumes that you have credhub integration configured with the appropriate\nsecrets.\n","subject":"Rename CI pipeline to include the version in its name","message":"Rename CI pipeline to include the version in its name\n\nCloses gh-18844\n","lang":"AsciiDoc","license":"apache-2.0","repos":"NetoDevel\/spring-boot,spring-projects\/spring-boot,aahlenst\/spring-boot,royclarkson\/spring-boot,wilkinsona\/spring-boot,royclarkson\/spring-boot,eddumelendez\/spring-boot,jxblum\/spring-boot,philwebb\/spring-boot,eddumelendez\/spring-boot,mdeinum\/spring-boot,vpavic\/spring-boot,htynkn\/spring-boot,mbenson\/spring-boot,joshiste\/spring-boot,Buzzardo\/spring-boot,ilayaperumalg\/spring-boot,shakuzen\/spring-boot,dreis2211\/spring-boot,philwebb\/spring-boot,ilayaperumalg\/spring-boot,yangdd1205\/spring-boot,eddumelendez\/spring-boot,mdeinum\/spring-boot,vpavic\/spring-boot,chrylis\/spring-boot,shakuzen\/spring-boot,dreis2211\/spring-boot,NetoDevel\/spring-boot,htynkn\/spring-boot,eddumelendez\/spring-boot,spring-projects\/spring-boot,mbenson\/spring-boot,mdeinum\/spring-boot,wilkinsona\/spring-boot,htynkn\/spring-boot,chrylis\/spring-boot,ilayaperumalg\/spring-boot,wilkinsona\/spring-boot,rweisleder\/spring-boot,Buzzardo\/spring-boot,yangdd1205\/spring-boot,aahlenst\/spring-boot,chrylis\/spring-boot,vpavic\/spring-boot,eddumelendez\/spring-boot,rweisleder\/spring-boot,jxblum\/spring-boot,rweisleder\/spring-boot,chrylis\/spring-boot,ilayaperumalg\/spring-boot,dreis2211\/spring-boot,yangdd1205\/spring-boot,shakuzen\/spring-boot,ilayaperumalg\/spring-boot,scottfrederick\/spring-boot,jxblum\/spring-boot,royclarkson\/spring-boot,joshiste\/spring-boot,rweisleder\/spring-boot,wilkinsona\/spring-boot,royclarkson\/spring-boot,scottfrederick\/spring-boot,dreis2211\/spring-boot,jxblum\/spring-boot,mdeinum\/spring-boot,philwebb\/spring-boot,mbenson\/spring-boot,aahlenst\/spring-boot,shakuzen\/spring-boot,shakuzen\/spring-boot,Buzzardo\/spring-boot,eddumelendez\/spring-boot,spring-projects\/spring-boot,philwebb\/spring-boot,aahlenst\/spring-boot,royclarkson\/spring-boot,vpavic\/spring-boot,mdeinum\/spring-boot,wilkinsona\/spring-boot,michael-simons\/spring-boot,michael-simons\/spring-boot,vpavic\/spring-boot,htynkn\/spring-boot,joshiste\/spring-boot,Buzzardo\/spring-boot,dreis2211\/spring-boot,jxblum\/spring-boot,scottfrederick\/spring-boot,wilkinsona\/spring-boot,spring-projects\/spring-boot,dreis2211\/spring-boot,michael-simons\/spring-boot,NetoDevel\/spring-boot,scottfrederick\/spring-boot,michael-simons\/spring-boot,joshiste\/spring-boot,rweisleder\/spring-boot,mbenson\/spring-boot,spring-projects\/spring-boot,mbenson\/spring-boot,shakuzen\/spring-boot,scottfrederick\/spring-boot,rweisleder\/spring-boot,jxblum\/spring-boot,joshiste\/spring-boot,aahlenst\/spring-boot,mdeinum\/spring-boot,Buzzardo\/spring-boot,NetoDevel\/spring-boot,chrylis\/spring-boot,michael-simons\/spring-boot,philwebb\/spring-boot,joshiste\/spring-boot,NetoDevel\/spring-boot,philwebb\/spring-boot,htynkn\/spring-boot,spring-projects\/spring-boot,scottfrederick\/spring-boot,chrylis\/spring-boot,vpavic\/spring-boot,mbenson\/spring-boot,Buzzardo\/spring-boot,htynkn\/spring-boot,aahlenst\/spring-boot,ilayaperumalg\/spring-boot,michael-simons\/spring-boot"} {"commit":"f27280812bb07d14f5f0dc4ad770f6fec4c9763d","old_file":"docs\/src\/docs\/asciidoc\/introduction\/upgradeNotes.adoc","new_file":"docs\/src\/docs\/asciidoc\/introduction\/upgradeNotes.adoc","old_contents":"==== Dependency Upgrades\n\nGORM 7.0 supports a minimum version of Java 8, Hibernate 5.3.x and Spring 5.2.x.\n\nEach of these underlying components may have changes that require altering your application. These changes are beyond the scope of this documentation.\n\n\n==== Package Restructuring and Deprecations\n\nPreviously deprecated classes have been deleted from this release and in order to support Java 11 modules in the future some package re-structuring has occurred.\n\n==== Changes to Proxy Handling\n\nGORM no longer creates custom proxy factories nor automatically unwraps Hibernate proxies.\n\nThis makes it more consistent to the way regular Hibernate behaves and reduces the complexity required at the framework level.\n\nYou may need to alter `instanceof` checks are manually unwrap proxies in certain cases.\n\n==== Module `grails-validation` Deprecated and Removed\n\nIn GORM 6.x the `grails-validation` module was deprecated and replaced by `grails-datastore-gorm-validation`.\n\nDeprecated interfaces were maintained for backwards compatibility. In GORM 7.0 these deprecated classes have been removed and all dependency on `grails-validation` removed.","new_contents":"==== Dependency Upgrades\n\nGORM 7.0 supports a minimum version of Java 8, Hibernate 5.3.x and Spring 5.2.x.\n\nEach of these underlying components may have changes that require altering your application. These changes are beyond the scope of this documentation.\n\n\n==== Package Restructuring and Deprecations\n\nPreviously deprecated classes have been deleted from this release and in order to support Java 11 modules in the future some package re-structuring has occurred.\n\n==== Changes to Proxy Handling\n\nGORM no longer creates custom proxy factories nor automatically unwraps Hibernate proxies.\n\nThis makes it more consistent to the way regular Hibernate behaves and reduces the complexity required at the framework level.\n\nYou may need to alter `instanceof` checks are manually unwrap proxies in certain cases.\n\n==== Module `grails-validation` Deprecated and Removed\n\nIn GORM 6.x the `grails-validation` module was deprecated and replaced by `grails-datastore-gorm-validation`.\n\nDeprecated interfaces were maintained for backwards compatibility. In GORM 7.0 these deprecated classes have been removed and all dependency on `grails-validation` removed.\n\n==== Transactions Now Required for all Operations\n\nPrevious versions of Hibernate allowed read operations to be executed without the presence of a declaration transaction.\n\nHibernate 5.2 and above require the presence of an active transaction. If see a `javax.persistence.TransactionRequiredException` exception it means your method lacks a `@Transactional` annotation around it.","subject":"Add note on transaction requirements","message":"Add note on transaction requirements\n","lang":"AsciiDoc","license":"apache-2.0","repos":"grails\/gorm-hibernate5"} {"commit":"652de914785878fe7e2c85ea54560a68ff9b032b","old_file":"README.asciidoc","new_file":"README.asciidoc","old_contents":"TinkerPop3\n----------\n\nimage:https:\/\/raw.githubusercontent.com\/tinkerpop\/tinkerpop3\/master\/docs\/static\/images\/tinkerpop3-splash.png[TinkerPop3]\n\nDocumentation\n~~~~~~~~~~~~~\n\n* link:http:\/\/tinkerpop.com\/docs\/current\/[user documentation]\n* link:http:\/\/tinkerpop.com\/javadocs\/current\/[javadoc]\n\nBuilding and Testing\n~~~~~~~~~~~~~~~~~~~~\n\n* Build Project: `mvn clean install`\n* Build AsciiDocs: `mvn process-resources -Dasciidoc`\n* Deploy AsciiDocs: `mvn deploy -Dasciidoc`\n* Deploy JavaDocs: `mvn deploy -Djavadoc`\n* Travis Deploy Docs: merge\/push to `publish-docs` branch\n* Integration Tests: `mvn clean verify -DskipIntegrationTests=false`\n* Performance Tests: `mvn clean verify -DskipPerformanceTests=false`\n* Gatling Load Tests: `mvn clean test -Pgatling -Dhost={hostname}`\n\nGet Started\n~~~~~~~~~~~\n\n[source,bash]\n----\n$ bin\/gremlin.sh\n\n \\,,,\/\n (o o)\n-----oOOo-(3)-oOOo-----\ngremlin>\n----\n","new_contents":"TinkerPop3\n----------\n\nimage:https:\/\/raw.githubusercontent.com\/tinkerpop\/tinkerpop3\/master\/docs\/static\/images\/tinkerpop3-splash.png[TinkerPop3]\n\nDocumentation\n~~~~~~~~~~~~~\n\n* link:http:\/\/tinkerpop.com\/docs\/current\/[user documentation]\n* link:http:\/\/tinkerpop.com\/javadocs\/current\/[javadoc]\n\nBuilding and Testing\n~~~~~~~~~~~~~~~~~~~~\n\n* Build Project: `mvn clean install`\n* Build AsciiDocs: `mvn process-resources -Dasciidoc`\n* Deploy AsciiDocs: `mvn deploy -Dasciidoc`\n* Deploy JavaDocs: `mvn deploy -Djavadoc`\n* Deploy Zip Archives: `mvn deploy -Darchives`\n* Travis Deploy Docs: merge\/push to `publish-docs` branch\n* Integration Tests: `mvn clean verify -DskipIntegrationTests=false`\n* Performance Tests: `mvn clean verify -DskipPerformanceTests=false`\n* Gatling Load Tests: `mvn clean test -Pgatling -Dhost={hostname}`\n\nGet Started\n~~~~~~~~~~~\n\n[source,bash]\n----\n$ bin\/gremlin.sh\n\n \\,,,\/\n (o o)\n-----oOOo-(3)-oOOo-----\ngremlin>\n----\n","subject":"Add docs for uploading zip archives.","message":"Add docs for uploading zip archives.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"artem-aliev\/tinkerpop,n-tran\/incubator-tinkerpop,velo\/incubator-tinkerpop,vtslab\/incubator-tinkerpop,mike-tr-adamson\/incubator-tinkerpop,jorgebay\/tinkerpop,apache\/tinkerpop,mpollmeier\/tinkerpop3,rmagen\/incubator-tinkerpop,dalaro\/incubator-tinkerpop,apache\/tinkerpop,RussellSpitzer\/incubator-tinkerpop,RussellSpitzer\/incubator-tinkerpop,gdelafosse\/incubator-tinkerpop,BrynCooke\/incubator-tinkerpop,mike-tr-adamson\/incubator-tinkerpop,BrynCooke\/incubator-tinkerpop,dalaro\/incubator-tinkerpop,artem-aliev\/tinkerpop,robertdale\/tinkerpop,n-tran\/incubator-tinkerpop,artem-aliev\/tinkerpop,artem-aliev\/tinkerpop,krlohnes\/tinkerpop,mike-tr-adamson\/incubator-tinkerpop,apache\/tinkerpop,mpollmeier\/tinkerpop3,velo\/incubator-tinkerpop,RussellSpitzer\/incubator-tinkerpop,newkek\/incubator-tinkerpop,pluradj\/incubator-tinkerpop,apache\/incubator-tinkerpop,apache\/tinkerpop,jorgebay\/tinkerpop,PommeVerte\/incubator-tinkerpop,krlohnes\/tinkerpop,robertdale\/tinkerpop,Lab41\/tinkerpop3,velo\/incubator-tinkerpop,robertdale\/tinkerpop,jorgebay\/tinkerpop,newkek\/incubator-tinkerpop,gdelafosse\/incubator-tinkerpop,rmagen\/incubator-tinkerpop,RedSeal-co\/incubator-tinkerpop,samiunn\/incubator-tinkerpop,artem-aliev\/tinkerpop,krlohnes\/tinkerpop,apache\/tinkerpop,pluradj\/incubator-tinkerpop,jorgebay\/tinkerpop,PommeVerte\/incubator-tinkerpop,edgarRd\/incubator-tinkerpop,newkek\/incubator-tinkerpop,RedSeal-co\/incubator-tinkerpop,apache\/incubator-tinkerpop,edgarRd\/incubator-tinkerpop,samiunn\/incubator-tinkerpop,Lab41\/tinkerpop3,vtslab\/incubator-tinkerpop,krlohnes\/tinkerpop,vtslab\/incubator-tinkerpop,rmagen\/incubator-tinkerpop,RedSeal-co\/incubator-tinkerpop,apache\/incubator-tinkerpop,samiunn\/incubator-tinkerpop,dalaro\/incubator-tinkerpop,robertdale\/tinkerpop,pluradj\/incubator-tinkerpop,apache\/tinkerpop,robertdale\/tinkerpop,krlohnes\/tinkerpop,n-tran\/incubator-tinkerpop,edgarRd\/incubator-tinkerpop,apache\/tinkerpop,gdelafosse\/incubator-tinkerpop,PommeVerte\/incubator-tinkerpop,BrynCooke\/incubator-tinkerpop"} {"commit":"3f263c02a3a64c8b781ffb643e5631ba5565c8ba","old_file":"docs\/reference\/setup\/sysconfig\/file-descriptors.asciidoc","new_file":"docs\/reference\/setup\/sysconfig\/file-descriptors.asciidoc","old_contents":"[[file-descriptors]]\n=== File Descriptors\n\n[NOTE]\nThis is only relevant for Linux and macOS and can be safely ignored if running\nElasticsearch on Windows. On Windows that JVM uses an\nhttps:\/\/msdn.microsoft.com\/en-us\/library\/windows\/desktop\/aa363858(v=vs.85).aspx[API]\nlimited only by available resources.\n\nElasticsearch uses a lot of file descriptors or file handles. Running out of\nfile descriptors can be disastrous and will most probably lead to data loss.\nMake sure to increase the limit on the number of open files descriptors for\nthe user running Elasticsearch to 65,536 or higher.\n\nFor the `.zip` and `.tar.gz` packages, set <> as\nroot before starting Elasticsearch, or set `nofile` to `65536` in\n<>.\n\nRPM and Debian packages already default the maximum number of file\ndescriptors to 65536 and do not require further configuration.\n\nYou can check the `max_file_descriptors` configured for each node\nusing the <> API, with:\n\n[source,js]\n--------------------------------------------------\nGET _nodes\/stats\/process?filter_path=**.max_file_descriptors\n--------------------------------------------------\n\/\/ CONSOLE\n","new_contents":"[[file-descriptors]]\n=== File Descriptors\n\n[NOTE]\nThis is only relevant for Linux and macOS and can be safely ignored if running\nElasticsearch on Windows. On Windows that JVM uses an\nhttps:\/\/msdn.microsoft.com\/en-us\/library\/windows\/desktop\/aa363858(v=vs.85).aspx[API]\nlimited only by available resources.\n\nElasticsearch uses a lot of file descriptors or file handles. Running out of\nfile descriptors can be disastrous and will most probably lead to data loss.\nMake sure to increase the limit on the number of open files descriptors for\nthe user running Elasticsearch to 65,536 or higher.\n\nFor the `.zip` and `.tar.gz` packages, set <> as\nroot before starting Elasticsearch, or set `nofile` to `65536` in\n<>.\n\nOn macOS, you must also pass the JVM option `-XX:-MaxFDLimit`\nto Elasticsearch in order for it to make use of the higher file descriptor limit.\n\nRPM and Debian packages already default the maximum number of file\ndescriptors to 65536 and do not require further configuration.\n\nYou can check the `max_file_descriptors` configured for each node\nusing the <> API, with:\n\n[source,js]\n--------------------------------------------------\nGET _nodes\/stats\/process?filter_path=**.max_file_descriptors\n--------------------------------------------------\n\/\/ CONSOLE\n","subject":"Document JVM option MaxFDLimit for macOS ()","message":"Document JVM option MaxFDLimit for macOS ()\n\nThis commit documents a JVM option that is needed on macOS when raising\r\nfile descriptor limits there.\r\n\r\nRelates #26900\r\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra,vroyer\/elassandra,vroyer\/elasticassandra,vroyer\/elasticassandra,vroyer\/elassandra,strapdata\/elassandra,vroyer\/elasticassandra,strapdata\/elassandra,strapdata\/elassandra,strapdata\/elassandra,vroyer\/elassandra"} {"commit":"3ad8dafe5df17baba283974104f37b8e63780ac1","old_file":"storage\/container_storage_interface\/persistent-storage-csi.adoc","new_file":"storage\/container_storage_interface\/persistent-storage-csi.adoc","old_contents":"[id=\"persistent-storage-csi\"]\n= Configuring CSI volumes\ninclude::modules\/common-attributes.adoc[]\n:context: persistent-storage-csi\n\ntoc::[]\n\nThe Container Storage Interface (CSI) allows {product-title} to consume\nstorage from storage back ends that implement the\nlink:https:\/\/github.com\/container-storage-interface\/spec[CSI interface]\nas persistent storage.\n\n[IMPORTANT]\n====\n{product-title} does not ship with any CSI drivers. It is recommended\nto use the CSI drivers provided by\nlink:https:\/\/kubernetes-csi.github.io\/docs\/drivers.html[community or storage vendors].\n\nInstallation instructions differ by driver, and are found in each driver's\ndocumentation. Follow the instructions provided by the CSI driver.\n====\n\ninclude::modules\/persistent-storage-csi-architecture.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-external-controllers.adoc[leveloffset=+2]\n\ninclude::modules\/persistent-storage-csi-driver-daemonset.adoc[leveloffset=+2]\n\ninclude::modules\/persistent-storage-csi-drivers-supported.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-dynamic-provisioning.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-mysql-example.adoc[leveloffset=+1]\n","new_contents":"[id=\"persistent-storage-csi\"]\n= Configuring CSI volumes\ninclude::modules\/common-attributes.adoc[]\n:context: persistent-storage-csi\n\ntoc::[]\n\nThe Container Storage Interface (CSI) allows {product-title} to consume\nstorage from storage back ends that implement the\nlink:https:\/\/github.com\/container-storage-interface\/spec[CSI interface]\nas persistent storage.\n\ninclude::modules\/persistent-storage-csi-architecture.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-external-controllers.adoc[leveloffset=+2]\n\ninclude::modules\/persistent-storage-csi-driver-daemonset.adoc[leveloffset=+2]\n\ninclude::modules\/persistent-storage-csi-drivers-supported.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-dynamic-provisioning.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-mysql-example.adoc[leveloffset=+1]\n","subject":"Remove note that says that no CSI drivers are installed","message":"Remove note that says that no CSI drivers are installed\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"6525fd5cd449a1345f20c8b423a31f2cfb4f829c","old_file":"data\/examples\/asciidoc\/block_admonition.adoc","new_file":"data\/examples\/asciidoc\/block_admonition.adoc","old_contents":"\/\/ .basic\nWARNING: Watch out for dragons!\n\n\/\/ .basic_multiline\nNOTE: An admonition paragraph draws the reader's attention to\nauxiliary information.\nIts purpose is determined by the label\nat the beginning of the paragraph.\n\n\/\/ .block\n[IMPORTANT]\n====\nWhile werewolves are hardy community members, keep in mind some dietary concerns.\n====\n\n\/\/ .block_with_title\n[IMPORTANT]\n.Feeding the Werewolves\n====\nWhile werewolves are hardy community members, keep in mind some dietary concerns.\n====\n\n\/\/ .block_with_id_and_role\n[IMPORTANT, id=werewolve, role=member]\n====\nWhile werewolves are hardy community members, keep in mind some dietary concerns.\n====\n","new_contents":"\/\/ .note\nNOTE: This is a note.\n\n\/\/ .note_with_title\n.Title of note\nNOTE: This is a note with title.\n\n\/\/ .note_with_id_and_role\n[#note-1.yellow]\nNOTE: This is a note with id and role.\n\n\/\/ .note_block\n[NOTE]\n====\nThis is a note with complex content.\n\n* It contains a list.\n====\n\n\/\/ .tip\nTIP: This is a tip.\n\n\/\/ .tip_with_title\n.Title of tip\nTIP: This is a tip with title.\n\n\/\/ .tip_with_id_and_role\n[#tip-1.blue]\nTIP: This is a tip with id and role.\n\n\/\/ .tip_block\n[TIP]\n====\nThis is a tip with complex content.\n\n* It contains a list.\n====\n\n\/\/ .important\nIMPORTANT: This is an important notice.\n\n\/\/ .important_with_title\n.Title of important notice\nIMPORTANT: This is an important notice with title.\n\n\/\/ .important_with_id_and_role\n[#important-1.red]\nIMPORTANT: This is an important notice with id and role.\n\n\/\/ .important_block\n[IMPORTANT]\n====\nThis is an important notice with complex content.\n\n* It contains a list.\n====\n\n\/\/ .caution\nCAUTION: This is a caution.\n\n\/\/ .caution_with_title\n.Title of caution\nCAUTION: This is a caution with title.\n\n\/\/ .caution_with_id_and_role\n[#caution-1.red]\nCAUTION: This is a caution with id and role.\n\n\/\/ .caution_block\n[CAUTION]\n====\nThis is a caution with complex content.\n\n* It contains a list.\n====\n\n\/\/ .warning\nWARNING: This is a warning.\n\n\/\/ .warning_with_title\n.Title of warning\nWARNING: This is a warning with title.\n\n\/\/ .warning_with_id_and_role\n[#warning-1.red]\nWARNING: This is a warning with id and role.\n\n\/\/ .warning_block\n[WARNING]\n====\nThis is a warning with complex content.\n\n* It contains a list.\n====\n","subject":"Add full set of examples for each admonition type","message":"Examples: Add full set of examples for each admonition type\n\nThey may be rendered differently, for example note and tip as aside,\nothers as section.\n","lang":"AsciiDoc","license":"mit","repos":"asciidoctor\/asciidoctor-doctest,asciidoctor\/asciidoctor-doctest"} {"commit":"fb1a5dd30266f6fa0b521eda61c101ee73e3ec82","old_file":"modules\/registry-configuring-storage-azure-user-infra.adoc","new_file":"modules\/registry-configuring-storage-azure-user-infra.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/* registry\/configuring_registry_storage-azure.adoc\n\n[id=\"registry-configuring-storage-azure-user-infra_{context}\"]\n= Configuring registry storage for Azure\n\nDuring installation, your cloud credentials are sufficient to create Azure Blob\nStorage, and the Registry Operator automatically configures storage.\n\n.Prerequisites\n\n* A cluster on Azure with user-provisioned infrastructure.\n* To configure registry storage for Azure, provide Registry Operator\ncloud credentials.\n* For Azure storage the secret is expected to contain one key:\n** `REGISTRY_STORAGE_AZURE_ACCOUNTKEY`\n\n.Procedure\n\n. Create an link:https:\/\/docs.microsoft.com\/en-us\/azure\/storage\/blobs\/storage-quickstart-blobs-portal[Azure storage container].\n\n. Fill in the storage configuration in `configs.imageregistry.operator.openshift.io\/cluster`:\n+\n----\n$ oc edit configs.imageregistry.operator.openshift.io\/cluster\n\nstorage:\n azure:\n accountName: \n container: \n----\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/* registry\/configuring_registry_storage-azure.adoc\n\n[id=\"registry-configuring-storage-azure-user-infra_{context}\"]\n= Configuring registry storage for Azure\n\nDuring installation, your cloud credentials are sufficient to create Azure Blob\nStorage, and the Registry Operator automatically configures storage.\n\n.Prerequisites\n\n* A cluster on Azure with user-provisioned infrastructure.\n* To configure registry storage for Azure, provide Registry Operator\ncloud credentials.\n* For Azure storage the secret is expected to contain one key:\n** `REGISTRY_STORAGE_AZURE_ACCOUNTKEY`\n\n.Procedure\n\n. Create an link:https:\/\/docs.microsoft.com\/en-us\/azure\/storage\/blobs\/storage-quickstart-blobs-portal[Azure storage container].\n\n. Fill in the storage configuration in `configs.imageregistry.operator.openshift.io\/cluster`:\n+\n----\n$ oc edit configs.imageregistry.operator.openshift.io\/cluster\n\nstorage:\n azure:\n accountName: \n container: \n----\n","subject":"Update storage account name in Azure registry storage configuration","message":"Update storage account name in Azure registry storage configuration\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"ebebb98f1e06c83710ce4b81393ae5dc22511c80","old_file":"adoc\/release-process.adoc","new_file":"adoc\/release-process.adoc","old_contents":"= OmniJ Release Process\n\n== Main Release Process\n\n. Update `CHANGELOG.adoc`\n. Set versions\n.. `gradle.properties`\n.. omnij-dsl `ExtensionModule`\n.. `README.adoc`\n. Commit version bump and changelog.\n. Full build, test\n.. `.\/gradlew clean jenkinsBuild regTest`\n. Tag: `git tag -a v0.x.y -m \"Release 0.x.y\"`\n. Push: `git push --tags origin master`\n. Publish to Bintray:\n.. `.\/gradlew bintrayUpload`\n.. Confirm publish of artifacts in Bintray Web UI.\n. Update Github https:\/\/github.com\/OmniLayer\/OmniJ\/releases[OmniJ Releases] page.\n. TBD: Update github-pages site (not set up yet)\n\n== Announcements\n\n. Not yet.\n\n== After release\n\n. Set versions back to -SNAPSHOT\n.. `build.gradle`\n.. omnij-dsl `ExtensionModule`\n.. *Not* `README.adoc` -- it should match release version\n. Commit and push to master\n\n\n\n","new_contents":"= OmniJ Release Process\n\n== Main Release Process\n\n. Update `CHANGELOG.adoc`\n. Set versions\n.. `gradle.properties`\n.. omnij-dsl `ExtensionModule`\n.. `README.adoc`\n. Commit version bump and changelog.\n. Full build, test\n.. `.\/gradlew clean buildCI regTest`\n. Tag: `git tag -a v0.x.y -m \"Release 0.x.y\"`\n. Push: `git push --tags origin master`\n. Publish to Bintray:\n.. `.\/gradlew bintrayUpload`\n.. Confirm publish of artifacts in Bintray Web UI.\n. Update Github https:\/\/github.com\/OmniLayer\/OmniJ\/releases[OmniJ Releases] page.\n. TBD: Update github-pages site (not set up yet)\n\n== Announcements\n\n. Not yet.\n\n== After release\n\n. Set versions back to -SNAPSHOT\n.. `build.gradle`\n.. omnij-dsl `ExtensionModule`\n.. *Not* `README.adoc` -- it should match release version\n. Commit and push to master\n\n\n\n","subject":"Use `buildCI` target rather than `jenkinsBuild`","message":"Use `buildCI` target rather than `jenkinsBuild`","lang":"AsciiDoc","license":"apache-2.0","repos":"OmniLayer\/OmniJ,OmniLayer\/OmniJ,OmniLayer\/OmniJ"} {"commit":"6dadb1686c38dba85faef2e5873120e88dc07698","old_file":"src\/docs\/asciidoc\/index.asciidoc","new_file":"src\/docs\/asciidoc\/index.asciidoc","old_contents":"= Reactor Netty\nStephane Maldini;\n:appversion: 0.5.0 (wiki)\nifndef::host-github[:ext-relative: {outfilesuffix}]\n{appversion}\n:doctype: book\n:icons: font\n\n\/\/include::net.adoc[]\ninclude::tcp-server.adoc[]\ninclude::tcp-client.adoc[]\ninclude::http-server.adoc[]\ninclude::http-client.adoc[]\n\n","new_contents":"= Reactor Netty\nStephane Maldini ; Violeta Georgieva \n:appversion: 0.5.0 (wiki)\nifndef::host-github[:ext-relative: {outfilesuffix}]\n{appversion}\n:doctype: book\n:icons: font\n\n\/\/include::net.adoc[]\ninclude::tcp-server.adoc[]\ninclude::tcp-client.adoc[]\ninclude::http-server.adoc[]\ninclude::http-client.adoc[]\n\n","subject":"Add myself to the list with authors for the reference documentation","message":"Add myself to the list with authors for the reference documentation\n","lang":"AsciiDoc","license":"apache-2.0","repos":"reactor\/reactor-netty,reactor\/reactor-netty"} {"commit":"a532474236dca603d6ac1c4aeaa967124c44e18e","old_file":"docs\/en\/rest-api\/security\/change-password.asciidoc","new_file":"docs\/en\/rest-api\/security\/change-password.asciidoc","old_contents":"[role=\"xpack\"]\n[[security-api-change-password]]\n=== Change Password API\n\nThe Change Password API enables you to submit a request to change the password\nof a user.\n\n==== Request\n\n`POST _xpack\/security\/user\/_password` +\n`POST _xpack\/security\/user\/\/_password` \n\n\n==== Path Parameters\n\n`username`::\n (string) The user whose password you want to change. If you do not specify\n this parameter, the password is changed for the current user.\n\n\n==== Request Body\n\n`password` (required)::\n (string) The new password value.\n\n\n==== Authorization\n\nEvery user can change their own password. Users with the `manage_security`\nprivilege can change passwords of other users.\n\n\n==== Examples\n\nThe following example updates the password for the `elastic` user:\n\n[source,js]\n--------------------------------------------------\nPOST _xpack\/security\/user\/elastic\/_password\n{\n \"password\": \"x-pack-test-password\"\n}\n--------------------------------------------------\n\/\/ CONSOLE\n\nA successful call returns an empty JSON structure.\n\n[source,js]\n--------------------------------------------------\n{}\n--------------------------------------------------\n\/\/ TESTRESPONSE\n","new_contents":"[role=\"xpack\"]\n[[security-api-change-password]]\n=== Change Password API\n\nThe Change Password API enables you to submit a request to change the password\nof a user.\n\n==== Request\n\n`POST _xpack\/security\/user\/_password` +\n\n`POST _xpack\/security\/user\/\/_password`\n\n\n==== Path Parameters\n\n`username`::\n (string) The user whose password you want to change. If you do not specify\n this parameter, the password is changed for the current user.\n\n\n==== Request Body\n\n`password` (required)::\n (string) The new password value.\n\n\n==== Authorization\n\nEvery user can change their own password. Users with the `manage_security`\nprivilege can change passwords of other users.\n\n\n==== Examples\n\nThe following example updates the password for the `elastic` user:\n\n[source,js]\n--------------------------------------------------\nPOST _xpack\/security\/user\/elastic\/_password\n{\n \"password\": \"x-pack-test-password\"\n}\n--------------------------------------------------\n\/\/ CONSOLE\n\nA successful call returns an empty JSON structure.\n\n[source,js]\n--------------------------------------------------\n{}\n--------------------------------------------------\n\/\/ TESTRESPONSE\n","subject":"Fix formatting in change password API","message":"[DOCS] Fix formatting in change password API\n\nOriginal commit: elastic\/x-pack-elasticsearch@0c9b1e7484a5359d08f20ed7f122daac337829d1\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra,vroyer\/elassandra,strapdata\/elassandra,strapdata\/elassandra,strapdata\/elassandra,vroyer\/elassandra,strapdata\/elassandra,vroyer\/elassandra"} {"commit":"1f9654cd9c4983449de3219a0112b7ee3968c003","old_file":"README.adoc","new_file":"README.adoc","old_contents":"# Janitor image:https:\/\/travis-ci.org\/techdev-solutions\/janitor.svg?branch=master[\"Build Status\",link=\"https:\/\/travis-ci.org\/techdev-solutions\/janitor\"]\n\nAn application to perform cleanup work using the https:\/\/getpocket.com[Pocket API].\nReview your existing items via the web interface and have Janitor archive old items once per day.\n\n## API Documentation\nThe documentation for the Kotlin API bindings can be found https:\/\/techdev-solutions.github.io\/janitor\/pocket-api\/[here].\n\n## Tutorial (German)\nKotlin: Ein Tutorial für Einsteiger @ JAXenter::\n* https:\/\/jaxenter.de\/kotlin-tutorial-48156[Part 1]\n* https:\/\/jaxenter.de\/kotlin-ein-tutorial-fuer-einsteiger-teil-2-48587[Part 2]\n* https:\/\/jaxenter.de\/kotlin-ein-tutorial-fuer-einsteiger-teil-3-48967[Part 3]\n\n## Screenshots\n### Item Overview\nimage:images\/items.png?raw=true[Item Overiew]\n\n### Error View\nimage:images\/error.png?raw=true[Error View]","new_contents":"# Janitor image:https:\/\/travis-ci.org\/techdev-solutions\/janitor.svg?branch=master[\"Build Status\",link=\"https:\/\/travis-ci.org\/techdev-solutions\/janitor\"]\n\nAn application to perform cleanup work using the https:\/\/getpocket.com[Pocket API].\nReview your existing items via the web interface and have Janitor archive old items once per day.\n\n## API Documentation\nThe documentation for the Kotlin API bindings can be found https:\/\/techdev-solutions.github.io\/janitor\/pocket-api\/[here].\n\n## Tutorial (German)\nKotlin: Ein Tutorial für Einsteiger @ JAXenter::\n* https:\/\/jaxenter.de\/kotlin-tutorial-48156[Part 1]\n* https:\/\/jaxenter.de\/kotlin-ein-tutorial-fuer-einsteiger-teil-2-48587[Part 2]\n* https:\/\/jaxenter.de\/kotlin-ein-tutorial-fuer-einsteiger-teil-3-48967[Part 3]\n* https:\/\/jaxenter.de\/kotlin-ein-tutorial-fuer-einsteiger-teil-4-49160[Part 4]\n\n## Screenshots\n### Item Overview\nimage:images\/items.png?raw=true[Item Overiew]\n\n### Error View\nimage:images\/error.png?raw=true[Error View]","subject":"Add link to 4th part of JAXenter tutorial","message":"Add link to 4th part of JAXenter tutorial\n","lang":"AsciiDoc","license":"apache-2.0","repos":"techdev-solutions\/janitor,techdev-solutions\/janitor"} {"commit":"7a9c6243d2070aa8589abb208dce96413bfb60e1","old_file":"docs\/groovy-api\/index.asciidoc","new_file":"docs\/groovy-api\/index.asciidoc","old_contents":"= Groovy API\n:ref: http:\/\/www.elastic.co\/guide\/en\/elasticsearch\/reference\/current\n:java: http:\/\/www.elastic.co\/guide\/en\/elasticsearch\/client\/java-api\/current\n:version: 5.0.0-alpha5\n\n[preface]\n== Preface\n\nThis section describes the http:\/\/groovy-lang.org\/[Groovy] API\nelasticsearch provides. All elasticsearch APIs are executed using a\n<>, and are completely\nasynchronous in nature (they either accept a listener, or return a\nfuture).\n\nThe Groovy API is a wrapper on top of the\n{java}[Java API] exposing it in a groovier\nmanner. The execution options for each API follow a similar manner and\ncovered in <>.\n\n\n[[maven]]\n=== Maven Repository\n\nThe Groovy API is hosted on\nhttp:\/\/search.maven.org\/#search%7Cga%7C1%7Ca%3A%22elasticsearch-groovy%22[Maven\nCentral].\n\nFor example, you can define the latest version in your `pom.xml` file:\n\n[\"source\",\"xml\",subs=\"attributes\"]\n--------------------------------------------------\n\n org.elasticsearch<\/groupId>\n elasticsearch-groovy<\/artifactId>\n {version}<\/version>\n<\/dependency>\n--------------------------------------------------\n\ninclude::anatomy.asciidoc[]\n\ninclude::client.asciidoc[]\n\ninclude::index_.asciidoc[]\n\ninclude::get.asciidoc[]\n\ninclude::delete.asciidoc[]\n\ninclude::search.asciidoc[]\n","new_contents":"= Groovy API\n:ref: http:\/\/www.elastic.co\/guide\/en\/elasticsearch\/reference\/current\n:java: http:\/\/www.elastic.co\/guide\/en\/elasticsearch\/client\/java-api\/current\n:version: 5.1.0\n\n[preface]\n== Preface\n\nThis section describes the http:\/\/groovy-lang.org\/[Groovy] API\nelasticsearch provides. All elasticsearch APIs are executed using a\n<>, and are completely\nasynchronous in nature (they either accept a listener, or return a\nfuture).\n\nThe Groovy API is a wrapper on top of the\n{java}[Java API] exposing it in a groovier\nmanner. The execution options for each API follow a similar manner and\ncovered in <>.\n\n\n[[maven]]\n=== Maven Repository\n\nThe Groovy API is hosted on\nhttp:\/\/search.maven.org\/#search%7Cga%7C1%7Ca%3A%22elasticsearch-groovy%22[Maven\nCentral].\n\nFor example, you can define the latest version in your `pom.xml` file:\n\n[\"source\",\"xml\",subs=\"attributes\"]\n--------------------------------------------------\n\n org.elasticsearch<\/groupId>\n elasticsearch-groovy<\/artifactId>\n {version}<\/version>\n<\/dependency>\n--------------------------------------------------\n\ninclude::anatomy.asciidoc[]\n\ninclude::client.asciidoc[]\n\ninclude::index_.asciidoc[]\n\ninclude::get.asciidoc[]\n\ninclude::delete.asciidoc[]\n\ninclude::search.asciidoc[]\n","subject":"Fix version constant in Groovy API docs","message":"Fix version constant in Groovy API docs\n\nThis commit fixes the version constant in the Groovy API docs from\n5.0.0-alpha5 to 5.1.0.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc"} {"commit":"3369241e2471faf05e9c5b9e75341a998ed9f638","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Minimal-J\n\nJava - but small.\n\nimage::doc\/frontends.png[]\n\nMinimal-J applications are\n\n* Responsive to use on every device\n* Straight forward to specify and implement and therefore\n* Easy to plan and manage\n\n=== Idea\n\nBusiness applications tend to get complex and complicated. Minimal-J prevents this by setting clear rules how an application should behave and how it should be implemented.\n\nMinimal applications may not always look the same. But the UI concepts never change. There are no surprises for the user.\n\n== Technical Features\n\n* Independent of the used UI technology. Implementations for Web \/ Mobile \/ Desktop.\n* ORM persistence layer for Maria DB or in memory DB. Transactions and Authorization supported.\n* Small: The minimalj.jar is still < 1MB\n* Very few dependencies\n* Applications can run standalone (like SpringBoot)\n\n== Documentation\n\n* link:doc\/user_guide\/user_guide.adoc[Minimal user guide] User guide for Minimal-J applications.\n* link:doc\/topics.adoc[Tutorial and examples] Informations for developers.\n* link:doc\/release_notes.adoc[Release Notes]\n\n== Hello World\n\nHow to implement Hello World in Minimal-J:\n\nvideo::0VHz7gv6TpA[youtube]\n\n=== Contact\n\n* Bruno Eberhard, mailto:minimalj@hispeed.ch[minimalj@hispeed.ch] ","new_contents":"= Minimal-J\n\nJava - but small.\n\nimage::doc\/frontends.png[]\n\nMinimal-J applications are\n\n* Responsive to use on every device\n* Straight forward to specify and implement and therefore\n* Easy to plan and manage\n\n=== Idea\n\nBusiness applications tend to get complex and complicated. Minimal-J prevents this by setting clear rules how an application should behave and how it should be implemented.\n\nMinimal applications may not always look the same. But the UI concepts never change. There are no surprises for the user.\n\n== Technical Features\n\n* Independent of the used UI technology. Implementations for Web \/ Mobile \/ Desktop.\n* ORM persistence layer for Maria DB or in memory DB. Transactions and Authorization supported.\n* Small: The minimalj.jar is still < 1MB\n* Very few dependencies\n* Applications can run standalone (like SpringBoot)\n\n== Documentation\n\n* link:doc\/user_guide\/user_guide.adoc[Minimal user guide] User guide for Minimal-J applications.\n* link:doc\/topics.adoc[Tutorial and examples] Informations for developers.\n* link:doc\/release_notes.adoc[Release Notes]\n\n== Hello World\n\nHow to implement Hello World in Minimal-J:\n\nlink:_includes\/ex-video.adoc[]\n\nvideo::0VHz7gv6TpA[youtube]\n\n=== Contact\n\n* Bruno Eberhard, mailto:minimalj@hispeed.ch[minimalj@hispeed.ch] ","subject":"Include Hello World Youtube video","message":"Include Hello World Youtube video","lang":"AsciiDoc","license":"apache-2.0","repos":"BrunoEberhard\/minimal-j,BrunoEberhard\/minimal-j,BrunoEberhard\/minimal-j"} {"commit":"2cc182f95a192ac0f6bdd85248d89ac0d7712fed","old_file":"agrest-docs\/agrest-docs-framework\/src\/docs\/asciidoc\/_framework\/prerequisites.adoc","new_file":"agrest-docs\/agrest-docs-framework\/src\/docs\/asciidoc\/_framework\/prerequisites.adoc","old_contents":"== Prerequisites\n\n* Java 1.8 or newer\n* A Java web app project that will serve your REST requests.\n* A JAX-RS 2.0 container, such as Jersey 2.x.\n* Cayenne 4.0.M4 or newer. Mapping your database and starting Cayenne\n ServerRuntime is outside the scope of this document. Please refer to the\n http:\/\/cayenne.apache.org\/docs\/4.0\/cayenne-guide\/index.html[corresponding Cayenne docs]\n\n","new_contents":"== Prerequisites\n\n* Java 1.8 or newer\n* A Java web app project that will serve your REST requests.\n* A JAX-RS 2.0 container, such as Jersey 2.x.\n* Cayenne 4.0 or newer. Mapping your database and starting Cayenne\n ServerRuntime is outside the scope of this document. Please refer to the\n http:\/\/cayenne.apache.org\/docs\/4.0\/cayenne-guide\/index.html[corresponding Cayenne docs]\n\n","subject":"Update cayenne version mentioned in the documentation","message":"Update cayenne version mentioned in the documentation\n","lang":"AsciiDoc","license":"apache-2.0","repos":"nhl\/link-rest"} {"commit":"5a119725de0012a4776270f22a534de797493180","old_file":"README.adoc","new_file":"README.adoc","old_contents":"# AsciiDoc mode for CodeMirror\n\nThis repository contains the AsciiDoc mode for CodeMirror.\n\n## Installation\n\n```\n$ npm install codemirror-asciidoc\n```\n\n## Usage\n\n```js\nvar codemirror = require(\"codemirror\/lib\/codemirror\"),\n codemirror_asciidoc = require(\"codemirror-asciidoc\/lib\/asciidoc\");\n\ncodemirror.fromTextArea(document.getElementById(\"editor\"), {\n lineNumbers: true,\n lineWrapping: true,\n mode: \"asciidoc\"\n});\n```\n\n## License\n\nBSD\n\n## Credits\n\nThe AsciiDoc mode for CodeMirror was generated from the AsciiDoc mode for Ace using the https:\/\/github.com\/espadrine\/ace2cm[ace2cm] project by https:\/\/github.com\/espadrine[Thaddee Tyl].\n","new_contents":"# AsciiDoc mode for CodeMirror\n\nThis repository contains the AsciiDoc mode for CodeMirror.\n\n## Installation\n\n```\n$ npm install codemirror-asciidoc\n```\n\n## Usage\n\n```js\nvar codemirror = require(\"codemirror\"),\n codemirror_asciidoc = require(\"codemirror-asciidoc\");\n\ncodemirror.fromTextArea(document.getElementById(\"editor\"), {\n lineNumbers: true,\n lineWrapping: true,\n mode: \"asciidoc\"\n});\n```\n\n## License\n\nBSD\n\n## Credits\n\nThe AsciiDoc mode for CodeMirror was generated from the AsciiDoc mode for Ace using the https:\/\/github.com\/espadrine\/ace2cm[ace2cm] project by https:\/\/github.com\/espadrine[Thaddee Tyl].\n","subject":"Simplify import path for modules","message":"Simplify import path for modules","lang":"AsciiDoc","license":"bsd-3-clause","repos":"asciidoctor\/codemirror-asciidoc"} {"commit":"c1e101786f1ae873184a7118dd9d68c7f94bb806","old_file":"documentation\/common\/prerequisites-openshift.adoc","new_file":"documentation\/common\/prerequisites-openshift.adoc","old_contents":"[[prerequisites-openshift]]\n\n.Prerequisites\n\n* To install {ProductName}, the OpenShift client tools are required. You can download the OpenShift\nOrigin client from link:https:\/\/github.com\/openshift\/origin\/releases[OpenShift Origin^]. {ProductName} has\nbeen tested to work with the latest stable release of the OpenShift Origin Client.\n\n* An OpenShift cluster is required. If you do not have an OpenShift cluster available, see\nlink:https:\/\/github.com\/minishift\/minishift[Minishift^] for an example of how to run a local instance of OpenShift\non your machine.\n\n* A method to generate certificates is required. This guide uses link:https:\/\/www.openssl.org\/[OpenSSL^].\n","new_contents":"[[prerequisites-openshift]]\n\n.Prerequisites\n\n* To install {ProductName}, the OpenShift client tools are required. You can download the OpenShift\nOrigin client from link:https:\/\/github.com\/openshift\/origin\/releases[OpenShift Origin^]. {ProductName} has\nbeen tested to work with the latest stable release of the OpenShift Origin Client.\n\n* An OpenShift cluster is required. If you do not have an OpenShift cluster available, see\nlink:https:\/\/github.com\/minishift\/minishift[Minishift^] for an example of how to run a local instance of OpenShift\non your machine.\n\n* If you want to install {ProductName} on Minishift and want to use Service Catalog, you need to explicitly enable it during the start-up, like\n\n[options=\"nowrap\"]\n----\nMINISHIFT_ENABLE_EXPERIMENTAL=\"y\" minishift start --extra-clusterup-flags \"--service-catalog\"\n----\n\n* A method to generate certificates is required. This guide uses link:https:\/\/www.openssl.org\/[OpenSSL^].\n","subject":"Update documentation regarding using Service Catalog on Minishift","message":"Update documentation regarding using Service Catalog on Minishift\n","lang":"AsciiDoc","license":"apache-2.0","repos":"jenmalloy\/enmasse,jenmalloy\/enmasse,jenmalloy\/enmasse,jenmalloy\/enmasse,EnMasseProject\/enmasse,EnMasseProject\/enmasse,EnMasseProject\/enmasse,EnMasseProject\/enmasse,jenmalloy\/enmasse,EnMasseProject\/enmasse,jenmalloy\/enmasse,EnMasseProject\/enmasse,EnMasseProject\/enmasse,jenmalloy\/enmasse"} {"commit":"5259086a4b8d832e7a9208fd3e6cca1a7b243060","old_file":"ci\/README.adoc","new_file":"ci\/README.adoc","old_contents":"== Concourse pipeline\n\nEnsure that you've have a spring-boot target logged in\n\n[source]\n----\n$ fly -t spring-boot login -n spring-boot -c https:\/\/ci.spring-io\n----\n\nThe pipeline can be deployed using the following command:\n\n[source]\n----\n$ fly -t spring-boot set-pipeline -p spring-boot-2.0.x -c ci\/pipeline.yml -l ci\/parameters.yml\n----\n\nNOTE: This assumes that you have credhub integration configured with the appropriate\nsecrets.\n","new_contents":"== Concourse pipeline\n\nEnsure that you've setup the spring-boot target and can login\n\n[source]\n----\n$ fly -t spring-boot login -n spring-boot -c https:\/\/ci.spring.io\n----\n\nThe pipeline can be deployed using the following command:\n\n[source]\n----\n$ fly -t spring-boot set-pipeline -p spring-boot-2.0.x -c ci\/pipeline.yml -l ci\/parameters.yml\n----\n\nNOTE: This assumes that you have credhub integration configured with the appropriate\nsecrets.\n","subject":"Fix type in CI readme","message":"Fix type in CI readme\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vpavic\/spring-boot,aahlenst\/spring-boot,mbenson\/spring-boot,chrylis\/spring-boot,rweisleder\/spring-boot,mbenson\/spring-boot,tiarebalbi\/spring-boot,shakuzen\/spring-boot,scottfrederick\/spring-boot,wilkinsona\/spring-boot,mbenson\/spring-boot,NetoDevel\/spring-boot,spring-projects\/spring-boot,htynkn\/spring-boot,tiarebalbi\/spring-boot,mdeinum\/spring-boot,eddumelendez\/spring-boot,joshiste\/spring-boot,royclarkson\/spring-boot,rweisleder\/spring-boot,mdeinum\/spring-boot,Buzzardo\/spring-boot,jxblum\/spring-boot,philwebb\/spring-boot,jxblum\/spring-boot,philwebb\/spring-boot,royclarkson\/spring-boot,spring-projects\/spring-boot,rweisleder\/spring-boot,philwebb\/spring-boot,mdeinum\/spring-boot,vpavic\/spring-boot,mdeinum\/spring-boot,michael-simons\/spring-boot,eddumelendez\/spring-boot,wilkinsona\/spring-boot,dreis2211\/spring-boot,shakuzen\/spring-boot,michael-simons\/spring-boot,wilkinsona\/spring-boot,scottfrederick\/spring-boot,ilayaperumalg\/spring-boot,NetoDevel\/spring-boot,joshiste\/spring-boot,htynkn\/spring-boot,htynkn\/spring-boot,dreis2211\/spring-boot,jxblum\/spring-boot,Buzzardo\/spring-boot,michael-simons\/spring-boot,tiarebalbi\/spring-boot,vpavic\/spring-boot,spring-projects\/spring-boot,vpavic\/spring-boot,aahlenst\/spring-boot,scottfrederick\/spring-boot,chrylis\/spring-boot,vpavic\/spring-boot,ilayaperumalg\/spring-boot,yangdd1205\/spring-boot,vpavic\/spring-boot,michael-simons\/spring-boot,mbenson\/spring-boot,wilkinsona\/spring-boot,jxblum\/spring-boot,NetoDevel\/spring-boot,yangdd1205\/spring-boot,spring-projects\/spring-boot,mbenson\/spring-boot,Buzzardo\/spring-boot,eddumelendez\/spring-boot,aahlenst\/spring-boot,aahlenst\/spring-boot,ilayaperumalg\/spring-boot,philwebb\/spring-boot,spring-projects\/spring-boot,htynkn\/spring-boot,royclarkson\/spring-boot,rweisleder\/spring-boot,mdeinum\/spring-boot,scottfrederick\/spring-boot,chrylis\/spring-boot,dreis2211\/spring-boot,jxblum\/spring-boot,wilkinsona\/spring-boot,mdeinum\/spring-boot,Buzzardo\/spring-boot,ilayaperumalg\/spring-boot,michael-simons\/spring-boot,eddumelendez\/spring-boot,tiarebalbi\/spring-boot,yangdd1205\/spring-boot,chrylis\/spring-boot,jxblum\/spring-boot,Buzzardo\/spring-boot,spring-projects\/spring-boot,Buzzardo\/spring-boot,ilayaperumalg\/spring-boot,dreis2211\/spring-boot,eddumelendez\/spring-boot,aahlenst\/spring-boot,tiarebalbi\/spring-boot,royclarkson\/spring-boot,royclarkson\/spring-boot,chrylis\/spring-boot,shakuzen\/spring-boot,michael-simons\/spring-boot,ilayaperumalg\/spring-boot,dreis2211\/spring-boot,wilkinsona\/spring-boot,scottfrederick\/spring-boot,mbenson\/spring-boot,NetoDevel\/spring-boot,shakuzen\/spring-boot,scottfrederick\/spring-boot,shakuzen\/spring-boot,tiarebalbi\/spring-boot,chrylis\/spring-boot,htynkn\/spring-boot,dreis2211\/spring-boot,aahlenst\/spring-boot,philwebb\/spring-boot,joshiste\/spring-boot,shakuzen\/spring-boot,eddumelendez\/spring-boot,rweisleder\/spring-boot,joshiste\/spring-boot,philwebb\/spring-boot,joshiste\/spring-boot,htynkn\/spring-boot,rweisleder\/spring-boot,joshiste\/spring-boot,NetoDevel\/spring-boot"} {"commit":"cc851d5c28ccaf79ff7982a44dbee742a776b892","old_file":"doc\/pages\/changelog.asciidoc","new_file":"doc\/pages\/changelog.asciidoc","old_contents":"= Changelog\n\nThis changelog contains major and\/or breaking changes to Kakoune between\nreleased versions.\n\n== Development version\n\n* `%sh{...}` strings are not reparsed automatically anymore, they need\n to go through an explicit `evaluate-commands`\n\n* The `-allow-override` switch from `define-command` has been renamed\n `-override`.\n\n* The search prompt uses buffer word completion so that fuzzy completion\n can be used to quickly search for a buffer word.\n\n* The `wrap` highlighter can accept a new `-marker ` switch.\n\n== Kakoune 2018.04.13\n\nFirst official Kakoune release.\n","new_contents":"= Changelog\n\nThis changelog contains major and\/or breaking changes to Kakoune between\nreleased versions.\n\n== Development version\n\nThis version contains a significant overhaul of various Kakoune\nfeatures that can break user configuration. This was a necessary\nchange to make Kakoune command model cleaner and more robust.\n\n* `%sh{...}` strings are not reparsed automatically anymore, they need\n to go through an explicit `evaluate-commands`\n\n* The `-allow-override` switch from `define-command` has been renamed\n `-override`.\n\n* The search prompt uses buffer word completion so that fuzzy completion\n can be used to quickly search for a buffer word.\n\n* The `wrap` highlighter can accept a new `-marker ` switch.\n\n* The command line syntax has changed to support robust escaping, see\n <>.\n\n* Various lists (options, registers...) in Kakoune are now written using\n the command line syntax:\n\n - `set-register` now take an arbitrary number of parameters and sets\n the register to multiple strings. `%reg` expands to a list of strings.\n\n - `%opt` expands list options as list of strings.\n\n - selection descs are whitespaces separated instead of `:` separated\n\n== Kakoune 2018.04.13\n\nFirst official Kakoune release.\n","subject":"Update Changelog to describe the list syntax overhaul","message":"Update Changelog to describe the list syntax overhaul\n","lang":"AsciiDoc","license":"unlicense","repos":"lenormf\/kakoune,occivink\/kakoune,casimir\/kakoune,danr\/kakoune,danr\/kakoune,jkonecny12\/kakoune,casimir\/kakoune,casimir\/kakoune,jkonecny12\/kakoune,alexherbo2\/kakoune,Somasis\/kakoune,lenormf\/kakoune,alexherbo2\/kakoune,Somasis\/kakoune,danr\/kakoune,danr\/kakoune,alexherbo2\/kakoune,mawww\/kakoune,Somasis\/kakoune,jkonecny12\/kakoune,mawww\/kakoune,jkonecny12\/kakoune,lenormf\/kakoune,occivink\/kakoune,casimir\/kakoune,jjthrash\/kakoune,mawww\/kakoune,Somasis\/kakoune,alexherbo2\/kakoune,jjthrash\/kakoune,lenormf\/kakoune,jjthrash\/kakoune,mawww\/kakoune,occivink\/kakoune,jjthrash\/kakoune,occivink\/kakoune"} {"commit":"43a1f8249c50ca5e61e06c15a6f4b24632023189","old_file":"docs\/modules\/ROOT\/pages\/whats-new.adoc","new_file":"docs\/modules\/ROOT\/pages\/whats-new.adoc","old_contents":"[[new]]\n= What's New in Spring Security 6.0\n\nSpring Security 6.0 provides a number of new features.\nBelow are the highlights of the release.\n\n== Breaking Changes\n\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/10556[gh-10556] - Remove EOL OpenSaml 3 Support.\nUse the OpenSaml 4 Support instead.\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/8980[gh-8980] - Remove unsafe\/deprecated `Encryptors.querableText(CharSequence,CharSequence)`.\nInstead use data storage to encrypt values.\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11520[gh-11520] - Remember Me uses SHA256 by default\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/8819 - Move filters to web package\nReorganize imports\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/7349 - Move filter and token to appropriate packages\nReorganize imports\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11026[gh-11026] - Use `RequestAttributeSecurityContextRepository` instead of `NullSecurityContextRepository`\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11887[gh-11827] - Change default authority for `oauth2Login()`\n","new_contents":"[[new]]\n= What's New in Spring Security 6.0\n\nSpring Security 6.0 provides a number of new features.\nBelow are the highlights of the release.\n\n== Breaking Changes\n\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/10556[gh-10556] - Remove EOL OpenSaml 3 Support.\nUse the OpenSaml 4 Support instead.\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/8980[gh-8980] - Remove unsafe\/deprecated `Encryptors.querableText(CharSequence,CharSequence)`.\nInstead use data storage to encrypt values.\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11520[gh-11520] - Remember Me uses SHA256 by default\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/8819 - Move filters to web package\nReorganize imports\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/7349 - Move filter and token to appropriate packages\nReorganize imports\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11026[gh-11026] - Use `RequestAttributeSecurityContextRepository` instead of `NullSecurityContextRepository`\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11887[gh-11827] - Change default authority for `oauth2Login()`\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/10347[gh-10347] - Remove `UsernamePasswordAuthenticationToken` check in `BasicAuthenticationFilter`","subject":"Update What's New for 6.0","message":"Update What's New for 6.0\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security"} {"commit":"598dd1d73bb429845249485bcc8dcba1f83501db","old_file":"README.asciidoc","new_file":"README.asciidoc","old_contents":"TinkerPop3\n----------\n\nimage:https:\/\/raw.githubusercontent.com\/tinkerpop\/tinkerpop3\/master\/docs\/static\/images\/tinkerpop3-splash.png[TinkerPop3]\n\nDocumentation\n~~~~~~~~~~~~~\n\n* link:http:\/\/tinkerpop.com\/docs\/current\/[user documentation]\n* link:http:\/\/tinkerpop.com\/javadocs\/current\/[javadoc]\n\nBuilding\n~~~~~~~~\n\n* Build Project: `mvn clean install`\n* Build AsciiDocs: `mvn process-resources -Dasciidoc`\n* Deploy AsciiDocs: `mvn deploy -Dasciidoc`\n* Deploy JavaDocs: `mvn deploy -Djavadoc`\n\nGet Started\n~~~~~~~~~~~\n\n[source,bash]\n----\n$ bin\/gremlin.sh\n\n \\,,,\/\n (o o)\n-----oOOo-(3)-oOOo-----\ngremlin>\n----\n","new_contents":"TinkerPop3\n----------\n\nimage:https:\/\/raw.githubusercontent.com\/tinkerpop\/tinkerpop3\/master\/docs\/static\/images\/tinkerpop3-splash.png[TinkerPop3]\n\nDocumentation\n~~~~~~~~~~~~~\n\n* link:http:\/\/tinkerpop.com\/docs\/current\/[user documentation]\n* link:http:\/\/tinkerpop.com\/javadocs\/current\/[javadoc]\n\nBuilding and Testing\n~~~~~~~~~~~~~~~~~~~~\n\n* Build Project: `mvn clean install`\n* Build AsciiDocs: `mvn process-resources -Dasciidoc`\n* Deploy AsciiDocs: `mvn deploy -Dasciidoc`\n* Deploy JavaDocs: `mvn deploy -Djavadoc`\n* Travis Deploy Docs: merge\/push to `publish-docs` branch\n* Integration Tests: `mvn clean verify -DskipIntegrationTests=false`\n* Performance Tests: `mvn clean verify -DskipPerformanceTests=false`\n* Gatling Load Tests: `mvn clean test -Pgatling -Dhost={hostname}`\n\nGet Started\n~~~~~~~~~~~\n\n[source,bash]\n----\n$ bin\/gremlin.sh\n\n \\,,,\/\n (o o)\n-----oOOo-(3)-oOOo-----\ngremlin>\n----\n","subject":"Add some build\/test commands to readme.","message":"Add some build\/test commands to readme.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"artem-aliev\/tinkerpop,krlohnes\/tinkerpop,RussellSpitzer\/incubator-tinkerpop,PommeVerte\/incubator-tinkerpop,samiunn\/incubator-tinkerpop,jorgebay\/tinkerpop,apache\/incubator-tinkerpop,RussellSpitzer\/incubator-tinkerpop,robertdale\/tinkerpop,PommeVerte\/incubator-tinkerpop,artem-aliev\/tinkerpop,velo\/incubator-tinkerpop,edgarRd\/incubator-tinkerpop,samiunn\/incubator-tinkerpop,krlohnes\/tinkerpop,dalaro\/incubator-tinkerpop,edgarRd\/incubator-tinkerpop,apache\/tinkerpop,samiunn\/incubator-tinkerpop,mike-tr-adamson\/incubator-tinkerpop,apache\/tinkerpop,BrynCooke\/incubator-tinkerpop,velo\/incubator-tinkerpop,krlohnes\/tinkerpop,gdelafosse\/incubator-tinkerpop,robertdale\/tinkerpop,rmagen\/incubator-tinkerpop,BrynCooke\/incubator-tinkerpop,n-tran\/incubator-tinkerpop,vtslab\/incubator-tinkerpop,pluradj\/incubator-tinkerpop,mpollmeier\/tinkerpop3,newkek\/incubator-tinkerpop,newkek\/incubator-tinkerpop,RedSeal-co\/incubator-tinkerpop,artem-aliev\/tinkerpop,vtslab\/incubator-tinkerpop,apache\/incubator-tinkerpop,jorgebay\/tinkerpop,mike-tr-adamson\/incubator-tinkerpop,RussellSpitzer\/incubator-tinkerpop,rmagen\/incubator-tinkerpop,Lab41\/tinkerpop3,PommeVerte\/incubator-tinkerpop,artem-aliev\/tinkerpop,edgarRd\/incubator-tinkerpop,artem-aliev\/tinkerpop,apache\/tinkerpop,n-tran\/incubator-tinkerpop,vtslab\/incubator-tinkerpop,newkek\/incubator-tinkerpop,n-tran\/incubator-tinkerpop,RedSeal-co\/incubator-tinkerpop,dalaro\/incubator-tinkerpop,krlohnes\/tinkerpop,pluradj\/incubator-tinkerpop,apache\/tinkerpop,mpollmeier\/tinkerpop3,mike-tr-adamson\/incubator-tinkerpop,apache\/tinkerpop,BrynCooke\/incubator-tinkerpop,gdelafosse\/incubator-tinkerpop,apache\/tinkerpop,rmagen\/incubator-tinkerpop,jorgebay\/tinkerpop,Lab41\/tinkerpop3,apache\/tinkerpop,pluradj\/incubator-tinkerpop,robertdale\/tinkerpop,robertdale\/tinkerpop,robertdale\/tinkerpop,gdelafosse\/incubator-tinkerpop,dalaro\/incubator-tinkerpop,RedSeal-co\/incubator-tinkerpop,apache\/incubator-tinkerpop,jorgebay\/tinkerpop,velo\/incubator-tinkerpop,krlohnes\/tinkerpop"} {"commit":"96f301d0c4702fc66b7f0b4e8fcee9927db6ff04","old_file":"docs\/user-manual\/modules\/ROOT\/pages\/getting-started.adoc","new_file":"docs\/user-manual\/modules\/ROOT\/pages\/getting-started.adoc","old_contents":"= Getting Started\n\nFirst you need to Download the Camel distribution;\nor you could grab the Source and try\nBuilding it yourself.\n\nThen come back here, and you might want to read the following\ndocumentation before continuing:\n\n* Longer xref:book-getting-started.adoc[Getting Started Guide]\n* Find out about xref:components:eips:enterprise-integration-patterns.adoc[Enterprise Integration Patterns]\n and how to implement them with Camel\n* Review the xref:architecture.adoc[Architecture guide] to see how to build Routes using the xref:dsl.adoc[DSL].\n\n== Working with CamelContexts and RouteBuilders\n\nTo get started with Camel:\n\n1. Create a xref:camelcontext.adoc[CamelContext].\n2. Add whatever routing rules you wish using the DSL and `RouteBuilder` or using XML DSL.\n3. Start the Camel context.\n\nWhen your application is closing you may wish to stop the context\n\nWhen you are ready, why not xref:walk-through-an-example.adoc[Walk through an Example]?\nAnd then continue the walk xref:walk-through-another-example.adoc[Walk through another example].\n\n","new_contents":"= Getting Started\n\nFirst you need to Download the Camel distribution;\nor you could grab the Source and try\nBuilding it yourself.\n\nThen come back here, and you might want to read the following\ndocumentation before continuing:\n\n* Longer xref:book-getting-started.adoc[Getting Started Guide]\n* Find out about xref:components:eips:enterprise-integration-patterns.adoc[Enterprise Integration Patterns]\n and how to implement them with Camel\n* Review the xref:architecture.adoc[Architecture guide] to see how to build Routes using the xref:dsl.adoc[DSL].\n\n== Working with CamelContexts and RouteBuilders\n\nTo get started with Camel:\n\n1. Create a xref:camelcontext.adoc[CamelContext].\n2. Add whatever routing rules you wish using the DSL and `RouteBuilder` or using XML DSL.\n3. Start the Camel context.\n\nWhen your application is closing you may wish to stop the context\n\nWhen you are ready, why not xref:walk-through-an-example.adoc[walk through an example]?\nAnd then xref:walk-through-another-example.adoc[walk through another example].\n","subject":"Update walk through link text","message":"Update walk through link text\n\nChanged \"walk through\" link text to be grammatically correct.","lang":"AsciiDoc","license":"apache-2.0","repos":"tadayosi\/camel,tadayosi\/camel,cunningt\/camel,adessaigne\/camel,adessaigne\/camel,adessaigne\/camel,christophd\/camel,adessaigne\/camel,adessaigne\/camel,apache\/camel,tadayosi\/camel,adessaigne\/camel,christophd\/camel,cunningt\/camel,tadayosi\/camel,apache\/camel,apache\/camel,christophd\/camel,cunningt\/camel,cunningt\/camel,christophd\/camel,apache\/camel,tadayosi\/camel,tadayosi\/camel,christophd\/camel,cunningt\/camel,christophd\/camel,apache\/camel,cunningt\/camel,apache\/camel"} {"commit":"c414faf2fb53e462cee7a41bc41f46e8c84e9dc3","old_file":"docs\/reference\/setup\/sysconfig\/file-descriptors.asciidoc","new_file":"docs\/reference\/setup\/sysconfig\/file-descriptors.asciidoc","old_contents":"[[file-descriptors]]\n=== File Descriptors\n\n[NOTE]\nThis is only a problem for Linux and macOS and can be safely ignored if running\nElasticsearch on Windows.\n\nElasticsearch uses a lot of file descriptors or file handles. Running out of\nfile descriptors can be disastrous and will most probably lead to data loss.\nMake sure to increase the limit on the number of open files descriptors for\nthe user running Elasticsearch to 65,536 or higher.\n\nFor the `.zip` and `.tar.gz` packages, set <> as\nroot before starting Elasticsearch, or set `nofile` to `65536` in\n<>.\n\nRPM and Debian packages already default the maximum number of file\ndescriptors to 65536 and do not require further configuration.\n\nYou can check the `max_file_descriptors` configured for each node\nusing the <> API, with:\n\n[source,js]\n--------------------------------------------------\nGET _nodes\/stats\/process?filter_path=**.max_file_descriptors\n--------------------------------------------------\n\/\/ CONSOLE\n","new_contents":"[[file-descriptors]]\n=== File Descriptors\n\n[NOTE]\nThis is only relevant for Linux and macOS and can be safely ignored if running\nElasticsearch on Windows. On Windows that JVM uses an\nhttps:\/\/msdn.microsoft.com\/en-us\/library\/windows\/desktop\/aa363858(v=vs.85).aspx[API]\nlimited only by available resources.\n\nElasticsearch uses a lot of file descriptors or file handles. Running out of\nfile descriptors can be disastrous and will most probably lead to data loss.\nMake sure to increase the limit on the number of open files descriptors for\nthe user running Elasticsearch to 65,536 or higher.\n\nFor the `.zip` and `.tar.gz` packages, set <> as\nroot before starting Elasticsearch, or set `nofile` to `65536` in\n<>.\n\nRPM and Debian packages already default the maximum number of file\ndescriptors to 65536 and do not require further configuration.\n\nYou can check the `max_file_descriptors` configured for each node\nusing the <> API, with:\n\n[source,js]\n--------------------------------------------------\nGET _nodes\/stats\/process?filter_path=**.max_file_descriptors\n--------------------------------------------------\n\/\/ CONSOLE\n","subject":"Reword note about windows and FDs","message":"Reword note about windows and FDs\n\nMake it clear why this isn't a thing in windows and remove value\njudgement about file descriptors.\n\nRelates to #20737\n","lang":"AsciiDoc","license":"apache-2.0","repos":"i-am-Nathan\/elasticsearch,liweinan0423\/elasticsearch,nknize\/elasticsearch,JackyMai\/elasticsearch,wangtuo\/elasticsearch,Stacey-Gammon\/elasticsearch,fred84\/elasticsearch,winstonewert\/elasticsearch,naveenhooda2000\/elasticsearch,mohit\/elasticsearch,gingerwizard\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,bawse\/elasticsearch,markwalkom\/elasticsearch,uschindler\/elasticsearch,rajanm\/elasticsearch,scorpionvicky\/elasticsearch,artnowo\/elasticsearch,Helen-Zhao\/elasticsearch,Helen-Zhao\/elasticsearch,nezirus\/elasticsearch,C-Bish\/elasticsearch,brandonkearby\/elasticsearch,MisterAndersen\/elasticsearch,wenpos\/elasticsearch,elasticdog\/elasticsearch,MisterAndersen\/elasticsearch,mikemccand\/elasticsearch,nezirus\/elasticsearch,gfyoung\/elasticsearch,GlenRSmith\/elasticsearch,i-am-Nathan\/elasticsearch,JervyShi\/elasticsearch,geidies\/elasticsearch,jimczi\/elasticsearch,spiegela\/elasticsearch,strapdata\/elassandra,kalimatas\/elasticsearch,wangtuo\/elasticsearch,alexshadow007\/elasticsearch,mortonsykes\/elasticsearch,scorpionvicky\/elasticsearch,markwalkom\/elasticsearch,uschindler\/elasticsearch,spiegela\/elasticsearch,umeshdangat\/elasticsearch,nilabhsagar\/elasticsearch,fforbeck\/elasticsearch,JervyShi\/elasticsearch,nezirus\/elasticsearch,strapdata\/elassandra,obourgain\/elasticsearch,nilabhsagar\/elasticsearch,C-Bish\/elasticsearch,MisterAndersen\/elasticsearch,glefloch\/elasticsearch,coding0011\/elasticsearch,vroyer\/elassandra,winstonewert\/elasticsearch,gingerwizard\/elasticsearch,HonzaKral\/elasticsearch,nknize\/elasticsearch,StefanGor\/elasticsearch,JervyShi\/elasticsearch,pozhidaevak\/elasticsearch,s1monw\/elasticsearch,nknize\/elasticsearch,winstonewert\/elasticsearch,mjason3\/elasticsearch,Stacey-Gammon\/elasticsearch,coding0011\/elasticsearch,elasticdog\/elasticsearch,ZTE-PaaS\/elasticsearch,uschindler\/elasticsearch,wenpos\/elasticsearch,wangtuo\/elasticsearch,sneivandt\/elasticsearch,Shepard1212\/elasticsearch,strapdata\/elassandra,IanvsPoplicola\/elasticsearch,markwalkom\/elasticsearch,kalimatas\/elasticsearch,jimczi\/elasticsearch,henakamaMSFT\/elasticsearch,scottsom\/elasticsearch,ZTE-PaaS\/elasticsearch,mikemccand\/elasticsearch,fred84\/elasticsearch,LewayneNaidoo\/elasticsearch,LeoYao\/elasticsearch,jimczi\/elasticsearch,mortonsykes\/elasticsearch,njlawton\/elasticsearch,Helen-Zhao\/elasticsearch,maddin2016\/elasticsearch,StefanGor\/elasticsearch,ZTE-PaaS\/elasticsearch,i-am-Nathan\/elasticsearch,fernandozhu\/elasticsearch,shreejay\/elasticsearch,mortonsykes\/elasticsearch,maddin2016\/elasticsearch,IanvsPoplicola\/elasticsearch,s1monw\/elasticsearch,LeoYao\/elasticsearch,masaruh\/elasticsearch,GlenRSmith\/elasticsearch,LeoYao\/elasticsearch,masaruh\/elasticsearch,kalimatas\/elasticsearch,njlawton\/elasticsearch,bawse\/elasticsearch,gingerwizard\/elasticsearch,brandonkearby\/elasticsearch,gmarz\/elasticsearch,strapdata\/elassandra,IanvsPoplicola\/elasticsearch,coding0011\/elasticsearch,brandonkearby\/elasticsearch,wuranbo\/elasticsearch,pozhidaevak\/elasticsearch,glefloch\/elasticsearch,IanvsPoplicola\/elasticsearch,umeshdangat\/elasticsearch,masaruh\/elasticsearch,LewayneNaidoo\/elasticsearch,markwalkom\/elasticsearch,MaineC\/elasticsearch,winstonewert\/elasticsearch,mohit\/elasticsearch,vroyer\/elassandra,bawse\/elasticsearch,yanjunh\/elasticsearch,qwerty4030\/elasticsearch,nilabhsagar\/elasticsearch,winstonewert\/elasticsearch,elasticdog\/elasticsearch,Shepard1212\/elasticsearch,brandonkearby\/elasticsearch,mjason3\/elasticsearch,jimczi\/elasticsearch,glefloch\/elasticsearch,a2lin\/elasticsearch,gingerwizard\/elasticsearch,glefloch\/elasticsearch,spiegela\/elasticsearch,JervyShi\/elasticsearch,rajanm\/elasticsearch,jimczi\/elasticsearch,artnowo\/elasticsearch,bawse\/elasticsearch,gmarz\/elasticsearch,bawse\/elasticsearch,maddin2016\/elasticsearch,gingerwizard\/elasticsearch,gfyoung\/elasticsearch,MaineC\/elasticsearch,maddin2016\/elasticsearch,geidies\/elasticsearch,shreejay\/elasticsearch,rajanm\/elasticsearch,sneivandt\/elasticsearch,shreejay\/elasticsearch,nazarewk\/elasticsearch,jprante\/elasticsearch,scottsom\/elasticsearch,qwerty4030\/elasticsearch,robin13\/elasticsearch,lks21c\/elasticsearch,Shepard1212\/elasticsearch,C-Bish\/elasticsearch,a2lin\/elasticsearch,qwerty4030\/elasticsearch,s1monw\/elasticsearch,scottsom\/elasticsearch,liweinan0423\/elasticsearch,pozhidaevak\/elasticsearch,robin13\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,vroyer\/elasticassandra,obourgain\/elasticsearch,mjason3\/elasticsearch,jprante\/elasticsearch,gingerwizard\/elasticsearch,henakamaMSFT\/elasticsearch,njlawton\/elasticsearch,JervyShi\/elasticsearch,scottsom\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,maddin2016\/elasticsearch,shreejay\/elasticsearch,fred84\/elasticsearch,gfyoung\/elasticsearch,JSCooke\/elasticsearch,rlugojr\/elasticsearch,nazarewk\/elasticsearch,mikemccand\/elasticsearch,coding0011\/elasticsearch,fernandozhu\/elasticsearch,HonzaKral\/elasticsearch,C-Bish\/elasticsearch,MisterAndersen\/elasticsearch,henakamaMSFT\/elasticsearch,LeoYao\/elasticsearch,liweinan0423\/elasticsearch,masaruh\/elasticsearch,nilabhsagar\/elasticsearch,robin13\/elasticsearch,gmarz\/elasticsearch,nazarewk\/elasticsearch,uschindler\/elasticsearch,rlugojr\/elasticsearch,coding0011\/elasticsearch,ZTE-PaaS\/elasticsearch,LeoYao\/elasticsearch,gingerwizard\/elasticsearch,mjason3\/elasticsearch,nknize\/elasticsearch,sneivandt\/elasticsearch,wuranbo\/elasticsearch,ZTE-PaaS\/elasticsearch,wenpos\/elasticsearch,i-am-Nathan\/elasticsearch,fred84\/elasticsearch,fernandozhu\/elasticsearch,henakamaMSFT\/elasticsearch,pozhidaevak\/elasticsearch,brandonkearby\/elasticsearch,JSCooke\/elasticsearch,markwalkom\/elasticsearch,LeoYao\/elasticsearch,qwerty4030\/elasticsearch,kalimatas\/elasticsearch,yanjunh\/elasticsearch,JSCooke\/elasticsearch,Shepard1212\/elasticsearch,scorpionvicky\/elasticsearch,robin13\/elasticsearch,fred84\/elasticsearch,JSCooke\/elasticsearch,naveenhooda2000\/elasticsearch,scottsom\/elasticsearch,lks21c\/elasticsearch,fforbeck\/elasticsearch,jprante\/elasticsearch,sneivandt\/elasticsearch,obourgain\/elasticsearch,LewayneNaidoo\/elasticsearch,a2lin\/elasticsearch,Helen-Zhao\/elasticsearch,alexshadow007\/elasticsearch,artnowo\/elasticsearch,mohit\/elasticsearch,wenpos\/elasticsearch,njlawton\/elasticsearch,liweinan0423\/elasticsearch,MisterAndersen\/elasticsearch,wuranbo\/elasticsearch,wangtuo\/elasticsearch,mikemccand\/elasticsearch,alexshadow007\/elasticsearch,elasticdog\/elasticsearch,lks21c\/elasticsearch,naveenhooda2000\/elasticsearch,masaruh\/elasticsearch,JackyMai\/elasticsearch,mortonsykes\/elasticsearch,gfyoung\/elasticsearch,scorpionvicky\/elasticsearch,glefloch\/elasticsearch,LeoYao\/elasticsearch,vroyer\/elasticassandra,JackyMai\/elasticsearch,alexshadow007\/elasticsearch,nknize\/elasticsearch,umeshdangat\/elasticsearch,robin13\/elasticsearch,scorpionvicky\/elasticsearch,naveenhooda2000\/elasticsearch,spiegela\/elasticsearch,njlawton\/elasticsearch,Helen-Zhao\/elasticsearch,a2lin\/elasticsearch,MaineC\/elasticsearch,mortonsykes\/elasticsearch,qwerty4030\/elasticsearch,HonzaKral\/elasticsearch,rlugojr\/elasticsearch,nezirus\/elasticsearch,mjason3\/elasticsearch,nazarewk\/elasticsearch,MaineC\/elasticsearch,vroyer\/elasticassandra,geidies\/elasticsearch,MaineC\/elasticsearch,geidies\/elasticsearch,Stacey-Gammon\/elasticsearch,JackyMai\/elasticsearch,wenpos\/elasticsearch,fernandozhu\/elasticsearch,elasticdog\/elasticsearch,umeshdangat\/elasticsearch,lks21c\/elasticsearch,vroyer\/elassandra,GlenRSmith\/elasticsearch,liweinan0423\/elasticsearch,GlenRSmith\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,geidies\/elasticsearch,jprante\/elasticsearch,fforbeck\/elasticsearch,obourgain\/elasticsearch,StefanGor\/elasticsearch,JervyShi\/elasticsearch,strapdata\/elassandra,C-Bish\/elasticsearch,wangtuo\/elasticsearch,StefanGor\/elasticsearch,fforbeck\/elasticsearch,naveenhooda2000\/elasticsearch,nazarewk\/elasticsearch,JSCooke\/elasticsearch,rlugojr\/elasticsearch,s1monw\/elasticsearch,gmarz\/elasticsearch,i-am-Nathan\/elasticsearch,artnowo\/elasticsearch,lks21c\/elasticsearch,StefanGor\/elasticsearch,GlenRSmith\/elasticsearch,nezirus\/elasticsearch,HonzaKral\/elasticsearch,LewayneNaidoo\/elasticsearch,mikemccand\/elasticsearch,fforbeck\/elasticsearch,geidies\/elasticsearch,artnowo\/elasticsearch,kalimatas\/elasticsearch,rlugojr\/elasticsearch,Stacey-Gammon\/elasticsearch,umeshdangat\/elasticsearch,spiegela\/elasticsearch,markwalkom\/elasticsearch,rajanm\/elasticsearch,alexshadow007\/elasticsearch,wuranbo\/elasticsearch,obourgain\/elasticsearch,gmarz\/elasticsearch,shreejay\/elasticsearch,a2lin\/elasticsearch,JackyMai\/elasticsearch,pozhidaevak\/elasticsearch,nilabhsagar\/elasticsearch,Shepard1212\/elasticsearch,yanjunh\/elasticsearch,henakamaMSFT\/elasticsearch,uschindler\/elasticsearch,IanvsPoplicola\/elasticsearch,gfyoung\/elasticsearch,LewayneNaidoo\/elasticsearch,mohit\/elasticsearch,sneivandt\/elasticsearch,rajanm\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,yanjunh\/elasticsearch,s1monw\/elasticsearch,wuranbo\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mohit\/elasticsearch,rajanm\/elasticsearch,fernandozhu\/elasticsearch,Stacey-Gammon\/elasticsearch,jprante\/elasticsearch,yanjunh\/elasticsearch"} {"commit":"f1bcb4279b9839f1d5c2b47777003a51c12b64e9","old_file":"documentation\/modules\/proc-create-address-space-cli.adoc","new_file":"documentation\/modules\/proc-create-address-space-cli.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ assembly-configure-address-spaces-addresses-cli-kube.adoc\n\/\/ assembly-configure-address-spaces-addresses-cli-oc.adoc\n\n[id='create-address-space-cli-{context}']\n= Creating an address space\n\n.Procedure\n\n. Create an address space definition:\n+\n[source,yaml,options=\"nowrap\"]\n.link:resources\/standard-address-space.yaml[standard-address-space.yaml]\n----\ninclude::..\/common\/standard-address-space.yaml[]\n----\n\n. Create the address space:\n+\n[options=\"nowrap\",subs=\"attributes\"]\n----\n{cmdcli} create -f standard-address-space.yaml\n----\n+\nThe address space is ready for use when `.status.isReady` field is set to `true`.\n\n. Check the status of the address space:\n+\n[options=\"nowrap\",subs=\"attributes\"]\n----\n{cmdcli} get addressspace myspace -o jsonpath={.status.isReady}\n----\n\n. Retrieve console URL:\n+\n[options=\"nowrap\",subs=\"attributes\"]\n----\n{cmdcli} get addressspace myspace -o jsonpath={.status.endpointStatuses[?(@.name==\\'console\\')].host}\n----\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ assembly-configure-address-spaces-addresses-cli-kube.adoc\n\/\/ assembly-configure-address-spaces-addresses-cli-oc.adoc\n\n[id='create-address-space-cli-{context}']\n= Creating an address space\n\n.Procedure\n\nifeval::[\"{cmdcli}\" == \"oc\"]\n. Log in as a messaging tenant:\n+\n[source,yaml,options=\"nowrap\"]\n----\n{cmdcli} login -u developer\n----\n\n. Create the project for the messaging application:\n+\n[source,yaml,options=\"nowrap\"]\n----\n{cmdcli} new-project myapp\n----\nendif::[]\n\n. Create an address space definition:\n+\n[source,yaml,options=\"nowrap\"]\n.link:resources\/standard-address-space.yaml[standard-address-space.yaml]\n----\ninclude::..\/common\/standard-address-space.yaml[]\n----\n\n. Create the address space:\n+\n[options=\"nowrap\",subs=\"attributes\"]\n----\n{cmdcli} create -f standard-address-space.yaml\n----\n+\nThe address space is ready for use when `.status.isReady` field is set to `true`.\n\n. Check the status of the address space:\n+\n[options=\"nowrap\",subs=\"attributes\"]\n----\n{cmdcli} get addressspace myspace -o jsonpath={.status.isReady}\n----\n\n. Retrieve console URL:\n+\n[options=\"nowrap\",subs=\"attributes\"]\n----\n{cmdcli} get addressspace myspace -o jsonpath={.status.endpointStatuses[?(@.name==\\'console\\')].host}\n----\n","subject":"Add additional steps for creating address space","message":"Add additional steps for creating address space\n","lang":"AsciiDoc","license":"apache-2.0","repos":"EnMasseProject\/enmasse,jenmalloy\/enmasse,EnMasseProject\/enmasse,jenmalloy\/enmasse,jenmalloy\/enmasse,jenmalloy\/enmasse,EnMasseProject\/enmasse,EnMasseProject\/enmasse,EnMasseProject\/enmasse,jenmalloy\/enmasse,EnMasseProject\/enmasse,EnMasseProject\/enmasse,jenmalloy\/enmasse,jenmalloy\/enmasse"} {"commit":"2eb8be4ffd90b3b8243b1578b4970f2d0854d0d8","old_file":"modules\/dynamic-provisioning-change-default-class.adoc","new_file":"modules\/dynamic-provisioning-change-default-class.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * storage\/dynamic-provisioning.adoc\n\n[id=\"change-default-storage-class_{context}\"]\n= Changing the default StorageClass\n\nIf you are using GCE and AWS, use the following process to change the \ndefault StorageClass. This process assumes you have two StorageClasses\ndefined, `gp2` and `standard`, and you want to change the default\nStorageClass from `gp2` to `standard`.\n\n. List the StorageClass:\n+\n----\n$ oc get storageclass\n\nNAME TYPE\ngp2 (default) kubernetes.io\/aws-ebs <1>\nstandard kubernetes.io\/gce-pd\n----\n<1> `(default)` denotes the default StorageClass.\n\n. Change the value of the annotation \n`storageclass.kubernetes.io\/is-default-class` to `false` for the default \nStorageClass:\n+ \n----\n$ oc patch storageclass gp2 -p '{\"metadata\": {\"annotations\": {\"storageclass.kubernetes.io\/is-default-class\": \"false\"}}}'\n----\n\n. Make another StorageClass the default by adding or modifying the \nannotation as `storageclass.kubernetes.io\/is-default-class=true`.\n+ \n----\n$ oc patch storageclass standard -p '{\"metadata\": {\"annotations\": {\"storageclass.kubernetes.io\/is-default-class\": \"true\"}}}'\n----\n\n. Verify the changes:\n+\n----\n$ oc get storageclass\n\nNAME TYPE\ngp2 kubernetes.io\/aws-ebs\nstandard (default) kubernetes.io\/gce-pd\n----\n\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * storage\/dynamic-provisioning.adoc\n\n[id=\"change-default-storage-class_{context}\"]\n= Changing the default StorageClass\n\nIf you are using AWS, use the following process to change the default\nStorageClass. This process assumes you have two StorageClasses\ndefined, `gp2` and `standard`, and you want to change the default\nStorageClass from `gp2` to `standard`.\n\n. List the StorageClass:\n+\n----\n$ oc get storageclass\n\nNAME TYPE\ngp2 (default) kubernetes.io\/aws-ebs <1>\nstandard kubernetes.io\/aws-ebs\n----\n<1> `(default)` denotes the default StorageClass.\n\n. Change the value of the annotation \n`storageclass.kubernetes.io\/is-default-class` to `false` for the default \nStorageClass:\n+ \n----\n$ oc patch storageclass gp2 -p '{\"metadata\": {\"annotations\": {\"storageclass.kubernetes.io\/is-default-class\": \"false\"}}}'\n----\n\n. Make another StorageClass the default by adding or modifying the \nannotation as `storageclass.kubernetes.io\/is-default-class=true`.\n+ \n----\n$ oc patch storageclass standard -p '{\"metadata\": {\"annotations\": {\"storageclass.kubernetes.io\/is-default-class\": \"true\"}}}'\n----\n\n. Verify the changes:\n+\n----\n$ oc get storageclass\n\nNAME TYPE\ngp2 kubernetes.io\/aws-ebs\nstandard (default) kubernetes.io\/aws-ebs\n----\n\n","subject":"Fix bz1729334: remove GCE storage reference","message":"Fix bz1729334: remove GCE storage reference\n\nhttps:\/\/bugzilla.redhat.com\/show_bug.cgi?id=1729334\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"9a24dc04c08147e163cce2340ad363f7ebb4a6d7","old_file":"src\/test\/resources\/cavia\/traits\/habitat\/natural.asciidoc","new_file":"src\/test\/resources\/cavia\/traits\/habitat\/natural.asciidoc","old_contents":":title: Natural habitat\n:parent: Traits and environment\n\n== Natural habitatz\n\nC. porcellus is not found naturally in the wild; it is likely descended from some closely related species of cavies, such as C. aperea, C. fulgida, and C. tschudii, which are still commonly found in various regions of South America.\nSome species of cavy identified in the 20th century, such as C. anolaimae and C. guianae, may be domestic guinea pigs that have become feral by reintroduction into the wild.\nWild cavies are found on grassy plains and occupy an ecological niche similar to that of cattle.\nThey are social, living in the wild in small groups which consist of several females (sows), a male (boar), and the young (which in a break with the preceding porcine nomenclature are called pups).\nThey move together in groups (herds) eating grass or other vegetation, and do not store food.\nWhile they do not burrow or build nests, they frequently seek shelter in the burrows of other animals, as well as in crevices and tunnels formed by vegetation.\nThey tend to be most active during dawn and dusk, when it is harder for predators to spot them.\n","new_contents":":title: Natural habitat\n:parent: Traits and environment\n\n== Natural habitat\n\nC. porcellus is not found naturally in the wild; it is likely descended from some closely related species of cavies, such as C. aperea, C. fulgida, and C. tschudii, which are still commonly found in various regions of South America.\nSome species of cavy identified in the 20th century, such as C. anolaimae and C. guianae, may be domestic guinea pigs that have become feral by reintroduction into the wild.\nWild cavies are found on grassy plains and occupy an ecological niche similar to that of cattle.\nThey are social, living in the wild in small groups which consist of several females (sows), a male (boar), and the young (which in a break with the preceding porcine nomenclature are called pups).\nThey move together in groups (herds) eating grass or other vegetation, and do not store food.\nWhile they do not burrow or build nests, they frequently seek shelter in the burrows of other animals, as well as in crevices and tunnels formed by vegetation.\nThey tend to be most active during dawn and dusk, when it is harder for predators to spot them.\n","subject":"Fix header in test source","message":"Fix header in test source\n","lang":"AsciiDoc","license":"apache-2.0","repos":"madhead\/doktor,madhead\/doktor,madhead\/doktor"} {"commit":"b8a50103ba0a0170594dbbf51e71f495e1f1568b","old_file":"docs\/modules\/extensions\/pages\/conversion-process-overview.adoc","new_file":"docs\/modules\/extensions\/pages\/conversion-process-overview.adoc","old_contents":"= AsciidoctorJ Conversion Process Overview\n\nBefore starting to write your first extension, some basic understanding of how Asciidoctor treats the document is helpful.\nAs any language processing tool, the process can be roughly split into three steps:\n\n. Parsing: the raw sources content is read and analyzed to generate the internal representation, the AST (_abstract syntax tree_).\n. Processing: the AST is processed. For example to detect possible errors, add automatically generated content (toc), etc.\n. Output generation: once the final AST is set, it's again processed to generate the desired output.\nFor example, a sub-section of the AST representing a title with a paragraph will be converted into its correspondent HTML or PDF output.\n\nNOTE: Some liberty is taken to make the process easier to understand.\nIn reality, Asciidoctor has implementation details that divert from the 3 steps above.\n\nThe different extension types are called in different steps of the conversion process in the following order:\n\n. IncludeProcessors are called in an arbitrary and changeable order during processing and are called whenever an `include::` is found.\n. Preprocessors are called just before parsing.\n. BlockMacroProcessors are called during processing in the order that they appear in the document.\n. BlockProcessors are called during processing in the order that they appear in the document.\n. Treeprocessors are called right before processing.\n. InlineMacroProcessors are called during processing in the order that they appear in the document.\n. Postprocessors are called before output generation.\n. DocinfoProcessors are called in an arbitrary and changeable order during processing.\n","new_contents":"= AsciidoctorJ Conversion Process Overview\n\nBefore starting to write your first extension, some basic understanding of how Asciidoctor treats the document is helpful.\nAs any language processing tool, the process can be roughly split into three steps:\n\n. Parsing: the raw sources content is read and analyzed to generate the internal representation, the AST (_abstract syntax tree_).\n. Processing: the AST is processed. For example to detect possible errors, add automatically generated content (toc), etc.\n. Output generation: once the final AST is set, it's again processed to generate the desired output.\nFor example, a sub-section of the AST representing a title with a paragraph will be converted into its correspondent HTML or PDF output.\n\nNOTE: Some liberty is taken to make the process easier to understand.\nIn reality, Asciidoctor has implementation details that divert from the 3 steps above.\n\nThe different extension types are called in different steps of the conversion process in the following order:\n\n. IncludeProcessors are called in an arbitrary and changeable order during processing and are called whenever an `include::` is found.\n. Preprocessors are called just before parsing.\n. BlockMacroProcessors and BlockProcessors are called during processing in the order that they appear in the document.\n. Treeprocessors are called right before processing.\n. InlineMacroProcessors are called during processing in the order that they appear in the document.\n. Postprocessors are called before output generation.\n. DocinfoProcessors are called in an arbitrary and changeable order during processing.\n","subject":"Clarify that BlockMacro- and BlockProcessors are called in the same stage","message":"Clarify that BlockMacro- and BlockProcessors are called in the same stage\n","lang":"AsciiDoc","license":"apache-2.0","repos":"abelsromero\/asciidoctorj,abelsromero\/asciidoctorj,asciidoctor\/asciidoctorj,asciidoctor\/asciidoctorj,abelsromero\/asciidoctorj,asciidoctor\/asciidoctorj"} {"commit":"570ec2cb40378f753edf58866c06c7889c25b644","old_file":"src\/docs\/manual\/03_task_generateDeck.adoc","new_file":"src\/docs\/manual\/03_task_generateDeck.adoc","old_contents":"ifndef::imagesdir[:imagesdir: ..\/images]\n= generateDeck\n\nimage::ea\/Manual\/generateDeck.png[]\n\nThis task makes use of the https:\/\/github.com\/asciidoctor\/asciidoctor-reveal.js\/[asciidoctor-reveal.js] backend to render your documents HTML based presentation.\n\nThis task is best used together with the <> task.\nCreate a PowerPoint presentation and enrich it with reveal.js slide definitions in AsciiDoc within the speaker notes.\n\n== Source\n\n.build.gradle\n[source,groovy]\n----\ninclude::..\/..\/..\/build.gradle[tags=generateDeck]\n----\n","new_contents":"ifndef::imagesdir[:imagesdir: ..\/images]\n= generateDeck\n\nimage::ea\/Manual\/generateDeck.png[]\n\nThis task makes use of the https:\/\/github.com\/asciidoctor\/asciidoctor-reveal.js\/[asciidoctor-reveal.js] backend to render your documents into a HTML based presentation.\n\nThis task is best used together with the <> task.\nCreate a PowerPoint presentation and enrich it with reveal.js slide definitions in AsciiDoc within the speaker notes.\n\n== Source\n\n.build.gradle\n[source,groovy]\n----\ninclude::..\/..\/..\/build.gradle[tags=generateDeck]\n----\n","subject":"Fix missing part of sentence","message":"Fix missing part of sentence","lang":"AsciiDoc","license":"mit","repos":"docToolchain\/docToolchain,docToolchain\/docToolchain,docToolchain\/docToolchain,jakubjab\/docToolchain,docToolchain\/docToolchain"} {"commit":"a74db116e71b58ef8131293b7265ebffd49631ec","old_file":"README.adoc","new_file":"README.adoc","old_contents":"# byteslice\n\n## Status\nimage:https:\/\/travis-ci.org\/rlespinasse\/byteslice.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/rlespinasse\/byteslice\"]\nimage:https:\/\/coveralls.io\/repos\/github\/rlespinasse\/byteslice\/badge.svg?branch=master[\"Coverage Status\", link=\"https:\/\/coveralls.io\/github\/rlespinasse\/byteslice?branch=master\"]\n","new_contents":"= byteslice\n\nimage:https:\/\/travis-ci.org\/rlespinasse\/byteslice.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/rlespinasse\/byteslice\"]\nimage:https:\/\/coveralls.io\/repos\/github\/rlespinasse\/byteslice\/badge.svg?branch=master[\"Coverage Status\", link=\"https:\/\/coveralls.io\/github\/rlespinasse\/byteslice?branch=master\"]\n\n== How to\n\n=== test it with coverage\n\n[source,shell]\n-----\n$ go test -coverprofile=\/tmp\/byteslice-cover .\nok \tgithub.com\/rlespinasse\/byteslice\t0.007s\tcoverage: 100.0% of statements\n-----\n\n=== launch the benchmark\n\n[source,shell]\n-----\n$ go test -bench=. .\ngoos: ...\ngoarch: ...\npkg: github.com\/rlespinasse\/byteslice\nBenchmarkRBitState\/get_low_bit_of_high_nibble-8 \t2000000000\t 1.99 ns\/op\nBenchmarkRBitState\/get_low_bit-8 \t2000000000\t 1.96 ns\/op\n...\nPASS\nok \tgithub.com\/rlespinasse\/byteslice\t158.442s\n-----\n\n== Documentation Site\n\nSee https:\/\/godoc.org\/github.com\/rlespinasse\/byteslice\n","subject":"Add how-to section and documentation site link","message":"Add how-to section and documentation site link\n","lang":"AsciiDoc","license":"mit","repos":"Gman98ish\/byteslice"} {"commit":"cf965dca27c18a70453eba4fa89b640145ea43ea","old_file":"docs\/en\/rollup\/index.asciidoc","new_file":"docs\/en\/rollup\/index.asciidoc","old_contents":"[[xpack-rollup]]\n= Rolling up historical data\n\n[partintro]\n--\n\nbeta[]\n\nKeeping historical data around for analysis is extremely useful but often avoided due to the financial cost of\narchiving massive amounts of data. Retention periods are thus driven by financial realities rather than by the\nusefulness of extensive historical data.\n\nThe Rollup feature in {xpack} provides a means to summarize and store historical data so that it can still be used\nfor analysis, but at a fraction of the storage cost of raw data.\n\n\n* <>\n* <>\n* <>\n* <>\n* <>\n\n\n--\n\ninclude::overview.asciidoc[]\ninclude::api-quickref.asciidoc[]\ninclude::rollup-getting-started.asciidoc[]\ninclude::understanding-groups.asciidoc[]\ninclude::rollup-search-limitations.asciidoc[]","new_contents":"[[xpack-rollup]]\n= Rolling up historical data\n\n[partintro]\n--\n\nexperimental[]\n\nKeeping historical data around for analysis is extremely useful but often avoided due to the financial cost of\narchiving massive amounts of data. Retention periods are thus driven by financial realities rather than by the\nusefulness of extensive historical data.\n\nThe Rollup feature in {xpack} provides a means to summarize and store historical data so that it can still be used\nfor analysis, but at a fraction of the storage cost of raw data.\n\n\n* <>\n* <>\n* <>\n* <>\n* <>\n\n\n--\n\ninclude::overview.asciidoc[]\ninclude::api-quickref.asciidoc[]\ninclude::rollup-getting-started.asciidoc[]\ninclude::understanding-groups.asciidoc[]\ninclude::rollup-search-limitations.asciidoc[]","subject":"Mark Rollup as Experimental instead of Beta","message":"[Docs] Mark Rollup as Experimental instead of Beta\n\nOriginal commit: elastic\/x-pack-elasticsearch@bce120daae6b3e7603f737337e746fdf8bdedd4e\n","lang":"AsciiDoc","license":"apache-2.0","repos":"GlenRSmith\/elasticsearch,gfyoung\/elasticsearch,gfyoung\/elasticsearch,coding0011\/elasticsearch,nknize\/elasticsearch,robin13\/elasticsearch,nknize\/elasticsearch,robin13\/elasticsearch,HonzaKral\/elasticsearch,gingerwizard\/elasticsearch,GlenRSmith\/elasticsearch,GlenRSmith\/elasticsearch,scorpionvicky\/elasticsearch,GlenRSmith\/elasticsearch,gingerwizard\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,GlenRSmith\/elasticsearch,coding0011\/elasticsearch,nknize\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,gingerwizard\/elasticsearch,HonzaKral\/elasticsearch,coding0011\/elasticsearch,robin13\/elasticsearch,nknize\/elasticsearch,gfyoung\/elasticsearch,HonzaKral\/elasticsearch,HonzaKral\/elasticsearch,gingerwizard\/elasticsearch,scorpionvicky\/elasticsearch,uschindler\/elasticsearch,gfyoung\/elasticsearch,coding0011\/elasticsearch,robin13\/elasticsearch,gfyoung\/elasticsearch,nknize\/elasticsearch,uschindler\/elasticsearch,uschindler\/elasticsearch,robin13\/elasticsearch,coding0011\/elasticsearch,uschindler\/elasticsearch,uschindler\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch"} {"commit":"66f004671026f90867b5e02f1a7de97e96e60db8","old_file":"modules\/olm-metrics.adoc","new_file":"modules\/olm-metrics.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * operators\/understanding-olm\/olm-understanding-olm.adoc\n\n[id=\"olm-metrics_{context}\"]\n= Exposed metrics\n\nThe Operator Lifecycle Manager (OLM) exposes certain OLM-specific resources for\nuse by the Prometheus-based {product-title} cluster monitoring stack.\n\n.Metrics exposed by OLM\n[cols=\"2a,8a\",options=\"header\"]\n|===\n|Name |Description\n\n|`csv_count`\n|Number of CSVs successfully registered.\n\n|`install_plan_count`\n|Number of InstallPlans.\n\n|`subscription_count`\n|Number of Subscriptions.\n\n|`csv_upgrade_count`\n|Monotonic count of CatalogSources.\n|===\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * operators\/understanding-olm\/olm-understanding-olm.adoc\n\n[id=\"olm-metrics_{context}\"]\n= Exposed metrics\n\nThe Operator Lifecycle Manager (OLM) exposes certain OLM-specific resources for\nuse by the Prometheus-based {product-title} cluster monitoring stack.\n\n.Metrics exposed by OLM\n[cols=\"2a,8a\",options=\"header\"]\n|===\n|Name |Description\n\n|`catalog_source_count`\n|Number of CatalogSources.\n\n|`csv_abnormal`\n|When reconciling a CSV, present whenever a CSV version is in any state other\nthan `Succeeded`. Includes the `name`, `namespace`, `phase`, `reason`, and\n`version` labels. A Prometheus alert is created when this metric is present.\n\n|`csv_count`\n|Number of CSVs successfully registered.\n\n|`csv_succeeded`\n|When reconciling a CSV, represents whether a CSV version is in a `Succeeded`\nstate (value `1`) or not (value `0`). Includes the `name`, `namespace`, and\n`version` labels.\n\n|`csv_upgrade_count`\n|Monotonic count of CatalogSources.\n\n|`install_plan_count`\n|Number of InstallPlans.\n\n|`subscription_count`\n|Number of Subscriptions.\n\n|`subscription_sync_total`\n|Monotonic count of Subscription syncs. Includes the `channel`, `installed` CSV,\nand Subscription `name` labels.\n\n|===\n","subject":"Update OLM metrics for 4.3","message":"Update OLM metrics for 4.3\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"cfda490e2d7748956e4db0e928ce4d527bfe5d94","old_file":"conoha\/roles\/dokku\/README.adoc","new_file":"conoha\/roles\/dokku\/README.adoc","old_contents":"= conoha\/roles\/dokku\n\nRole to install dokku 0.5.7 .\n\nAfter finish installation, access to `http:\/\/d.10sr.mydns.jp` and finish setup.\n\n\n\n== Deploying Apps\n\n\nデプロイするには、\n\n----\ncat .ssh\/id_rsa.pub | ssh conoha 'sudo sshcommand acl-add dokku dokkudeploy'\n----\n\nみたいなことをマシン毎にしなきゃいけません。どうにかして自動化したい。\n\n\n\n\n=== Add Apps\n\n.Add pytohn-getting-started app\n----\nalias dokku=\"ssh -t dokku@conoha\"\n\ncd ..\/..\/dokku-apps\/python-getting-started\n\ndokku apps:create python-getting-started\ngit remote add dokku dokku@conoha:python-getting-started\ngit push dokku master\n----\n\n\n\n== Refs\n\n* http:\/\/dokku.viewdocs.io\/dokku\/application-deployment\/\n* https:\/\/gist.github.com\/10sr\/cf8b84cf16f2e67f5dac\n","new_contents":"= conoha\/roles\/dokku\n\nRole to install dokku 0.5.7 .\n\nAfter finish installation, access to `http:\/\/d.10sr.mydns.jp` and finish setup.\n\n\n\n== Deploying Apps\n\n\nデプロイするには、\n\n----\ncat .ssh\/id_rsa.pub | ssh conoha 'sudo sshcommand acl-add dokku dokkudeploy'\n----\n\nみたいなことをマシン毎にしなきゃいけません。どうにかして自動化したい。\n\n\n\n\n=== Add Apps\n\n.Add pytohn-getting-started app\n----\nalias dokku=\"ssh -t dokku@conoha\"\n\ncd ..\/..\/dokku-apps\/python-getting-started\n\ndokku apps:create python-getting-started\ngit remote add dokku dokku@conoha:python-getting-started\ngit push dokku master\n----\n\nAnd this app can be available at http:\/\/python-getting-started.d.10sr.mydns.jp\n\n\n\n== Refs\n\n* http:\/\/dokku.viewdocs.io\/dokku\/application-deployment\/\n* https:\/\/gist.github.com\/10sr\/cf8b84cf16f2e67f5dac\n","subject":"Add url to access apps","message":"Add url to access apps\n","lang":"AsciiDoc","license":"unlicense","repos":"10sr\/machine-setups,10sr\/machine-setups,10sr\/machine-setups,10sr\/server-provisions,10sr\/server-provisions,10sr\/machine-setups"} {"commit":"37ae31cb07701d6e4977c117671b48ee4ee132af","old_file":"content\/news\/2021\/03\/18\/apis-serving-people-and-programs.adoc","new_file":"content\/news\/2021\/03\/18\/apis-serving-people-and-programs.adoc","old_contents":"= Keyword argument functions now also accept maps\nFogus\n2021-03-18\n:jbake-type: post\n\nifdef::env-github,env-browser[:outfilesuffix: .adoc]\n\nTo date, Clojure’s support for keyword arguments forces programmers to choose between creating APIs that better support people (accepting keyword args) or APIs that better support programs (by taking a map of those args).\n\nIntroduced in Clojure 1.11, a function specified to take keyword arguments may be passed a single map instead of or in addition to (and following) the key\/value pairs. When a lone map is passed, it is used outright for destructuring, else a trailing map is added to the map built from the preceding key\/values via `conj`. For example, a function that takes a sequence and optional keyword arguments and returns a vector containing the values is defined as:\n\n[source,clojure]\n----\n(defn destr [& {:keys [a b] :as opts}]\n [a b opts])\n\n(destr :a 1)\n->[1 nil {:a 1}]\n\n(destr {:a 1 :b 2})\n->[1 2 {:a 1 :b 2}]\n----\n\nIn Clojure 1.11 the call to `destr` accepts a mixture of key\/value pairs and\/or a lone (or trailing) map benefitting both programmer and program.\n\nThis enhancement is available now in `org.clojure\/clojure \"1.11.0-alpha1\"`.\n","new_contents":"= Keyword argument functions now also accept maps\nFogus\n2021-03-18\n:jbake-type: post\n\nifdef::env-github,env-browser[:outfilesuffix: .adoc]\n\nTo date, Clojure’s support for keyword arguments forces programmers to choose between creating APIs that better support people (accepting keyword args) or APIs that better support programs (by taking a map of those args).\n\nIntroduced in Clojure 1.11, a function specified to take keyword arguments may be passed a single map instead of or in addition to (and following) the key\/value pairs. When a lone map is passed, it is used outright for destructuring, else a trailing map is added to the map built from the preceding key\/values via `conj`. For example, a function that takes a sequence of optional keyword arguments and returns a vector containing the values is defined as:\n\n[source,clojure]\n----\n(defn destr [& {:keys [a b] :as opts}]\n [a b opts])\n\n(destr :a 1)\n->[1 nil {:a 1}]\n\n(destr {:a 1 :b 2})\n->[1 2 {:a 1 :b 2}]\n----\n\nIn Clojure 1.11 the call to `destr` accepts a mixture of key\/value pairs and\/or a lone (or trailing) map benefitting both programmer and program.\n\nThis enhancement is available now in `org.clojure\/clojure \"1.11.0-alpha1\"`.\n","subject":"Fix typo: change 'and' to 'of'","message":"Fix typo: change 'and' to 'of'\n\nA couple of people have been confused by the current wording on Slack: I believe the intent was to say that `destr` \"takes a sequence _of_ optional keyword arguments\" (not _and_).","lang":"AsciiDoc","license":"epl-1.0","repos":"clojure\/clojure-site"} {"commit":"69775b05d85f6a626302bb1729e995e2f0761a9e","old_file":"content\/tools\/light-table.adoc","new_file":"content\/tools\/light-table.adoc","old_contents":"= Light Table\nDavid Nolen\n2016-08-02\n:type: tools\n:toc: macro\n:icons: font\n\n[Light Table]http:\/\/www.lighttable.com is an extensible IDE that offers\ninstant evaluation of your code, realtime feedback, and a ClojureScript\nplugin ecosystem.\n\nTo get started, check out this concise\nhttp:\/\/docs.lighttable.com\/#start[introduction] or the\n[full tutorial]http:\/\/docs.lighttable.com\/tutorials\/full\/.\n\nOnce you feel comfortable navigating Light Table's interface and using\nbasic commands, it is advisable to install the official Paredit plugin.\nYou can do so via the integrated plugin manager: open the command bar\nand look for `Plugins: Show plugin manager`.\n","new_contents":"= Light Table\nDavid Nolen\n2016-08-02\n:type: tools\n:toc: macro\n:icons: font\n\nhttp:\/\/www.lighttable.com[Light Table] is an extensible IDE that offers\ninstant evaluation of your code, realtime feedback, and a ClojureScript\nplugin ecosystem.\n\nTo get started, check out this concise\nhttp:\/\/docs.lighttable.com\/#start[introduction] or the\nhttp:\/\/docs.lighttable.com\/tutorials\/full\/[full tutorial].\n\nOnce you feel comfortable navigating Light Table's interface and using\nbasic commands, it is advisable to install the official Paredit plugin.\nYou can do so via the integrated plugin manager: open the command bar\nand look for `Plugins: Show plugin manager`.\n","subject":"Adjust links to lighttable and full tutorial","message":"Adjust links to lighttable and full tutorial\n\nMove the [link title] behind the link to display it correctly","lang":"AsciiDoc","license":"epl-1.0","repos":"clojure\/clojurescript-site"} {"commit":"17fd16b7cc59fdff0a250458924e88f11005a3c8","old_file":"docs\/reference\/migration\/migrate_5_3.asciidoc","new_file":"docs\/reference\/migration\/migrate_5_3.asciidoc","old_contents":"[[breaking-changes-5.3]]\n== Breaking changes in 5.3\n\n[[breaking_53_packaging_changes]]\n[float]\n=== Packaging changes\n\n[float]\n==== Logging configuration\n\nPreviously Elasticsearch exposed a single system property (`es.logs`) that\nincluded the absolute path to the configured logs directory, and the prefix of\nthe filenames used for the various logging files (the main log file, the\ndeprecation log, and the slow logs). This property has been replaced in favor of\nthree properties:\n - `es.logs.base_path`: the absolute path to the configured logs directory\n - `es.logs.cluster_name`: the default prefix of the filenames used for the\n various logging files\n - `es.logs.node_name`: exposed if `node.name` is configured for inclusion in\n the filenames of the various logging files (if you prefer)\n\nThe property `es.logs` is deprecated and will be removed in Elasticsearch 6.0.0.\n","new_contents":"[[breaking-changes-5.3]]\n== Breaking changes in 5.3\n\n[[breaking_53_packaging_changes]]\n[float]\n=== Packaging changes\n\n[float]\n==== Logging configuration\n\nPreviously Elasticsearch exposed a single system property (`es.logs`) that\nincluded the absolute path to the configured logs directory, and the prefix of\nthe filenames used for the various logging files (the main log file, the\ndeprecation log, and the slow logs). This property has been replaced in favor of\nthree properties:\n\n * `es.logs.base_path`: the absolute path to the configured logs directory\n * `es.logs.cluster_name`: the default prefix of the filenames used for the\n various logging files\n * `es.logs.node_name`: exposed if `node.name` is configured for inclusion in\n the filenames of the various logging files (if you prefer)\n\nThe property `es.logs` is deprecated and will be removed in Elasticsearch 6.0.0.\n","subject":"Fix list formatting in 5.3 migration docs","message":"Fix list formatting in 5.3 migration docs\n\nThis commit fixes an issue with the list formatting in the 5.3 migration\ndocs.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc"} {"commit":"5e5674739e13e6f746d2a6bafcc7559c4b2ed0e8","old_file":"subprojects\/griffon-shiro-guide\/src\/asciidoc\/index.adoc","new_file":"subprojects\/griffon-shiro-guide\/src\/asciidoc\/index.adoc","old_contents":"= {project-name}\n:author: {project-author}\n:revnumber: {project-version}\n:toclevels: 10\n\ninclude::_links.adoc[]\n\n:leveloffset: 1\ninclude::introduction.adoc[]\ninclude::configuration.adoc[]\ninclude::modules.adoc[]\n","new_contents":"= {project-name}\n:author: {project-author}\n:revnumber: {project-version}\n:toclevels: 10\n\ninclude::_links.adoc[]\n\n:leveloffset: 1\ninclude::introduction.adoc[]\ninclude::configuration.adoc[]\ninclude::modules.adoc[]\n\n= Links\n\nlink:api\/index.html[Javadoc, window=\"_blank\"]\n\nlink:api-src\/index.html[API Sources, window=\"_blank\"]\n","subject":"Add apidoc links to guide","message":"Add apidoc links to guide\n","lang":"AsciiDoc","license":"apache-2.0","repos":"griffon-plugins\/griffon-shiro-plugin"} {"commit":"519a9c469d93e983565387f810d87fcc6c5fe19e","old_file":"docs\/reference\/analysis\/tokenfilters\/truncate-tokenfilter.asciidoc","new_file":"docs\/reference\/analysis\/tokenfilters\/truncate-tokenfilter.asciidoc","old_contents":"[[analysis-truncate-tokenfilter]]\n=== Truncate Token Filter\n\nThe `truncate` token filter can be used to truncate tokens into a\nspecific length. This can come in handy with keyword (single token)\nbased mapped fields that are used for sorting in order to reduce memory\nusage.\n\nIt accepts a `length` parameter which control the number of characters\nto truncate to, defaults to `10`.\n","new_contents":"[[analysis-truncate-tokenfilter]]\n=== Truncate Token Filter\n\nThe `truncate` token filter can be used to truncate tokens into a\nspecific length.\n\nIt accepts a `length` parameter which control the number of characters\nto truncate to, defaults to `10`.\n","subject":"Update truncate token filter to not mention the keyword tokenizer","message":"Update truncate token filter to not mention the keyword tokenizer\n\nThe advice predates the existence of the keyword field\n\nCloses #22650\n","lang":"AsciiDoc","license":"apache-2.0","repos":"kalimatas\/elasticsearch,JackyMai\/elasticsearch,masaruh\/elasticsearch,qwerty4030\/elasticsearch,scottsom\/elasticsearch,sneivandt\/elasticsearch,mjason3\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,sneivandt\/elasticsearch,wenpos\/elasticsearch,HonzaKral\/elasticsearch,mortonsykes\/elasticsearch,scottsom\/elasticsearch,fred84\/elasticsearch,fred84\/elasticsearch,sneivandt\/elasticsearch,sneivandt\/elasticsearch,scottsom\/elasticsearch,IanvsPoplicola\/elasticsearch,gingerwizard\/elasticsearch,kalimatas\/elasticsearch,nazarewk\/elasticsearch,coding0011\/elasticsearch,JSCooke\/elasticsearch,scottsom\/elasticsearch,HonzaKral\/elasticsearch,JackyMai\/elasticsearch,markwalkom\/elasticsearch,lks21c\/elasticsearch,Shepard1212\/elasticsearch,a2lin\/elasticsearch,umeshdangat\/elasticsearch,jprante\/elasticsearch,robin13\/elasticsearch,njlawton\/elasticsearch,Stacey-Gammon\/elasticsearch,C-Bish\/elasticsearch,IanvsPoplicola\/elasticsearch,coding0011\/elasticsearch,maddin2016\/elasticsearch,umeshdangat\/elasticsearch,JackyMai\/elasticsearch,mortonsykes\/elasticsearch,mjason3\/elasticsearch,scottsom\/elasticsearch,s1monw\/elasticsearch,brandonkearby\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,maddin2016\/elasticsearch,Helen-Zhao\/elasticsearch,naveenhooda2000\/elasticsearch,mohit\/elasticsearch,njlawton\/elasticsearch,lks21c\/elasticsearch,ZTE-PaaS\/elasticsearch,nezirus\/elasticsearch,wangtuo\/elasticsearch,ZTE-PaaS\/elasticsearch,markwalkom\/elasticsearch,qwerty4030\/elasticsearch,pozhidaevak\/elasticsearch,gingerwizard\/elasticsearch,gfyoung\/elasticsearch,wangtuo\/elasticsearch,shreejay\/elasticsearch,jimczi\/elasticsearch,fernandozhu\/elasticsearch,uschindler\/elasticsearch,jimczi\/elasticsearch,robin13\/elasticsearch,obourgain\/elasticsearch,shreejay\/elasticsearch,wangtuo\/elasticsearch,jprante\/elasticsearch,rajanm\/elasticsearch,wangtuo\/elasticsearch,nilabhsagar\/elasticsearch,wangtuo\/elasticsearch,mjason3\/elasticsearch,rajanm\/elasticsearch,markwalkom\/elasticsearch,geidies\/elasticsearch,umeshdangat\/elasticsearch,gingerwizard\/elasticsearch,robin13\/elasticsearch,mohit\/elasticsearch,wenpos\/elasticsearch,elasticdog\/elasticsearch,Stacey-Gammon\/elasticsearch,uschindler\/elasticsearch,C-Bish\/elasticsearch,GlenRSmith\/elasticsearch,nilabhsagar\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,nazarewk\/elasticsearch,fernandozhu\/elasticsearch,rlugojr\/elasticsearch,fernandozhu\/elasticsearch,nknize\/elasticsearch,C-Bish\/elasticsearch,winstonewert\/elasticsearch,s1monw\/elasticsearch,qwerty4030\/elasticsearch,masaruh\/elasticsearch,elasticdog\/elasticsearch,gfyoung\/elasticsearch,gingerwizard\/elasticsearch,geidies\/elasticsearch,a2lin\/elasticsearch,gfyoung\/elasticsearch,markwalkom\/elasticsearch,winstonewert\/elasticsearch,naveenhooda2000\/elasticsearch,LewayneNaidoo\/elasticsearch,masaruh\/elasticsearch,gingerwizard\/elasticsearch,robin13\/elasticsearch,artnowo\/elasticsearch,strapdata\/elassandra,LeoYao\/elasticsearch,nknize\/elasticsearch,rlugojr\/elasticsearch,Shepard1212\/elasticsearch,rajanm\/elasticsearch,JSCooke\/elasticsearch,vroyer\/elasticassandra,i-am-Nathan\/elasticsearch,umeshdangat\/elasticsearch,Helen-Zhao\/elasticsearch,wenpos\/elasticsearch,obourgain\/elasticsearch,LeoYao\/elasticsearch,glefloch\/elasticsearch,fernandozhu\/elasticsearch,scorpionvicky\/elasticsearch,pozhidaevak\/elasticsearch,mikemccand\/elasticsearch,GlenRSmith\/elasticsearch,obourgain\/elasticsearch,nezirus\/elasticsearch,njlawton\/elasticsearch,mortonsykes\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,uschindler\/elasticsearch,maddin2016\/elasticsearch,bawse\/elasticsearch,Stacey-Gammon\/elasticsearch,mjason3\/elasticsearch,lks21c\/elasticsearch,fred84\/elasticsearch,MisterAndersen\/elasticsearch,artnowo\/elasticsearch,winstonewert\/elasticsearch,jimczi\/elasticsearch,shreejay\/elasticsearch,robin13\/elasticsearch,coding0011\/elasticsearch,Shepard1212\/elasticsearch,alexshadow007\/elasticsearch,geidies\/elasticsearch,umeshdangat\/elasticsearch,winstonewert\/elasticsearch,Shepard1212\/elasticsearch,mohit\/elasticsearch,MisterAndersen\/elasticsearch,ZTE-PaaS\/elasticsearch,wenpos\/elasticsearch,Helen-Zhao\/elasticsearch,gfyoung\/elasticsearch,bawse\/elasticsearch,ZTE-PaaS\/elasticsearch,strapdata\/elassandra,brandonkearby\/elasticsearch,vroyer\/elasticassandra,jprante\/elasticsearch,vroyer\/elasticassandra,StefanGor\/elasticsearch,gingerwizard\/elasticsearch,maddin2016\/elasticsearch,fred84\/elasticsearch,i-am-Nathan\/elasticsearch,brandonkearby\/elasticsearch,IanvsPoplicola\/elasticsearch,rajanm\/elasticsearch,geidies\/elasticsearch,nazarewk\/elasticsearch,vroyer\/elassandra,ThiagoGarciaAlves\/elasticsearch,vroyer\/elassandra,wenpos\/elasticsearch,s1monw\/elasticsearch,lks21c\/elasticsearch,LeoYao\/elasticsearch,nezirus\/elasticsearch,pozhidaevak\/elasticsearch,mohit\/elasticsearch,JSCooke\/elasticsearch,MisterAndersen\/elasticsearch,glefloch\/elasticsearch,qwerty4030\/elasticsearch,JackyMai\/elasticsearch,alexshadow007\/elasticsearch,jimczi\/elasticsearch,rlugojr\/elasticsearch,jprante\/elasticsearch,nknize\/elasticsearch,fred84\/elasticsearch,masaruh\/elasticsearch,glefloch\/elasticsearch,a2lin\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,Helen-Zhao\/elasticsearch,kalimatas\/elasticsearch,LewayneNaidoo\/elasticsearch,scorpionvicky\/elasticsearch,mortonsykes\/elasticsearch,StefanGor\/elasticsearch,geidies\/elasticsearch,vroyer\/elassandra,naveenhooda2000\/elasticsearch,alexshadow007\/elasticsearch,scorpionvicky\/elasticsearch,GlenRSmith\/elasticsearch,bawse\/elasticsearch,sneivandt\/elasticsearch,mortonsykes\/elasticsearch,LewayneNaidoo\/elasticsearch,LeoYao\/elasticsearch,pozhidaevak\/elasticsearch,Shepard1212\/elasticsearch,MisterAndersen\/elasticsearch,IanvsPoplicola\/elasticsearch,strapdata\/elassandra,masaruh\/elasticsearch,i-am-Nathan\/elasticsearch,elasticdog\/elasticsearch,elasticdog\/elasticsearch,nazarewk\/elasticsearch,rajanm\/elasticsearch,lks21c\/elasticsearch,JSCooke\/elasticsearch,glefloch\/elasticsearch,obourgain\/elasticsearch,nknize\/elasticsearch,uschindler\/elasticsearch,njlawton\/elasticsearch,kalimatas\/elasticsearch,Helen-Zhao\/elasticsearch,rlugojr\/elasticsearch,ZTE-PaaS\/elasticsearch,geidies\/elasticsearch,LewayneNaidoo\/elasticsearch,nilabhsagar\/elasticsearch,jprante\/elasticsearch,s1monw\/elasticsearch,LeoYao\/elasticsearch,JackyMai\/elasticsearch,Stacey-Gammon\/elasticsearch,coding0011\/elasticsearch,s1monw\/elasticsearch,alexshadow007\/elasticsearch,mikemccand\/elasticsearch,nezirus\/elasticsearch,winstonewert\/elasticsearch,kalimatas\/elasticsearch,naveenhooda2000\/elasticsearch,HonzaKral\/elasticsearch,rajanm\/elasticsearch,JSCooke\/elasticsearch,nknize\/elasticsearch,strapdata\/elassandra,mikemccand\/elasticsearch,scorpionvicky\/elasticsearch,strapdata\/elassandra,nilabhsagar\/elasticsearch,C-Bish\/elasticsearch,mjason3\/elasticsearch,artnowo\/elasticsearch,StefanGor\/elasticsearch,C-Bish\/elasticsearch,nazarewk\/elasticsearch,IanvsPoplicola\/elasticsearch,GlenRSmith\/elasticsearch,LeoYao\/elasticsearch,rlugojr\/elasticsearch,glefloch\/elasticsearch,brandonkearby\/elasticsearch,a2lin\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,shreejay\/elasticsearch,i-am-Nathan\/elasticsearch,gfyoung\/elasticsearch,jimczi\/elasticsearch,GlenRSmith\/elasticsearch,a2lin\/elasticsearch,alexshadow007\/elasticsearch,mohit\/elasticsearch,StefanGor\/elasticsearch,qwerty4030\/elasticsearch,coding0011\/elasticsearch,brandonkearby\/elasticsearch,markwalkom\/elasticsearch,Stacey-Gammon\/elasticsearch,bawse\/elasticsearch,HonzaKral\/elasticsearch,njlawton\/elasticsearch,LeoYao\/elasticsearch,artnowo\/elasticsearch,pozhidaevak\/elasticsearch,mikemccand\/elasticsearch,nezirus\/elasticsearch,elasticdog\/elasticsearch,naveenhooda2000\/elasticsearch,mikemccand\/elasticsearch,bawse\/elasticsearch,LewayneNaidoo\/elasticsearch,uschindler\/elasticsearch,fernandozhu\/elasticsearch,markwalkom\/elasticsearch,nilabhsagar\/elasticsearch,obourgain\/elasticsearch,StefanGor\/elasticsearch,i-am-Nathan\/elasticsearch,maddin2016\/elasticsearch,artnowo\/elasticsearch,MisterAndersen\/elasticsearch,shreejay\/elasticsearch"} {"commit":"10544f4092b45bd810b1276f193feeb1223838fa","old_file":"README.adoc","new_file":"README.adoc","old_contents":"James Glasbrenner's dotfiles\n============================\nJames Glasbrenner \nJuly 27, 2017\n\nMy dotfiles repo.\n\nBootstrapping\n-------------\n\nStow 2.3.0 is included in this repo for bootstrapping purposes.\nTo stow stow after cloning this repository to `$HOME\/.dotfiles`, run\n\n.bash\n----------------------------------------------\nPERL5LIB=$HOME\/.dotfiles\/stow\/stow\/lib\/perl5 \\\n $HOME\/.dotfiles\/stow\/stow\/bin\/stow \\\n -d $HOME\/.dotfiles\/stow \\\n -t \/home\/glasbren\/.local \\\n stow\n----------------------------------------------\n\nLicense\n-------\n\nAll content is licensed under the terms of link:LICENSE[The Unlicense License].\n","new_contents":"James Glasbrenner's dotfiles\n============================\nJames Glasbrenner \nJuly 27, 2017\n\nMy dotfiles repo.\n\nBootstrapping\n-------------\n\nStow 2.3.0 is included in this repo for bootstrapping purposes.\nTo stow stow after cloning this repository to `$HOME\/.dotfiles`, run\n\n[source,bash]\n----------------------------------------------\nPERL5LIB=$HOME\/.dotfiles\/stow\/stow\/lib\/perl5 \\\n $HOME\/.dotfiles\/stow\/stow\/bin\/stow \\\n -d $HOME\/.dotfiles\/stow \\\n -t \/home\/glasbren\/.local \\\n stow\n----------------------------------------------\n\nLicense\n-------\n\nAll content is licensed under the terms of link:LICENSE[The Unlicense License].\n","subject":"Fix source code block formatting","message":"Fix source code block formatting\n","lang":"AsciiDoc","license":"unlicense","repos":"jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles"} {"commit":"e766e0e05802fb354e033cf63bd16d8721f71000","old_file":"community\/cypher\/docs\/cypher-docs\/src\/docs\/dev\/ql\/periodic-commit\/index.asciidoc","new_file":"community\/cypher\/docs\/cypher-docs\/src\/docs\/dev\/ql\/periodic-commit\/index.asciidoc","old_contents":"[[query-periodic-commit]]\nUsing Periodic Commit\n=====================\n\nNOTE: See <> on how to import data from CSV files.\n\nUpdating very large amounts of data (e.g. when importing) with a single Cypher query may fail due to memory constraints.\nFor these situations *only*, Cypher provides the global +USING PERIODIC COMMIT+ query hint for updating queries.\n\nPeriodic Commit tracks the number of updates performed by a query (creating a node, setting a property etc.).\nWhenever the number of updates reaches a limit, the current transaction is committed and replaced with a newly opened transaction.\n\nUsing periodic commit will prevent running out of memory when updating large amounts of data.\nHowever it will also break transactional isolation thus it should only be used where needed.\n\n:leveloffset: 2\n\ninclude::periodic-commit-without-update-limit.asciidoc[]\n\ninclude::periodic-commit-with-update-limit.asciidoc[]\n\ninclude::import-using-periodic-commit.asciidoc[]\n\n\n\n\n","new_contents":"[[query-periodic-commit]]\nUsing Periodic Commit\n=====================\n\nNOTE: See <> on how to import data from CSV files.\n\nUpdating very large amounts of data (e.g. when importing) with a single Cypher query may fail due to memory constraints.\nFor these situations *only*, Cypher provides the global +USING PERIODIC COMMIT+ query hint for updating queries.\n\nPeriodic Commit tracks the number of updates performed by a query (creating a node, setting a property etc.).\nWhenever the number of updates reaches a limit, the current transaction is committed and replaced with a newly opened transaction.\n\nUsing periodic commit will prevent running out of memory when updating large amounts of data.\nHowever it will also break transactional isolation thus it should only be used where needed.\n\n:leveloffset: 2\n\ninclude::import-using-periodic-commit.asciidoc[]\n\n\n\n\n","subject":"Remove links to the periodic commit reference","message":"Remove links to the periodic commit reference\n","lang":"AsciiDoc","license":"apache-2.0","repos":"HuangLS\/neo4j,HuangLS\/neo4j,HuangLS\/neo4j,HuangLS\/neo4j,HuangLS\/neo4j"} {"commit":"29b2bc89c828cfaf469081bed3d8addcadda0239","old_file":"docs\/griffon-site\/src\/jbake\/content\/news\/griffon_2.0.0.RC1.adoc","new_file":"docs\/griffon-site\/src\/jbake\/content\/news\/griffon_2.0.0.RC1.adoc","old_contents":"= Griffon 2.0.0.RC1 Released\nAndres Almiray\n2014-07-29\n:jbake-type: post\n:jbake-status: published\n:category: news\n:idprefix:\n\n== Griffon 2.0.0.RC1 Released\n\nThe Griffon team is happy to announce the release of Griffon 2.0.0.RC1!\n\nThis is the first release candidate of Griffon 2.0.0. If all goes according to planf the next release\nwill be 2.0.0 final.\n\nThe following list summarizes the changes brought by this release:\n\n * Groovy support upgraded to Groovy 2.3.5.\n * Several build plugins updated to their latest versions.\n * Addition of a master pom file for application projects.\n * Enable +mavenLocal()+ on gradle-griffon plugins by default.\n * more content added to the link:..\/guide\/2.0.0.RC1\/index.html[Griffon Guide].\n\nWe look forward to your feedback. Please report any problems you find to the Griffon User list,\nor better yet, file a bug at http:\/\/jira.codehaus.org\/browse\/griffon\n\nRemember you can also contact the team on Twitter: http:\/\/twitter.com\/theaviary[@theaviary].\n\nMany thanks to all who contributed to this release!\n\nThe Griffon Team\n","new_contents":"= Griffon 2.0.0.RC1 Released\nAndres Almiray\n2014-07-29\n:jbake-type: post\n:jbake-status: published\n:category: news\n:idprefix:\n\n== Griffon 2.0.0.RC1 Released\n\nThe Griffon team is happy to announce the release of Griffon 2.0.0.RC1!\n\nThis is the first release candidate of Griffon 2.0.0. If all goes according to plan the next release\nwill be 2.0.0 final in a few weeks time.\n\nThe following list summarizes the changes brought by this release:\n\n * Groovy support upgraded to Groovy 2.3.5.\n * Several build plugins updated to their latest versions.\n * Addition of a master pom file for application projects.\n * Enable +mavenLocal()+ on gradle-griffon plugins by default.\n * Lots of updates applied to Lazybones application templates.\n * More content added to the link:..\/guide\/2.0.0.RC1\/index.html[Griffon Guide].\n\nWe look forward to your feedback. Please report any problems you find to the Griffon User list,\nor better yet, file a bug at http:\/\/jira.codehaus.org\/browse\/griffon\n\nRemember you can also contact the team on Twitter: http:\/\/twitter.com\/theaviary[@theaviary].\n\nMany thanks to all who contributed to this release!\n\nThe Griffon Team\n","subject":"Update latest news on site project","message":"Update latest news on site project\n","lang":"AsciiDoc","license":"apache-2.0","repos":"tschulte\/griffon,levymoreira\/griffon,levymoreira\/griffon,griffon\/griffon,levymoreira\/griffon,griffon\/griffon,tschulte\/griffon,tschulte\/griffon"} {"commit":"2560e63590117f29db0b68104f10832a4b10e9cd","old_file":"documentation\/service_admin\/monitoring-openshift.adoc","new_file":"documentation\/service_admin\/monitoring-openshift.adoc","old_contents":"[[monitoring]]\n\n== Monitoring {ProductName} on OpenShift\n\n{ProductName} comes with addons for Prometheus and Grafana for monitoring the service. Cluster-admin\nprivileges is required for Prometheus to monitor pods in the cluster.\n\n=== Deploying Prometheus\n\n.Procedure\n\n. Create Prometheus deployment\n+\n[options=\"nowrap\"]\n----\noc create -f .\/openshift\/addons\/prometheus.yaml -n enmasse\n----\n\n. Grant cluster-reader privileges to Prometheus service account\n+\n[options=\"nowrap\"]\n----\noc policy add-role-to-user cluster-reader system:serviceaccount:enmasse:prometheus-server\n----\n\n=== Deploying Grafana\n\n.Procedure\n\n. Create Grafana deployment\n+\n[options=\"nowrap\"]\n----\noc create -f .\/openshift\/addons\/grafana.yaml -n enmasse\n----\n\n. Expose Grafana service\n+\n[options=\"nowrap\"]\n----\noc expose service grafana\n----\n\nGrafana accepts the username 'admin' and password 'admin' by default. See the link:https:\/\/prometheus.io\/docs\/visualization\/grafana\/#creating-a-prometheus-data-source[Prometheus Documentation] on how to connect Grafana to Prometheus. Use `prometheus.enmasse.svc.cluster.local` as the prometheus hostname.\n","new_contents":"[[monitoring]]\n\n== Monitoring {ProductName} on OpenShift\n\n{ProductName} comes with addons for Prometheus and Grafana for monitoring the service. Cluster-admin\nprivileges is required for Prometheus to monitor pods in the cluster.\n\n=== Deploying Prometheus\n\n.Procedure\n\n. Create Prometheus deployment\n+\n[options=\"nowrap\"]\n----\noc create -f .\/openshift\/addons\/prometheus.yaml -n enmasse\n----\n\n. Grant cluster-reader privileges to Prometheus service account\n+\n[options=\"nowrap\"]\n----\noc adm policy add-cluster-role-to-user cluster-reader system:serviceaccount:enmasse:prometheus-server\n----\n\n=== Deploying Grafana\n\n.Procedure\n\n. Create Grafana deployment\n+\n[options=\"nowrap\"]\n----\noc create -f .\/openshift\/addons\/grafana.yaml -n enmasse\n----\n\n. Expose Grafana service\n+\n[options=\"nowrap\"]\n----\noc expose service grafana\n----\n\nGrafana accepts the username 'admin' and password 'admin' by default. See the link:https:\/\/prometheus.io\/docs\/visualization\/grafana\/#creating-a-prometheus-data-source[Prometheus Documentation] on how to connect Grafana to Prometheus. Use `prometheus.enmasse.svc.cluster.local` as the prometheus hostname.\n","subject":"Use correct command to add cluster-reader rolebinding","message":"Use correct command to add cluster-reader rolebinding\n\nThis fixes #982\n","lang":"AsciiDoc","license":"apache-2.0","repos":"jenmalloy\/enmasse,EnMasseProject\/enmasse,EnMasseProject\/enmasse,jenmalloy\/enmasse,EnMasseProject\/enmasse,jenmalloy\/enmasse,jenmalloy\/enmasse,EnMasseProject\/enmasse,EnMasseProject\/enmasse,EnMasseProject\/enmasse,jenmalloy\/enmasse,jenmalloy\/enmasse,EnMasseProject\/enmasse,jenmalloy\/enmasse"} {"commit":"f824681478e7ec359515a5dd84d0ec02518197b8","old_file":"docs\/targets\/m17n.adoc","new_file":"docs\/targets\/m17n.adoc","old_contents":"= M17n\n\nTODO\n","new_contents":"= M17n\n\nhttps:\/\/www.nongnu.org\/m17n\/[m17n]\nrefers to project for enhanced multilingualization on Linux.\nThe output target generates `.mim` files,\nwhich are used as configuration files for\nhttps:\/\/en.wikipedia.org\/wiki\/Intelligent_Input_Bus[IBUS].\n\n== Project-level configuration and properties\n\nNOTE: For a list of all supported properties of the Android target files, see <> in the reference section below.\n\n== Layout-level configuration and properties\n\nCurrently none.\n\n== How to install a new locale on X11\n\nAssumes Ubuntu 18.04.\n\n. Make sure Gnome settings app is not open\n\n. Copy the new `.mim` file(s) to either `~\/.m17n.d\/` (user local) or `\/usr\/share\/m17n\/` (global)\n\n. Make sure they have the correct permissions set,\ni.e. `644` like the other files\n\n. restart all IBus daemons (according to https:\/\/askubuntu.com\/a\/656243[this question]),\ne.g. using `pgrep ibus | xargs kill`\n\n. Open Gnome settings\n.. Go to \"Region & Language\"\n.. Under \"Input Sources\", press the \"+\" button\n.. In the modal window, select your newly added language variant.\nNote that it might be grouped by the main language,\ne.g., you might need to click on \"Swedish (Sweden)\" first,\nand then select the specific variant like \"Swedish (test (m17n))\".\n.. Confirm with \"Add\"\n.. You can test the keyboard layout by clicking on the \"eye\" icon\nnext to the language in the list\n\n. The language should show up global menu bar's language selection.\n","subject":"Add section on how to install MIM files","message":"Docs: Add section on how to install MIM files\n","lang":"AsciiDoc","license":"apache-2.0","repos":"bbqsrc\/kbdgen"} {"commit":"e5d10ac8649389040088bbdb8e0f5ea2401a386e","old_file":"docs\/reference\/setup\/important-settings.asciidoc","new_file":"docs\/reference\/setup\/important-settings.asciidoc","old_contents":"[[important-settings]]\n== Important Elasticsearch configuration\n\nWhile Elasticsearch requires very little configuration, there are a number of\nsettings which need to be considered before going into production.\n\nThe following settings *must* be considered before going to production:\n\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n\ninclude::important-settings\/path-settings.asciidoc[]\n\ninclude::important-settings\/cluster-name.asciidoc[]\n\ninclude::important-settings\/node-name.asciidoc[]\n\ninclude::important-settings\/network-host.asciidoc[]\n\ninclude::important-settings\/discovery-settings.asciidoc[]\n\ninclude::important-settings\/heap-size.asciidoc[]\n\ninclude::important-settings\/heap-dump-path.asciidoc[]\n\ninclude::important-settings\/gc-logging.asciidoc[]\n","new_contents":"[[important-settings]]\n== Important Elasticsearch configuration\n\nWhile Elasticsearch requires very little configuration, there are a number of\nsettings which need to be considered before going into production.\n\nThe following settings *must* be considered before going to production:\n\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n\ninclude::important-settings\/path-settings.asciidoc[]\n\ninclude::important-settings\/cluster-name.asciidoc[]\n\ninclude::important-settings\/node-name.asciidoc[]\n\ninclude::important-settings\/network-host.asciidoc[]\n\ninclude::important-settings\/discovery-settings.asciidoc[]\n\ninclude::important-settings\/heap-size.asciidoc[]\n\ninclude::important-settings\/heap-dump-path.asciidoc[]\n\ninclude::important-settings\/gc-logging.asciidoc[]\n\ninclude::important-settings\/error-file.asciidoc[]\n","subject":"Add error file docs to important settings","message":"Add error file docs to important settings\n\nThis commit adds the error file documentation to the important settings\ndocs so that the page is actually visible.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra,strapdata\/elassandra,vroyer\/elassandra,strapdata\/elassandra,vroyer\/elassandra,strapdata\/elassandra,strapdata\/elassandra,vroyer\/elassandra"} {"commit":"e2bde2335ec315364c873103a1c0a3d3fb2d9f54","old_file":"modules\/openshift-developer-cli-creating-and-deploying-a-nodejs-application-with-odo.adoc","new_file":"modules\/openshift-developer-cli-creating-and-deploying-a-nodejs-application-with-odo.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * cli_reference\/openshift_developer_cli\/creating-a-single-component-application-with-odo \n\n[id=\"creating-a-nodejs-application-with-odo_{context}\"]\n= Creating a Node.js application with {odo-title} \n\n.Procedure \n\n. Add a component of the type Node.js to your application:\n+\n----\n$ odo create nodejs\n----\n+\nNOTE: By default, the latest image is used. You can also explicitly supply an image version by using `odo create openshift\/nodejs:8`.\n\n. Push the initial source code to the component:\n+\n----\n$ odo push\n----\n+\nYour component is now deployed to {product-title}.\n\n. Create a URL and add an entry in the local configuration file as follows:\n+\n----\n$ odo url create --port 8080\n----\n+\n. Push the changes. This creates a URL on the cluster.\n+\n----\n$ odo push\n----\n+\n. List the URLs to check the desired URL for the component.\n+\n----\n$ odo url list\n----\n+\n. View your deployed application using the generated URL.\n+\n----\n$ curl \n----","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * cli_reference\/openshift_developer_cli\/creating-a-single-component-application-with-odo \n\n[id=\"creating-a-nodejs-application-with-odo_{context}\"]\n= Creating a Node.js application with {odo-title} \n\n.Procedure \n\n. Change the current directory to the front-end directory:\n+\n----\n$ cd \n---- \n\n. Add a component of the type Node.js to your application:\n+\n----\n$ odo create nodejs\n----\n+\nNOTE: By default, the latest image is used. You can also explicitly supply an image version by using `odo create openshift\/nodejs:8`.\n\n. Push the initial source code to the component:\n+\n----\n$ odo push\n----\n+\nYour component is now deployed to {product-title}.\n\n. Create a URL and add an entry in the local configuration file as follows:\n+\n----\n$ odo url create --port 8080\n----\n+\n. Push the changes. This creates a URL on the cluster.\n+\n----\n$ odo push\n----\n+\n. List the URLs to check the desired URL for the component.\n+\n----\n$ odo url list\n----\n+\n. View your deployed application using the generated URL.\n+\n----\n$ curl \n----\n","subject":"Update step for deploying an odo single application","message":"Update step for deploying an odo single application\n\nMissing important step to change to the Node.JS directory before running\nthe next command...\n\nPing @boczkowska @bergerhoffer\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"3d57b4064da348e5f922c505f70bc7a07292d79b","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= flexy-pool\nAuthor \nv1.0.0, 2014-02-25\n\n:toc:\n:imagesdir: images\n:homepage: http:\/\/vladmihalcea.com\/\n\n== Introduction\n\nThe flexy-pool library brings adaptability to a given Connection Pool, allowing it to resize on demand.\nThis is very handy since most connection pools offer a limited set of dynamic configuration strategies.\n\n== Features (Goals)\n\n* extensive connection pool support(Bitronix TM, C3PO, DBCP)\n* statistics support\n** connection acquiring time histogram\n** retries attempts histogram\n** minimum CP size histogram\n** maximum CP size histogram\n** average CP size histogram","new_contents":"= flexy-pool\nAuthor \nv1.0.0, 2014-02-25\n\n:toc:\n:imagesdir: images\n:homepage: http:\/\/vladmihalcea.com\/\n\n== Introduction\n\nThe flexy-pool library brings adaptability to a given Connection Pool, allowing it to resize on demand.\nThis is very handy since most connection pools offer a limited set of dynamic configuration strategies.\n\n== Features (Goals)\n\n* extensive connection pool support(Bitronix TM, C3PO, DBCP)\n* statistics support\n** source connection acquiring time histogram\n** total connection acquiring time histogram\n** retries attempts histogram\n** minimum CP size histogram\n** maximum CP size histogram\n** average connection request count histogram","subject":"Add more goals for metrics","message":"Add more goals for metrics\n","lang":"AsciiDoc","license":"apache-2.0","repos":"mosoft521\/flexy-pool,vladmihalcea\/flexy-pool,wgpshashank\/flexy-pool"} {"commit":"31693c62e64a7cfcc9a6fe41521cd521d6095842","old_file":"x-pack\/docs\/en\/sql\/index.asciidoc","new_file":"x-pack\/docs\/en\/sql\/index.asciidoc","old_contents":"[role=\"xpack\"]\n[[xpack-sql]]\n= SQL Access\n\n:sql-tests: {xes-repo-dir}\/..\/..\/qa\/sql\n:sql-specs: {sql-tests}\/src\/main\/resources\n:jdbc-tests: {sql-tests}\/src\/main\/java\/org\/elasticsearch\/xpack\/qa\/sql\/jdbc\n:security-tests: {sql-tests}\/security\/src\/test\/java\/org\/elasticsearch\/xpack\/qa\/sql\/security\n\n[partintro]\n--\nX-Pack includes a SQL feature to execute SQL against Elasticsearch\nindices and return tabular results. There are four main components:\n\n<>::\n Accepts SQL in a JSON document, executes it, and returns the\n results.\n<>::\n Accepts SQL in a JSON document and translates it into a native\n Elasticsearch query and returns that.\n<>::\n Command line application that connects to Elasticsearch to execute\n SQL and print tabular results.\n<>::\n A JDBC driver for Elasticsearch.\n--\n\ninclude::getting-started.asciidoc[]\ninclude::endpoints\/index.asciidoc[]\ninclude::functions\/index.asciidoc[]\ninclude::language\/index.asciidoc[]\n\n:jdbc-tests!:\n","new_contents":"[role=\"xpack\"]\n[[xpack-sql]]\n= SQL Access\n\n:sql-tests: {xes-repo-dir}\/..\/..\/qa\/sql\n:sql-specs: {sql-tests}\/src\/main\/resources\n:jdbc-tests: {sql-tests}\/src\/main\/java\/org\/elasticsearch\/xpack\/qa\/sql\/jdbc\n:security-tests: {sql-tests}\/security\/src\/test\/java\/org\/elasticsearch\/xpack\/qa\/sql\/security\n\n[partintro]\n--\n\nexperimental[]\n\nX-Pack includes a SQL feature to execute SQL against Elasticsearch\nindices and return tabular results. There are four main components:\n\n<>::\n Accepts SQL in a JSON document, executes it, and returns the\n results.\n<>::\n Accepts SQL in a JSON document and translates it into a native\n Elasticsearch query and returns that.\n<>::\n Command line application that connects to Elasticsearch to execute\n SQL and print tabular results.\n<>::\n A JDBC driver for Elasticsearch.\n--\n\ninclude::getting-started.asciidoc[]\ninclude::endpoints\/index.asciidoc[]\ninclude::functions\/index.asciidoc[]\ninclude::language\/index.asciidoc[]\n\n:jdbc-tests!:\n","subject":"Mark SQL feature as experimental","message":"[DOCS] Mark SQL feature as experimental\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra,vroyer\/elassandra,vroyer\/elassandra,strapdata\/elassandra,vroyer\/elassandra,strapdata\/elassandra,strapdata\/elassandra,strapdata\/elassandra"} {"commit":"a52f135c766e34075af0e8c73f0fb6b099c5012c","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Cloud Enablement CCT module\n\nThis repository serves as a temporary public link:https:\/\/github.com\/concrt\/concreate[Concreate] module for building JBoss Openshift container images. This repository is an enhanced copy of shell scripts used to build JBoss images for OpenShift.\n","new_contents":"= Cloud Enablement CCT module\n\nThis repository serves as a temporary public link:https:\/\/github.com\/concrt\/concreate[Concreate] module for building JBoss Openshift container images. This repository is an enhanced copy of shell scripts used to build JBoss images for OpenShift.\n\n== FAQ\n\n=== Why the name?\n\n*cct* (container configuration tool) was the name of a precursor tool to *concreate*. This module bundle was originally created for use with *cct* but has outlived it.\n\n=== Temporary?\n\nWe are in the process of refactoring the modules. The end-goal is likely to be splitting this repository up into separate modules aligned by product.\n\n== See also\n\n * https:\/\/github.com\/jboss-container-images[Red Hat Middleware Container Images]\n * http:\/\/registry.access.redhat.com\/[Red Hat Container Catalog] \n * https:\/\/www.openshift.com\/[Red Hat OpenShift]\n","subject":"Add a mini-faq and see-also URIs","message":"Add a mini-faq and see-also URIs","lang":"AsciiDoc","license":"apache-2.0","repos":"spolti\/cct_module,jboss-openshift\/cct_module,jboss-openshift\/cct_module,spolti\/cct_module,jboss-openshift\/cct_module,spolti\/cct_module"} {"commit":"37e59ec299f089c7cf5ba6cc5de7b11b86050446","old_file":"code\/continuousIntegration.adoc","new_file":"code\/continuousIntegration.adoc","old_contents":"= Continuous integration\n:awestruct-layout: normalBase\n:showtitle:\n\nWe use Jenkins for continuous integration.\n\n*Show https:\/\/hudson.jboss.org\/hudson\/job\/drools\/[the Jenkins job].*\n\nKeep the build blue!\n","new_contents":"= Continuous integration\n:awestruct-layout: normalBase\n:showtitle:\n\nWe use Jenkins for continuous integration.\n\n*Show https:\/\/jenkins-kieci.rhcloud.com\/[the Jenkins jobs].* These are mirrors of a Red Hat internal Jenkins jobs.\n\nKeep the builds green!\n","subject":"Update public Jenkins job URL","message":"Update public Jenkins job URL","lang":"AsciiDoc","license":"apache-2.0","repos":"tomasdavidorg\/drools-website,tomasdavidorg\/drools-website,droolsjbpm\/drools-website,droolsjbpm\/drools-website,qmx\/drools-website,droolsjbpm\/drools-website,qmx\/drools-website,tomasdavidorg\/drools-website,qmx\/drools-website,qmx\/drools-website,tomasdavidorg\/drools-website"} {"commit":"d95b43551871d55a71e1b9b6060ce30428e1315c","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Minimal-J\n\nJava - but small.\n\nimage::doc\/frontends.png[]\n\nMinimal-J applications are\n\n* Responsive to use on every device\n* Straight forward to specify and implement and therefore\n* Easy to plan and manage\n\n=== Idea\n\nBusiness applications tend to get complex and complicated. Minimal-J prevents this by setting clear rules how an application should behave and how it should be implemented.\n\nMinimal applications may not always look the same. But the UI concepts never change. There are no surprises for the user.\n\n== Technical Features\n\n* Independent of the used UI technology. Implementations for Web \/ Mobile \/ Desktop.\n* ORM persistence layer for Maria DB or in memory DB. Transactions and Authorization supported.\n* Small: The minimalj.jar is still < 1MB\n* Very few dependencies\n* Applications can run standalone (like SpringBoot)\n\n== Documentation\n\n* link:doc\/user_guide\/user_guide.adoc[Minimal user guide] User guide for Minimal-J applications.\n* link:doc\/topics.adoc[Tutorial and examples] Informations for developers.\n* link:doc\/release_notes.adoc[Release Notes]\n\n\n=== Contact\n\n* Bruno Eberhard, mailto:minimalj@hispeed.ch[minimalj@hispeed.ch] ","new_contents":"= Minimal-J\n\nJava - but small.\n\nimage::doc\/frontends.png[]\n\nMinimal-J applications are\n\n* Responsive to use on every device\n* Straight forward to specify and implement and therefore\n* Easy to plan and manage\n\n=== Idea\n\nBusiness applications tend to get complex and complicated. Minimal-J prevents this by setting clear rules how an application should behave and how it should be implemented.\n\nMinimal applications may not always look the same. But the UI concepts never change. There are no surprises for the user.\n\n== Technical Features\n\n* Independent of the used UI technology. Implementations for Web \/ Mobile \/ Desktop.\n* ORM persistence layer for Maria DB or in memory DB. Transactions and Authorization supported.\n* Small: The minimalj.jar is still < 1MB\n* Very few dependencies\n* Applications can run standalone (like SpringBoot)\n\n== Documentation\n\n* link:doc\/user_guide\/user_guide.adoc[Minimal user guide] User guide for Minimal-J applications.\n* link:doc\/topics.adoc[Tutorial and examples] Informations for developers.\n* link:doc\/release_notes.adoc[Release Notes]\n\n== Hello World\n\nHow to implement Hello World in Minimal-J:\n\n[![Minimal-J - Hello Wolrd](http:\/\/img.youtube.com\/vi\/0VHz7gv6TpA\/0.jpg)](http:\/\/www.youtube.com\/watch?v=0VHz7gv6TpA)\n\n=== Contact\n\n* Bruno Eberhard, mailto:minimalj@hispeed.ch[minimalj@hispeed.ch] ","subject":"Include Hello World Youtube video","message":"Include Hello World Youtube video","lang":"AsciiDoc","license":"apache-2.0","repos":"BrunoEberhard\/minimal-j,BrunoEberhard\/minimal-j,BrunoEberhard\/minimal-j"} {"commit":"a61d90806b02f1ec9bc04e1db98c4024bbfb58ff","old_file":"storage\/container_storage_interface\/persistent-storage-csi.adoc","new_file":"storage\/container_storage_interface\/persistent-storage-csi.adoc","old_contents":"[id=\"persistent-storage-using-csi\"]\n= Configuring CSI volumes\ninclude::modules\/common-attributes.adoc[]\n:context: persistent-storage-csi\n\ntoc::[]\n\nThe Container Storage Interface (CSI) allows {product-title} to consume\nstorage from storage backends that implement the\nlink:https:\/\/github.com\/container-storage-interface\/spec[CSI interface]\nas persistent storage.\n\n[IMPORTANT]\n====\n{product-title} does not ship with any CSI drivers. It is recommended\nto use the CSI drivers provided by\nlink:https:\/\/kubernetes-csi.github.io\/docs\/drivers.html[community or storage vendors].\n\nInstallation instructions differ by driver, and are found in each driver's\ndocumentation. Follow the instructions provided by the CSI driver.\n\n{product-title} {product-version} supports version 1.1.0 of the\nlink:https:\/\/github.com\/container-storage-interface\/spec[CSI specification].\n====\n\ninclude::modules\/persistent-storage-csi-architecture.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-external-controllers.adoc[leveloffset=+2]\n\ninclude::modules\/persistent-storage-csi-driver-daemonset.adoc[leveloffset=+2]\n\ninclude::modules\/persistent-storage-csi-dynamic-provisioning.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-mysql-example.adoc[leveloffset=+1]\n","new_contents":"[id=\"persistent-storage-using-csi\"]\n= Configuring CSI volumes\ninclude::modules\/common-attributes.adoc[]\n:context: persistent-storage-csi\n\ntoc::[]\n\nThe Container Storage Interface (CSI) allows {product-title} to consume\nstorage from storage back ends that implement the\nlink:https:\/\/github.com\/container-storage-interface\/spec[CSI interface]\nas persistent storage.\n\n[IMPORTANT]\n====\n{product-title} does not ship with any CSI drivers. It is recommended\nto use the CSI drivers provided by\nlink:https:\/\/kubernetes-csi.github.io\/docs\/drivers.html[community or storage vendors].\n\nInstallation instructions differ by driver, and are found in each driver's\ndocumentation. Follow the instructions provided by the CSI driver.\n====\n\ninclude::modules\/persistent-storage-csi-architecture.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-external-controllers.adoc[leveloffset=+2]\n\ninclude::modules\/persistent-storage-csi-driver-daemonset.adoc[leveloffset=+2]\n\ninclude::modules\/persistent-storage-csi-dynamic-provisioning.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-mysql-example.adoc[leveloffset=+1]\n","subject":"Remove CSI spec ref in note","message":"Remove CSI spec ref in note\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"adb820c904d245bdf177be4f4d4ed010cef07229","old_file":"src\/main\/asciidoc\/development.adoc","new_file":"src\/main\/asciidoc\/development.adoc","old_contents":"[[development]]\n== Development\n\nGithub repository: {datasource-proxy}","new_contents":"[[development]]\n== Development\n\nGithub repository: {datasource-proxy}\n\n=== Build Documentation\n\n```sh\n> .\/mvnw asciidoctor:process-asciidoc@output-html\n```\n","subject":"Add how to build documentation","message":"Add how to build documentation\n","lang":"AsciiDoc","license":"mit","repos":"ttddyy\/datasource-proxy,ttddyy\/datasource-proxy"} {"commit":"617c8f79554b517ec9267e7ca8e1c2067d7ca874","old_file":"documentation\/src\/docs\/asciidoc\/release-notes\/index.adoc","new_file":"documentation\/src\/docs\/asciidoc\/release-notes\/index.adoc","old_contents":"[[release-notes]]\n= JUnit 5 Release Notes\nStefan Bechtold; Sam Brannen; Johannes Link; Matthias Merdes; Marc Philipp; Christian Stein\n\/\/\n:docinfodir: ..\/docinfos\n:docinfo: private-head\n:numbered!:\n\/\/\n\nThis document contains the _change log_ for all JUnit 5 releases since 5.0 GA.\n\nPlease refer to the <<..\/user-guide\/index.adoc#user-guide,User Guide>> for\ncomprehensive reference documentation for programmers writing tests,\nextension authors, and engine authors as well as build tool and IDE\nvendors.\n\ninclude::..\/link-attributes.adoc[]\n\ninclude::release-notes-5.1.0-M2.adoc[]\n\ninclude::release-notes-5.1.0-RC1.adoc[]\n\ninclude::release-notes-5.1.0-M1.adoc[]\n\ninclude::release-notes-5.0.3.adoc[]\n\ninclude::release-notes-5.0.2.adoc[]\n\ninclude::release-notes-5.0.1.adoc[]\n\ninclude::release-notes-5.0.0.adoc[]\n","new_contents":"[[release-notes]]\n= JUnit 5 Release Notes\nStefan Bechtold; Sam Brannen; Johannes Link; Matthias Merdes; Marc Philipp; Christian Stein\n\/\/\n:docinfodir: ..\/docinfos\n:docinfo: private-head\n:numbered!:\n\/\/\n\nThis document contains the _change log_ for all JUnit 5 releases since 5.0 GA.\n\nPlease refer to the <<..\/user-guide\/index.adoc#user-guide,User Guide>> for\ncomprehensive reference documentation for programmers writing tests,\nextension authors, and engine authors as well as build tool and IDE\nvendors.\n\ninclude::..\/link-attributes.adoc[]\n\ninclude::release-notes-5.1.0-RC1.adoc[]\n\ninclude::release-notes-5.1.0-M2.adoc[]\n\ninclude::release-notes-5.1.0-M1.adoc[]\n\ninclude::release-notes-5.0.3.adoc[]\n\ninclude::release-notes-5.0.2.adoc[]\n\ninclude::release-notes-5.0.1.adoc[]\n\ninclude::release-notes-5.0.0.adoc[]\n","subject":"Fix order of includes for Release Notes","message":"Fix order of includes for Release Notes\n","lang":"AsciiDoc","license":"epl-1.0","repos":"sbrannen\/junit-lambda,junit-team\/junit-lambda"} {"commit":"e18ef5711402f71c1a311bdf7ffc2185e6946940","old_file":"doc\/development.adoc","new_file":"doc\/development.adoc","old_contents":"== Setting up a development environment on Ubuntu 16.04 (Xenial)\n\nInstall development dependencies:\n\n $ sudo apt-get install python-pip python-pyscard libykpers-1-1 libu2f-host0 \n\nSetup the repository:\n\n $ git clone --recursive https:\/\/github.com\/Yubico\/yubikey-manager.git\n $ cd yubikey-manager\n\nInstall in editable mode with pip (from root of repository):\n\n $ sudo pip install -e .\n\nRun the app:\n\n $ ykman --help\n\nTo update once installed, just make sure the repo is up to date:\n\n $ git pull\n $ git submodule update\n\nTo uninstall, run:\n\n $ sudo pip uninstall yubikey-manager\n","new_contents":"== Setting up a development environment on Ubuntu 16.04 (Xenial)\n\nInstall development dependencies:\n\n $ sudo apt-get install python-pip python-pyscard libykpers-1-1 libu2f-host0 \n\nSetup the repository:\n\n $ git clone --recursive https:\/\/github.com\/Yubico\/yubikey-manager.git\n $ cd yubikey-manager\n\nInstall in editable mode with pip (from root of repository):\n\n $ sudo pip install -e .\n\nRun the app:\n\n $ ykman --help\n\nTo update once installed, just make sure the repo is up to date:\n\n $ git pull\n $ git submodule update\n\nTo uninstall, run:\n\n $ sudo pip uninstall yubikey-manager\n\n=== Unit tests\n\nTo run unit tests:\n\n $ python setup.py test\n\n=== Integration tests\n\nWARNING: ONLY run these on a dedicated developer key, as it will permanently delete data on the device!\n\nTo run integration tests:\n\n $ INTEGRATION_TESTS=TRUE python setup.py test\n","subject":"Add documentation about running tests","message":"Add documentation about running tests\n\nAs discussed in #8.\n","lang":"AsciiDoc","license":"bsd-2-clause","repos":"Yubico\/yubikey-manager,Yubico\/yubikey-manager"} {"commit":"0bd0782a399a31775c31e0edb09c4be8ce40469c","old_file":"doc\/manuals\/osmotrx-usermanual.adoc","new_file":"doc\/manuals\/osmotrx-usermanual.adoc","old_contents":":gfdl-enabled:\n\nOsmoTRX User Manual\n====================\nPau Espin Pedrol \n\n\ninclude::..\/common\/chapters\/preface.adoc[]\n\ninclude::chapters\/overview.adoc[]\n\ninclude::chapters\/running.adoc[]\n\ninclude::..\/common\/chapters\/control_if.adoc[]\n\ninclude::chapters\/control.adoc[]\n\ninclude::..\/common\/chapters\/vty.adoc[]\n\ninclude::..\/common\/chapters\/logging.adoc[]\n\ninclude::chapters\/counters.adoc[]\n\ninclude::chapters\/configuration.adoc[]\n\ninclude::..\/common\/chapters\/port_numbers.adoc[]\n\ninclude::..\/common\/chapters\/bibliography.adoc[]\n\ninclude::..\/common\/chapters\/glossary.adoc[]\n\ninclude::..\/common\/chapters\/gfdl.adoc[]\n","new_contents":":gfdl-enabled:\n\nOsmoTRX User Manual\n====================\nPau Espin Pedrol \n\n\ninclude::..\/common\/chapters\/preface.adoc[]\n\ninclude::chapters\/overview.adoc[]\n\ninclude::chapters\/running.adoc[]\n\ninclude::..\/common\/chapters\/control_if.adoc[]\n\ninclude::chapters\/control.adoc[]\n\ninclude::..\/common\/chapters\/vty.adoc[]\n\ninclude::..\/common\/chapters\/logging.adoc[]\n\ninclude::chapters\/counters.adoc[]\n\ninclude::chapters\/configuration.adoc[]\n\ninclude::..\/common\/chapters\/trx_if.adoc[]\n\ninclude::..\/common\/chapters\/port_numbers.adoc[]\n\ninclude::..\/common\/chapters\/bibliography.adoc[]\n\ninclude::..\/common\/chapters\/glossary.adoc[]\n\ninclude::..\/common\/chapters\/gfdl.adoc[]\n","subject":"Introduce chapter trx_if.adoc and add it to OsmoTRX and OsmoBTS","message":"Introduce chapter trx_if.adoc and add it to OsmoTRX and OsmoBTS\n\nThis chapter defines the protocol used between osmo-trx and\nosmo-bts-trx.\n\nMost of the text comes originally from osmo-trx.git\/README, as it's the\nonly known documentation of the protocol other than the code itself.\n\nChange-Id: I56c418eef0f826ae1aadbed5b151fbed241c7885\n","lang":"AsciiDoc","license":"agpl-3.0","repos":"ttsou\/osmo-trx,osmocom\/osmo-trx,osmocom\/osmo-trx,ttsou\/osmo-trx,ttsou\/osmo-trx,osmocom\/osmo-trx,ttsou\/osmo-trx,osmocom\/osmo-trx"} {"commit":"a97af113f46645ef50d1a954d4b7f4b5c0ce5a2c","old_file":"docs\/community\/misc.asciidoc","new_file":"docs\/community\/misc.asciidoc","old_contents":"[[misc]]\n== Misc\n\n\n* https:\/\/github.com\/elasticsearch\/puppet-elasticsearch[Puppet]:\n Elasticsearch puppet module.\n\n* http:\/\/github.com\/elasticsearch\/cookbook-elasticsearch[Chef]:\n Chef cookbook for Elasticsearch\n\n* https:\/\/github.com\/medcl\/salt-elasticsearch[SaltStack]:\n SaltStack Module for Elasticsearch\n\n* http:\/\/www.github.com\/neogenix\/daikon[daikon]:\n Daikon Elasticsearch CLI\n\n* https:\/\/github.com\/Aconex\/scrutineer[Scrutineer]:\n A high performance consistency checker to compare what you've indexed\n with your source of truth content (e.g. DB)\n\n* https:\/\/www.wireshark.org\/[Wireshark]:\n Protocol dissection for Zen discovery, HTTP and the binary protocol\n\n* https:\/\/github.com\/sscarduzio\/elasticsearch-readonlyrest-plugin[Readonly REST]:\n High performance access control for Elasticsearch native REST API.\n\n","new_contents":"[[misc]]\n== Misc\n\n\n* https:\/\/github.com\/elasticsearch\/puppet-elasticsearch[Puppet]:\n Elasticsearch puppet module.\n\n* http:\/\/github.com\/elasticsearch\/cookbook-elasticsearch[Chef]:\n Chef cookbook for Elasticsearch\n\n* https:\/\/github.com\/medcl\/salt-elasticsearch[SaltStack]:\n SaltStack Module for Elasticsearch\n\n* http:\/\/www.github.com\/neogenix\/daikon[daikon]:\n Daikon Elasticsearch CLI\n\n* https:\/\/github.com\/Aconex\/scrutineer[Scrutineer]:\n A high performance consistency checker to compare what you've indexed\n with your source of truth content (e.g. DB)\n\n* https:\/\/www.wireshark.org\/[Wireshark]:\n Protocol dissection for Zen discovery, HTTP and the binary protocol\n\n* https:\/\/github.com\/sscarduzio\/elasticsearch-readonlyrest-plugin[Readonly REST]:\n High performance access control for Elasticsearch native REST API.\n\n* https:\/\/github.com\/kodcu\/pes[Pes]:\n A pluggable elastic query DSL builder for Elasticsearch\n","subject":"Add Pes Plugin to the plugin page","message":"Add Pes Plugin to the plugin page\n\nI do not know normally whether this section is the right place or not, please let me know.\n\nHere is the pes plugin's GitHub site :https:\/\/github.com\/kodcu\/pes\n\nCloses #10398\n","lang":"AsciiDoc","license":"apache-2.0","repos":"maddin2016\/elasticsearch,linglaiyao1314\/elasticsearch,linglaiyao1314\/elasticsearch,sdauletau\/elasticsearch,xingguang2013\/elasticsearch,lydonchandra\/elasticsearch,i-am-Nathan\/elasticsearch,milodky\/elasticsearch,Chhunlong\/elasticsearch,Rygbee\/elasticsearch,kunallimaye\/elasticsearch,brandonkearby\/elasticsearch,sc0ttkclark\/elasticsearch,mbrukman\/elasticsearch,nrkkalyan\/elasticsearch,lzo\/elasticsearch-1,alexbrasetvik\/elasticsearch,wenpos\/elasticsearch,hirdesh2008\/elasticsearch,ulkas\/elasticsearch,yuy168\/elasticsearch,ouyangkongtong\/elasticsearch,polyfractal\/elasticsearch,mbrukman\/elasticsearch,martinstuga\/elasticsearch,yynil\/elasticsearch,Liziyao\/elasticsearch,wangtuo\/elasticsearch,nellicus\/elasticsearch,sposam\/elasticsearch,yanjunh\/elasticsearch,scottsom\/elasticsearch,jw0201\/elastic,kingaj\/elasticsearch,fooljohnny\/elasticsearch,uschindler\/elasticsearch,infusionsoft\/elasticsearch,MjAbuz\/elasticsearch,codebunt\/elasticsearch,ckclark\/elasticsearch,18098924759\/elasticsearch,sarwarbhuiyan\/elasticsearch,rento19962\/elasticsearch,EasonYi\/elasticsearch,TonyChai24\/ESSource,yuy168\/elasticsearch,khiraiwa\/elasticsearch,strapdata\/elassandra,MichaelLiZhou\/elasticsearch,hechunwen\/elasticsearch,hanst\/elasticsearch,codebunt\/elasticsearch,Chhunlong\/elasticsearch,AndreKR\/elasticsearch,truemped\/elasticsearch,MaineC\/elasticsearch,cwurm\/elasticsearch,StefanGor\/elasticsearch,HarishAtGitHub\/elasticsearch,scorpionvicky\/elasticsearch,davidvgalbraith\/elasticsearch,Chhunlong\/elasticsearch,jaynblue\/elasticsearch,mgalushka\/elasticsearch,hirdesh2008\/elasticsearch,Chhunlong\/elasticsearch,sdauletau\/elasticsearch,cwurm\/elasticsearch,iamjakob\/elasticsearch,Shekharrajak\/elasticsearch,jimczi\/elasticsearch,liweinan0423\/elasticsearch,Ansh90\/elasticsearch,Collaborne\/elasticsearch,sauravmondallive\/elasticsearch,Helen-Zhao\/elasticsearch,areek\/elasticsearch,Fsero\/elasticsearch,i-am-Nathan\/elasticsearch,AndreKR\/elasticsearch,pritishppai\/elasticsearch,franklanganke\/elasticsearch,AshishThakur\/elasticsearch,jeteve\/elasticsearch,HonzaKral\/elasticsearch,Ansh90\/elasticsearch,SergVro\/elasticsearch,socialrank\/elasticsearch,jsgao0\/elasticsearch,xuzha\/elasticsearch,kenshin233\/elasticsearch,hydro2k\/elasticsearch,milodky\/elasticsearch,kcompher\/elasticsearch,SergVro\/elasticsearch,MetSystem\/elasticsearch,uschindler\/elasticsearch,Brijeshrpatel9\/elasticsearch,beiske\/elasticsearch,kubum\/elasticsearch,chirilo\/elasticsearch,fforbeck\/elasticsearch,AshishThakur\/elasticsearch,sc0ttkclark\/elasticsearch,mapr\/elasticsearch,kunallimaye\/elasticsearch,koxa29\/elasticsearch,sc0ttkclark\/elasticsearch,rlugojr\/elasticsearch,xpandan\/elasticsearch,NBSW\/elasticsearch,queirozfcom\/elasticsearch,lks21c\/elasticsearch,djschny\/elasticsearch,skearns64\/elasticsearch,rlugojr\/elasticsearch,rajanm\/elasticsearch,nrkkalyan\/elasticsearch,acchen97\/elasticsearch,rento19962\/elasticsearch,rento19962\/elasticsearch,tsohil\/elasticsearch,infusionsoft\/elasticsearch,ImpressTV\/elasticsearch,gingerwizard\/elasticsearch,beiske\/elasticsearch,elancom\/elasticsearch,zkidkid\/elasticsearch,liweinan0423\/elasticsearch,sc0ttkclark\/elasticsearch,Rygbee\/elasticsearch,onegambler\/elasticsearch,iamjakob\/elasticsearch,LeoYao\/elasticsearch,ydsakyclguozi\/elasticsearch,cwurm\/elasticsearch,tahaemin\/elasticsearch,jbertouch\/elasticsearch,Collaborne\/elasticsearch,hechunwen\/elasticsearch,MisterAndersen\/elasticsearch,sposam\/elasticsearch,apepper\/elasticsearch,a2lin\/elasticsearch,achow\/elasticsearch,wayeast\/elasticsearch,NBSW\/elasticsearch,mortonsykes\/elasticsearch,Ansh90\/elasticsearch,mm0\/elasticsearch,fekaputra\/elasticsearch,rmuir\/elasticsearch,JSCooke\/elasticsearch,amaliujia\/elasticsearch,likaiwalkman\/elasticsearch,MjAbuz\/elasticsearch,wangyuxue\/elasticsearch,sposam\/elasticsearch,Shepard1212\/elasticsearch,mnylen\/elasticsearch,zkidkid\/elasticsearch,lmtwga\/elasticsearch,jeteve\/elasticsearch,Helen-Zhao\/elasticsearch,hirdesh2008\/elasticsearch,Collaborne\/elasticsearch,i-am-Nathan\/elasticsearch,Siddartha07\/elasticsearch,szroland\/elasticsearch,Rygbee\/elasticsearch,wangyuxue\/elasticsearch,clintongormley\/elasticsearch,coding0011\/elasticsearch,bawse\/elasticsearch,yongminxia\/elasticsearch,lmtwga\/elasticsearch,i-am-Nathan\/elasticsearch,s1monw\/elasticsearch,kingaj\/elasticsearch,jimhooker2002\/elasticsearch,kalburgimanjunath\/elasticsearch,jsgao0\/elasticsearch,Shepard1212\/elasticsearch,C-Bish\/elasticsearch,masaruh\/elasticsearch,kubum\/elasticsearch,Widen\/elasticsearch,overcome\/elasticsearch,jpountz\/elasticsearch,luiseduardohdbackup\/elasticsearch,PhaedrusTheGreek\/elasticsearch,markwalkom\/elasticsearch,wbowling\/elasticsearch,caengcjd\/elasticsearch,ulkas\/elasticsearch,Chhunlong\/elasticsearch,wittyameta\/elasticsearch,GlenRSmith\/elasticsearch,Fsero\/elasticsearch,lchennup\/elasticsearch,Ansh90\/elasticsearch,markharwood\/elasticsearch,LeoYao\/elasticsearch,masaruh\/elasticsearch,pritishppai\/elasticsearch,scorpionvicky\/elasticsearch,AshishThakur\/elasticsearch,maddin2016\/elasticsearch,btiernay\/elasticsearch,AshishThakur\/elasticsearch,lydonchandra\/elasticsearch,TonyChai24\/ESSource,StefanGor\/elasticsearch,areek\/elasticsearch,spiegela\/elasticsearch,wangtuo\/elasticsearch,qwerty4030\/elasticsearch,cwurm\/elasticsearch,wangyuxue\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,wangtuo\/elasticsearch,IanvsPoplicola\/elasticsearch,koxa29\/elasticsearch,Widen\/elasticsearch,tsohil\/elasticsearch,Charlesdong\/elasticsearch,smflorentino\/elasticsearch,martinstuga\/elasticsearch,Collaborne\/elasticsearch,sarwarbhuiyan\/elasticsearch,myelin\/elasticsearch,nellicus\/elasticsearch,HonzaKral\/elasticsearch,himanshuag\/elasticsearch,lzo\/elasticsearch-1,alexkuk\/elasticsearch,fforbeck\/elasticsearch,hydro2k\/elasticsearch,iantruslove\/elasticsearch,NBSW\/elasticsearch,amit-shar\/elasticsearch,jw0201\/elastic,iacdingping\/elasticsearch,hanswang\/elasticsearch,pablocastro\/elasticsearch,mrorii\/elasticsearch,mkis-\/elasticsearch,18098924759\/elasticsearch,amaliujia\/elasticsearch,schonfeld\/elasticsearch,xingguang2013\/elasticsearch,Stacey-Gammon\/elasticsearch,kunallimaye\/elasticsearch,alexshadow007\/elasticsearch,beiske\/elasticsearch,strapdata\/elassandra5-rc,mjason3\/elasticsearch,naveenhooda2000\/elasticsearch,nazarewk\/elasticsearch,GlenRSmith\/elasticsearch,lchennup\/elasticsearch,mjhennig\/elasticsearch,pozhidaevak\/elasticsearch,dongjoon-hyun\/elasticsearch,adrianbk\/elasticsearch,winstonewert\/elasticsearch,trangvh\/elasticsearch,mbrukman\/elasticsearch,MaineC\/elasticsearch,sarwarbhuiyan\/elasticsearch,pritishppai\/elasticsearch,mikemccand\/elasticsearch,ivansun1010\/elasticsearch,MjAbuz\/elasticsearch,JSCooke\/elasticsearch,mnylen\/elasticsearch,gfyoung\/elasticsearch,amit-shar\/elasticsearch,JackyMai\/elasticsearch,vingupta3\/elasticsearch,dongjoon-hyun\/elasticsearch,mkis-\/elasticsearch,LewayneNaidoo\/elasticsearch,Siddartha07\/elasticsearch,kalimatas\/elasticsearch,mohit\/elasticsearch,Charlesdong\/elasticsearch,jprante\/elasticsearch,rajanm\/elasticsearch,djschny\/elasticsearch,KimTaehee\/elasticsearch,F0lha\/elasticsearch,clintongormley\/elasticsearch,fernandozhu\/elasticsearch,feiqitian\/elasticsearch,Siddartha07\/elasticsearch,nknize\/elasticsearch,nilabhsagar\/elasticsearch,episerver\/elasticsearch,kenshin233\/elasticsearch,kenshin233\/elasticsearch,wenpos\/elasticsearch,achow\/elasticsearch,nezirus\/elasticsearch,abibell\/elasticsearch,mjason3\/elasticsearch,rento19962\/elasticsearch,jango2015\/elasticsearch,amit-shar\/elasticsearch,mjhennig\/elasticsearch,koxa29\/elasticsearch,javachengwc\/elasticsearch,strapdata\/elassandra,njlawton\/elasticsearch,kingaj\/elasticsearch,ydsakyclguozi\/elasticsearch,zkidkid\/elasticsearch,MetSystem\/elasticsearch,huypx1292\/elasticsearch,Brijeshrpatel9\/elasticsearch,lmtwga\/elasticsearch,areek\/elasticsearch,mbrukman\/elasticsearch,strapdata\/elassandra-test,markharwood\/elasticsearch,djschny\/elasticsearch,IanvsPoplicola\/elasticsearch,yuy168\/elasticsearch,mcku\/elasticsearch,slavau\/elasticsearch,SergVro\/elasticsearch,clintongormley\/elasticsearch,wayeast\/elasticsearch,lzo\/elasticsearch-1,MichaelLiZhou\/elasticsearch,Shekharrajak\/elasticsearch,apepper\/elasticsearch,infusionsoft\/elasticsearch,markllama\/elasticsearch,springning\/elasticsearch,schonfeld\/elasticsearch,wimvds\/elasticsearch,btiernay\/elasticsearch,jaynblue\/elasticsearch,HarishAtGitHub\/elasticsearch,bestwpw\/elasticsearch,wuranbo\/elasticsearch,chirilo\/elasticsearch,pozhidaevak\/elasticsearch,yuy168\/elasticsearch,spiegela\/elasticsearch,ricardocerq\/elasticsearch,bestwpw\/elasticsearch,ydsakyclguozi\/elasticsearch,btiernay\/elasticsearch,kimimj\/elasticsearch,wittyameta\/elasticsearch,andrejserafim\/elasticsearch,andrejserafim\/elasticsearch,ThalaivaStars\/OrgRepo1,jimhooker2002\/elasticsearch,elasticdog\/elasticsearch,C-Bish\/elasticsearch,caengcjd\/elasticsearch,C-Bish\/elasticsearch,btiernay\/elasticsearch,ivansun1010\/elasticsearch,elancom\/elasticsearch,Charlesdong\/elasticsearch,tkssharma\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,polyfractal\/elasticsearch,shreejay\/elasticsearch,KimTaehee\/elasticsearch,glefloch\/elasticsearch,onegambler\/elasticsearch,kcompher\/elasticsearch,Liziyao\/elasticsearch,EasonYi\/elasticsearch,davidvgalbraith\/elasticsearch,hydro2k\/elasticsearch,loconsolutions\/elasticsearch,slavau\/elasticsearch,slavau\/elasticsearch,mikemccand\/elasticsearch,jw0201\/elastic,Shekharrajak\/elasticsearch,sdauletau\/elasticsearch,alexkuk\/elasticsearch,xpandan\/elasticsearch,mgalushka\/elasticsearch,mkis-\/elasticsearch,TonyChai24\/ESSource,pablocastro\/elasticsearch,achow\/elasticsearch,Widen\/elasticsearch,kubum\/elasticsearch,franklanganke\/elasticsearch,kunallimaye\/elasticsearch,diendt\/elasticsearch,Kakakakakku\/elasticsearch,mortonsykes\/elasticsearch,lks21c\/elasticsearch,aglne\/elasticsearch,weipinghe\/elasticsearch,naveenhooda2000\/elasticsearch,davidvgalbraith\/elasticsearch,jchampion\/elasticsearch,JackyMai\/elasticsearch,hanst\/elasticsearch,vvcephei\/elasticsearch,ESamir\/elasticsearch,btiernay\/elasticsearch,codebunt\/elasticsearch,MaineC\/elasticsearch,mgalushka\/elasticsearch,Fsero\/elasticsearch,mapr\/elasticsearch,ivansun1010\/elasticsearch,javachengwc\/elasticsearch,beiske\/elasticsearch,overcome\/elasticsearch,skearns64\/elasticsearch,umeshdangat\/elasticsearch,milodky\/elasticsearch,wbowling\/elasticsearch,lchennup\/elasticsearch,kcompher\/elasticsearch,s1monw\/elasticsearch,mmaracic\/elasticsearch,wittyameta\/elasticsearch,anti-social\/elasticsearch,huanzhong\/elasticsearch,pablocastro\/elasticsearch,Liziyao\/elasticsearch,markharwood\/elasticsearch,adrianbk\/elasticsearch,polyfractal\/elasticsearch,linglaiyao1314\/elasticsearch,MisterAndersen\/elasticsearch,PhaedrusTheGreek\/elasticsearch,dpursehouse\/elasticsearch,lks21c\/elasticsearch,PhaedrusTheGreek\/elasticsearch,camilojd\/elasticsearch,vrkansagara\/elasticsearch,skearns64\/elasticsearch,YosuaMichael\/elasticsearch,kalburgimanjunath\/elasticsearch,myelin\/elasticsearch,hirdesh2008\/elasticsearch,bawse\/elasticsearch,abibell\/elasticsearch,kalburgimanjunath\/elasticsearch,dpursehouse\/elasticsearch,gfyoung\/elasticsearch,masaruh\/elasticsearch,yongminxia\/elasticsearch,henakamaMSFT\/elasticsearch,ckclark\/elasticsearch,nazarewk\/elasticsearch,luiseduardohdbackup\/elasticsearch,ImpressTV\/elasticsearch,kubum\/elasticsearch,achow\/elasticsearch,petabytedata\/elasticsearch,tebriel\/elasticsearch,linglaiyao1314\/elasticsearch,sneivandt\/elasticsearch,drewr\/elasticsearch,socialrank\/elasticsearch,onegambler\/elasticsearch,schonfeld\/elasticsearch,feiqitian\/elasticsearch,18098924759\/elasticsearch,andrestc\/elasticsearch,adrianbk\/elasticsearch,LewayneNaidoo\/elasticsearch,infusionsoft\/elasticsearch,kimimj\/elasticsearch,knight1128\/elasticsearch,Shepard1212\/elasticsearch,golubev\/elasticsearch,tebriel\/elasticsearch,iacdingping\/elasticsearch,ricardocerq\/elasticsearch,amit-shar\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,JervyShi\/elasticsearch,lzo\/elasticsearch-1,gfyoung\/elasticsearch,aglne\/elasticsearch,markllama\/elasticsearch,mrorii\/elasticsearch,koxa29\/elasticsearch,KimTaehee\/elasticsearch,diendt\/elasticsearch,Flipkart\/elasticsearch,nknize\/elasticsearch,bestwpw\/elasticsearch,jimczi\/elasticsearch,overcome\/elasticsearch,apepper\/elasticsearch,fernandozhu\/elasticsearch,lydonchandra\/elasticsearch,hanswang\/elasticsearch,Charlesdong\/elasticsearch,Clairebi\/ElasticsearchClone,fernandozhu\/elasticsearch,LewayneNaidoo\/elasticsearch,jbertouch\/elasticsearch,pritishppai\/elasticsearch,zeroctu\/elasticsearch,xingguang2013\/elasticsearch,feiqitian\/elasticsearch,robin13\/elasticsearch,mnylen\/elasticsearch,EasonYi\/elasticsearch,vietlq\/elasticsearch,ZTE-PaaS\/elasticsearch,dataduke\/elasticsearch,linglaiyao1314\/elasticsearch,tkssharma\/elasticsearch,Rygbee\/elasticsearch,bestwpw\/elasticsearch,C-Bish\/elasticsearch,chirilo\/elasticsearch,jpountz\/elasticsearch,TonyChai24\/ESSource,karthikjaps\/elasticsearch,mm0\/elasticsearch,maddin2016\/elasticsearch,phani546\/elasticsearch,zeroctu\/elasticsearch,golubev\/elasticsearch,gingerwizard\/elasticsearch,himanshuag\/elasticsearch,Uiho\/elasticsearch,gfyoung\/elasticsearch,kubum\/elasticsearch,vingupta3\/elasticsearch,javachengwc\/elasticsearch,ulkas\/elasticsearch,vvcephei\/elasticsearch,xpandan\/elasticsearch,bestwpw\/elasticsearch,drewr\/elasticsearch,easonC\/elasticsearch,rento19962\/elasticsearch,elancom\/elasticsearch,mbrukman\/elasticsearch,beiske\/elasticsearch,alexshadow007\/elasticsearch,lchennup\/elasticsearch,zhiqinghuang\/elasticsearch,nknize\/elasticsearch,Liziyao\/elasticsearch,elancom\/elasticsearch,nellicus\/elasticsearch,Clairebi\/ElasticsearchClone,gmarz\/elasticsearch,henakamaMSFT\/elasticsearch,episerver\/elasticsearch,obourgain\/elasticsearch,lmtwga\/elasticsearch,thecocce\/elasticsearch,lzo\/elasticsearch-1,palecur\/elasticsearch,GlenRSmith\/elasticsearch,ivansun1010\/elasticsearch,umeshdangat\/elasticsearch,masterweb121\/elasticsearch,huanzhong\/elasticsearch,njlawton\/elasticsearch,winstonewert\/elasticsearch,Uiho\/elasticsearch,henakamaMSFT\/elasticsearch,schonfeld\/elasticsearch,rmuir\/elasticsearch,phani546\/elasticsearch,zhiqinghuang\/elasticsearch,mapr\/elasticsearch,yynil\/elasticsearch,ESamir\/elasticsearch,smflorentino\/elasticsearch,mapr\/elasticsearch,18098924759\/elasticsearch,jchampion\/elasticsearch,djschny\/elasticsearch,fforbeck\/elasticsearch,tebriel\/elasticsearch,umeshdangat\/elasticsearch,golubev\/elasticsearch,vrkansagara\/elasticsearch,xuzha\/elasticsearch,MisterAndersen\/elasticsearch,vroyer\/elassandra,rhoml\/elasticsearch,winstonewert\/elasticsearch,glefloch\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,wittyameta\/elasticsearch,rmuir\/elasticsearch,pablocastro\/elasticsearch,EasonYi\/elasticsearch,linglaiyao1314\/elasticsearch,jaynblue\/elasticsearch,lightslife\/elasticsearch,ricardocerq\/elasticsearch,Helen-Zhao\/elasticsearch,trangvh\/elasticsearch,milodky\/elasticsearch,queirozfcom\/elasticsearch,andrejserafim\/elasticsearch,overcome\/elasticsearch,humandb\/elasticsearch,LeoYao\/elasticsearch,lchennup\/elasticsearch,feiqitian\/elasticsearch,dongjoon-hyun\/elasticsearch,myelin\/elasticsearch,fred84\/elasticsearch,strapdata\/elassandra,mm0\/elasticsearch,himanshuag\/elasticsearch,dylan8902\/elasticsearch,F0lha\/elasticsearch,iacdingping\/elasticsearch,vrkansagara\/elasticsearch,TonyChai24\/ESSource,pablocastro\/elasticsearch,mjason3\/elasticsearch,rlugojr\/elasticsearch,kubum\/elasticsearch,brandonkearby\/elasticsearch,humandb\/elasticsearch,rajanm\/elasticsearch,khiraiwa\/elasticsearch,jimczi\/elasticsearch,wbowling\/elasticsearch,ulkas\/elasticsearch,tsohil\/elasticsearch,thecocce\/elasticsearch,nezirus\/elasticsearch,gingerwizard\/elasticsearch,iamjakob\/elasticsearch,overcome\/elasticsearch,Shekharrajak\/elasticsearch,mrorii\/elasticsearch,strapdata\/elassandra,dongjoon-hyun\/elasticsearch,bawse\/elasticsearch,markllama\/elasticsearch,socialrank\/elasticsearch,elancom\/elasticsearch,pablocastro\/elasticsearch,lightslife\/elasticsearch,yongminxia\/elasticsearch,lchennup\/elasticsearch,episerver\/elasticsearch,sarwarbhuiyan\/elasticsearch,girirajsharma\/elasticsearch,pozhidaevak\/elasticsearch,kingaj\/elasticsearch,Rygbee\/elasticsearch,jaynblue\/elasticsearch,skearns64\/elasticsearch,easonC\/elasticsearch,sarwarbhuiyan\/elasticsearch,wuranbo\/elasticsearch,glefloch\/elasticsearch,ivansun1010\/elasticsearch,zkidkid\/elasticsearch,jchampion\/elasticsearch,snikch\/elasticsearch,zeroctu\/elasticsearch,zhiqinghuang\/elasticsearch,areek\/elasticsearch,Brijeshrpatel9\/elasticsearch,Fsero\/elasticsearch,Uiho\/elasticsearch,KimTaehee\/elasticsearch,Flipkart\/elasticsearch,wbowling\/elasticsearch,fernandozhu\/elasticsearch,18098924759\/elasticsearch,yuy168\/elasticsearch,rhoml\/elasticsearch,humandb\/elasticsearch,kaneshin\/elasticsearch,ckclark\/elasticsearch,MichaelLiZhou\/elasticsearch,franklanganke\/elasticsearch,mute\/elasticsearch,truemped\/elasticsearch,onegambler\/elasticsearch,mmaracic\/elasticsearch,infusionsoft\/elasticsearch,huanzhong\/elasticsearch,MichaelLiZhou\/elasticsearch,mute\/elasticsearch,IanvsPoplicola\/elasticsearch,LewayneNaidoo\/elasticsearch,jango2015\/elasticsearch,phani546\/elasticsearch,humandb\/elasticsearch,gmarz\/elasticsearch,wayeast\/elasticsearch,robin13\/elasticsearch,jeteve\/elasticsearch,bestwpw\/elasticsearch,dpursehouse\/elasticsearch,fekaputra\/elasticsearch,petabytedata\/elasticsearch,ckclark\/elasticsearch,jaynblue\/elasticsearch,strapdata\/elassandra-test,pranavraman\/elasticsearch,djschny\/elasticsearch,scottsom\/elasticsearch,henakamaMSFT\/elasticsearch,rhoml\/elasticsearch,ouyangkongtong\/elasticsearch,karthikjaps\/elasticsearch,njlawton\/elasticsearch,EasonYi\/elasticsearch,StefanGor\/elasticsearch,ouyangkongtong\/elasticsearch,JervyShi\/elasticsearch,pranavraman\/elasticsearch,dpursehouse\/elasticsearch,KimTaehee\/elasticsearch,hydro2k\/elasticsearch,Stacey-Gammon\/elasticsearch,fekaputra\/elasticsearch,vietlq\/elasticsearch,Flipkart\/elasticsearch,alexkuk\/elasticsearch,onegambler\/elasticsearch,ydsakyclguozi\/elasticsearch,bawse\/elasticsearch,szroland\/elasticsearch,jbertouch\/elasticsearch,henakamaMSFT\/elasticsearch,jimhooker2002\/elasticsearch,sneivandt\/elasticsearch,franklanganke\/elasticsearch,liweinan0423\/elasticsearch,markwalkom\/elasticsearch,hafkensite\/elasticsearch,ckclark\/elasticsearch,davidvgalbraith\/elasticsearch,martinstuga\/elasticsearch,kaneshin\/elasticsearch,nilabhsagar\/elasticsearch,jbertouch\/elasticsearch,truemped\/elasticsearch,dataduke\/elasticsearch,Clairebi\/ElasticsearchClone,Collaborne\/elasticsearch,alexshadow007\/elasticsearch,Siddartha07\/elasticsearch,queirozfcom\/elasticsearch,Stacey-Gammon\/elasticsearch,vrkansagara\/elasticsearch,xpandan\/elasticsearch,weipinghe\/elasticsearch,artnowo\/elasticsearch,hafkensite\/elasticsearch,pritishppai\/elasticsearch,polyfractal\/elasticsearch,geidies\/elasticsearch,shreejay\/elasticsearch,hanswang\/elasticsearch,ESamir\/elasticsearch,lmtwga\/elasticsearch,hanst\/elasticsearch,feiqitian\/elasticsearch,umeshdangat\/elasticsearch,luiseduardohdbackup\/elasticsearch,humandb\/elasticsearch,yynil\/elasticsearch,wimvds\/elasticsearch,maddin2016\/elasticsearch,jpountz\/elasticsearch,easonC\/elasticsearch,Helen-Zhao\/elasticsearch,umeshdangat\/elasticsearch,nezirus\/elasticsearch,artnowo\/elasticsearch,ThalaivaStars\/OrgRepo1,thecocce\/elasticsearch,weipinghe\/elasticsearch,huypx1292\/elasticsearch,Helen-Zhao\/elasticsearch,yanjunh\/elasticsearch,HarishAtGitHub\/elasticsearch,fred84\/elasticsearch,YosuaMichael\/elasticsearch,MaineC\/elasticsearch,fooljohnny\/elasticsearch,fooljohnny\/elasticsearch,ThalaivaStars\/OrgRepo1,Chhunlong\/elasticsearch,lks21c\/elasticsearch,dylan8902\/elasticsearch,markllama\/elasticsearch,coding0011\/elasticsearch,shreejay\/elasticsearch,rento19962\/elasticsearch,Shepard1212\/elasticsearch,socialrank\/elasticsearch,jeteve\/elasticsearch,abibell\/elasticsearch,nellicus\/elasticsearch,Ansh90\/elasticsearch,uschindler\/elasticsearch,polyfractal\/elasticsearch,kaneshin\/elasticsearch,iantruslove\/elasticsearch,palecur\/elasticsearch,mjason3\/elasticsearch,YosuaMichael\/elasticsearch,Shepard1212\/elasticsearch,tahaemin\/elasticsearch,kalburgimanjunath\/elasticsearch,MjAbuz\/elasticsearch,masterweb121\/elasticsearch,Charlesdong\/elasticsearch,jimhooker2002\/elasticsearch,nknize\/elasticsearch,wenpos\/elasticsearch,MisterAndersen\/elasticsearch,qwerty4030\/elasticsearch,chirilo\/elasticsearch,Widen\/elasticsearch,JSCooke\/elasticsearch,amaliujia\/elasticsearch,hanst\/elasticsearch,strapdata\/elassandra5-rc,markharwood\/elasticsearch,tkssharma\/elasticsearch,fekaputra\/elasticsearch,sarwarbhuiyan\/elasticsearch,girirajsharma\/elasticsearch,PhaedrusTheGreek\/elasticsearch,drewr\/elasticsearch,easonC\/elasticsearch,xingguang2013\/elasticsearch,Uiho\/elasticsearch,lzo\/elasticsearch-1,Charlesdong\/elasticsearch,jango2015\/elasticsearch,anti-social\/elasticsearch,strapdata\/elassandra5-rc,lightslife\/elasticsearch,zhiqinghuang\/elasticsearch,qwerty4030\/elasticsearch,sc0ttkclark\/elasticsearch,jbertouch\/elasticsearch,masterweb121\/elasticsearch,obourgain\/elasticsearch,kenshin233\/elasticsearch,cnfire\/elasticsearch-1,kalburgimanjunath\/elasticsearch,sauravmondallive\/elasticsearch,tsohil\/elasticsearch,loconsolutions\/elasticsearch,caengcjd\/elasticsearch,markllama\/elasticsearch,Brijeshrpatel9\/elasticsearch,javachengwc\/elasticsearch,girirajsharma\/elasticsearch,IanvsPoplicola\/elasticsearch,pranavraman\/elasticsearch,djschny\/elasticsearch,AshishThakur\/elasticsearch,s1monw\/elasticsearch,Ansh90\/elasticsearch,vrkansagara\/elasticsearch,scottsom\/elasticsearch,wittyameta\/elasticsearch,kevinkluge\/elasticsearch,hydro2k\/elasticsearch,geidies\/elasticsearch,rajanm\/elasticsearch,mrorii\/elasticsearch,tkssharma\/elasticsearch,JSCooke\/elasticsearch,njlawton\/elasticsearch,fekaputra\/elasticsearch,Liziyao\/elasticsearch,zhiqinghuang\/elasticsearch,tsohil\/elasticsearch,kimimj\/elasticsearch,milodky\/elasticsearch,HarishAtGitHub\/elasticsearch,kevinkluge\/elasticsearch,springning\/elasticsearch,hafkensite\/elasticsearch,mortonsykes\/elasticsearch,gmarz\/elasticsearch,MjAbuz\/elasticsearch,sdauletau\/elasticsearch,huypx1292\/elasticsearch,hanswang\/elasticsearch,sposam\/elasticsearch,Kakakakakku\/elasticsearch,vroyer\/elassandra,alexkuk\/elasticsearch,kingaj\/elasticsearch,dongjoon-hyun\/elasticsearch,alexkuk\/elasticsearch,kcompher\/elasticsearch,zkidkid\/elasticsearch,artnowo\/elasticsearch,szroland\/elasticsearch,pranavraman\/elasticsearch,ImpressTV\/elasticsearch,coding0011\/elasticsearch,iamjakob\/elasticsearch,hirdesh2008\/elasticsearch,anti-social\/elasticsearch,dataduke\/elasticsearch,maddin2016\/elasticsearch,sauravmondallive\/elasticsearch,wimvds\/elasticsearch,ImpressTV\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,nrkkalyan\/elasticsearch,sdauletau\/elasticsearch,LeoYao\/elasticsearch,mgalushka\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,bawse\/elasticsearch,Charlesdong\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,ThalaivaStars\/OrgRepo1,dataduke\/elasticsearch,PhaedrusTheGreek\/elasticsearch,mortonsykes\/elasticsearch,alexkuk\/elasticsearch,alexshadow007\/elasticsearch,alexbrasetvik\/elasticsearch,mute\/elasticsearch,beiske\/elasticsearch,elasticdog\/elasticsearch,ZTE-PaaS\/elasticsearch,a2lin\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,karthikjaps\/elasticsearch,lydonchandra\/elasticsearch,andrestc\/elasticsearch,rmuir\/elasticsearch,pritishppai\/elasticsearch,feiqitian\/elasticsearch,lightslife\/elasticsearch,tkssharma\/elasticsearch,hanswang\/elasticsearch,brandonkearby\/elasticsearch,Fsero\/elasticsearch,markwalkom\/elasticsearch,palecur\/elasticsearch,ckclark\/elasticsearch,luiseduardohdbackup\/elasticsearch,kimimj\/elasticsearch,karthikjaps\/elasticsearch,hafkensite\/elasticsearch,kaneshin\/elasticsearch,yongminxia\/elasticsearch,xpandan\/elasticsearch,diendt\/elasticsearch,kaneshin\/elasticsearch,aglne\/elasticsearch,AshishThakur\/elasticsearch,luiseduardohdbackup\/elasticsearch,zeroctu\/elasticsearch,vrkansagara\/elasticsearch,KimTaehee\/elasticsearch,LewayneNaidoo\/elasticsearch,MetSystem\/elasticsearch,martinstuga\/elasticsearch,yynil\/elasticsearch,ulkas\/elasticsearch,mmaracic\/elasticsearch,sc0ttkclark\/elasticsearch,xuzha\/elasticsearch,Chhunlong\/elasticsearch,iacdingping\/elasticsearch,himanshuag\/elasticsearch,loconsolutions\/elasticsearch,kimimj\/elasticsearch,kaneshin\/elasticsearch,mapr\/elasticsearch,camilojd\/elasticsearch,huanzhong\/elasticsearch,apepper\/elasticsearch,xingguang2013\/elasticsearch,smflorentino\/elasticsearch,zhiqinghuang\/elasticsearch,easonC\/elasticsearch,drewr\/elasticsearch,ouyangkongtong\/elasticsearch,mkis-\/elasticsearch,yuy168\/elasticsearch,alexbrasetvik\/elasticsearch,awislowski\/elasticsearch,kalburgimanjunath\/elasticsearch,s1monw\/elasticsearch,elasticdog\/elasticsearch,geidies\/elasticsearch,jbertouch\/elasticsearch,nomoa\/elasticsearch,Shekharrajak\/elasticsearch,karthikjaps\/elasticsearch,mcku\/elasticsearch,areek\/elasticsearch,yuy168\/elasticsearch,snikch\/elasticsearch,Brijeshrpatel9\/elasticsearch,huypx1292\/elasticsearch,JervyShi\/elasticsearch,Rygbee\/elasticsearch,mohit\/elasticsearch,kenshin233\/elasticsearch,Stacey-Gammon\/elasticsearch,wbowling\/elasticsearch,javachengwc\/elasticsearch,mikemccand\/elasticsearch,alexbrasetvik\/elasticsearch,easonC\/elasticsearch,sreeramjayan\/elasticsearch,sneivandt\/elasticsearch,s1monw\/elasticsearch,golubev\/elasticsearch,xpandan\/elasticsearch,tebriel\/elasticsearch,a2lin\/elasticsearch,scorpionvicky\/elasticsearch,lightslife\/elasticsearch,spiegela\/elasticsearch,hechunwen\/elasticsearch,amaliujia\/elasticsearch,qwerty4030\/elasticsearch,strapdata\/elassandra-test,likaiwalkman\/elasticsearch,SergVro\/elasticsearch,F0lha\/elasticsearch,jsgao0\/elasticsearch,kalburgimanjunath\/elasticsearch,yanjunh\/elasticsearch,strapdata\/elassandra-test,lydonchandra\/elasticsearch,fred84\/elasticsearch,markllama\/elasticsearch,schonfeld\/elasticsearch,weipinghe\/elasticsearch,adrianbk\/elasticsearch,socialrank\/elasticsearch,naveenhooda2000\/elasticsearch,adrianbk\/elasticsearch,polyfractal\/elasticsearch,LeoYao\/elasticsearch,masaruh\/elasticsearch,sreeramjayan\/elasticsearch,truemped\/elasticsearch,socialrank\/elasticsearch,camilojd\/elasticsearch,tsohil\/elasticsearch,kalimatas\/elasticsearch,queirozfcom\/elasticsearch,nknize\/elasticsearch,liweinan0423\/elasticsearch,andrestc\/elasticsearch,codebunt\/elasticsearch,codebunt\/elasticsearch,vingupta3\/elasticsearch,uschindler\/elasticsearch,kunallimaye\/elasticsearch,kevinkluge\/elasticsearch,sdauletau\/elasticsearch,lydonchandra\/elasticsearch,Collaborne\/elasticsearch,apepper\/elasticsearch,EasonYi\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,ulkas\/elasticsearch,adrianbk\/elasticsearch,dataduke\/elasticsearch,franklanganke\/elasticsearch,robin13\/elasticsearch,mcku\/elasticsearch,ZTE-PaaS\/elasticsearch,ydsakyclguozi\/elasticsearch,ydsakyclguozi\/elasticsearch,jprante\/elasticsearch,rmuir\/elasticsearch,Uiho\/elasticsearch,jeteve\/elasticsearch,mikemccand\/elasticsearch,uschindler\/elasticsearch,abibell\/elasticsearch,bestwpw\/elasticsearch,jchampion\/elasticsearch,iacdingping\/elasticsearch,ThalaivaStars\/OrgRepo1,nomoa\/elasticsearch,fekaputra\/elasticsearch,btiernay\/elasticsearch,acchen97\/elasticsearch,andrejserafim\/elasticsearch,cnfire\/elasticsearch-1,shreejay\/elasticsearch,iacdingping\/elasticsearch,slavau\/elasticsearch,nomoa\/elasticsearch,YosuaMichael\/elasticsearch,yanjunh\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,LeoYao\/elasticsearch,pozhidaevak\/elasticsearch,acchen97\/elasticsearch,snikch\/elasticsearch,Flipkart\/elasticsearch,fforbeck\/elasticsearch,mjhennig\/elasticsearch,Siddartha07\/elasticsearch,amit-shar\/elasticsearch,JackyMai\/elasticsearch,lightslife\/elasticsearch,rajanm\/elasticsearch,golubev\/elasticsearch,wayeast\/elasticsearch,markwalkom\/elasticsearch,girirajsharma\/elasticsearch,spiegela\/elasticsearch,wayeast\/elasticsearch,MetSystem\/elasticsearch,vietlq\/elasticsearch,karthikjaps\/elasticsearch,petabytedata\/elasticsearch,LeoYao\/elasticsearch,Rygbee\/elasticsearch,jchampion\/elasticsearch,obourgain\/elasticsearch,fooljohnny\/elasticsearch,avikurapati\/elasticsearch,awislowski\/elasticsearch,Kakakakakku\/elasticsearch,kevinkluge\/elasticsearch,Liziyao\/elasticsearch,clintongormley\/elasticsearch,lightslife\/elasticsearch,cnfire\/elasticsearch-1,tkssharma\/elasticsearch,hafkensite\/elasticsearch,F0lha\/elasticsearch,tebriel\/elasticsearch,martinstuga\/elasticsearch,khiraiwa\/elasticsearch,winstonewert\/elasticsearch,mbrukman\/elasticsearch,NBSW\/elasticsearch,andrestc\/elasticsearch,truemped\/elasticsearch,mnylen\/elasticsearch,linglaiyao1314\/elasticsearch,JSCooke\/elasticsearch,wittyameta\/elasticsearch,cnfire\/elasticsearch-1,hydro2k\/elasticsearch,ouyangkongtong\/elasticsearch,masterweb121\/elasticsearch,vvcephei\/elasticsearch,thecocce\/elasticsearch,weipinghe\/elasticsearch,dylan8902\/elasticsearch,humandb\/elasticsearch,mrorii\/elasticsearch,jimczi\/elasticsearch,cnfire\/elasticsearch-1,ouyangkongtong\/elasticsearch,tahaemin\/elasticsearch,markharwood\/elasticsearch,phani546\/elasticsearch,pablocastro\/elasticsearch,aglne\/elasticsearch,acchen97\/elasticsearch,tebriel\/elasticsearch,gingerwizard\/elasticsearch,snikch\/elasticsearch,yynil\/elasticsearch,strapdata\/elassandra-test,thecocce\/elasticsearch,springning\/elasticsearch,sauravmondallive\/elasticsearch,mortonsykes\/elasticsearch,wuranbo\/elasticsearch,ricardocerq\/elasticsearch,MetSystem\/elasticsearch,winstonewert\/elasticsearch,mjhennig\/elasticsearch,nellicus\/elasticsearch,nazarewk\/elasticsearch,ImpressTV\/elasticsearch,mapr\/elasticsearch,KimTaehee\/elasticsearch,andrestc\/elasticsearch,tahaemin\/elasticsearch,wangtuo\/elasticsearch,awislowski\/elasticsearch,skearns64\/elasticsearch,jango2015\/elasticsearch,dataduke\/elasticsearch,MichaelLiZhou\/elasticsearch,jeteve\/elasticsearch,snikch\/elasticsearch,mm0\/elasticsearch,ImpressTV\/elasticsearch,amaliujia\/elasticsearch,gfyoung\/elasticsearch,artnowo\/elasticsearch,socialrank\/elasticsearch,himanshuag\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,achow\/elasticsearch,gingerwizard\/elasticsearch,milodky\/elasticsearch,kimimj\/elasticsearch,cnfire\/elasticsearch-1,xuzha\/elasticsearch,brandonkearby\/elasticsearch,amaliujia\/elasticsearch,mute\/elasticsearch,mnylen\/elasticsearch,martinstuga\/elasticsearch,likaiwalkman\/elasticsearch,mohit\/elasticsearch,huanzhong\/elasticsearch,rmuir\/elasticsearch,hafkensite\/elasticsearch,gmarz\/elasticsearch,mikemccand\/elasticsearch,a2lin\/elasticsearch,YosuaMichael\/elasticsearch,wayeast\/elasticsearch,huanzhong\/elasticsearch,kalimatas\/elasticsearch,iantruslove\/elasticsearch,tahaemin\/elasticsearch,mjhennig\/elasticsearch,kcompher\/elasticsearch,vingupta3\/elasticsearch,likaiwalkman\/elasticsearch,phani546\/elasticsearch,queirozfcom\/elasticsearch,andrejserafim\/elasticsearch,C-Bish\/elasticsearch,pozhidaevak\/elasticsearch,markharwood\/elasticsearch,ivansun1010\/elasticsearch,sauravmondallive\/elasticsearch,nrkkalyan\/elasticsearch,hanst\/elasticsearch,jsgao0\/elasticsearch,drewr\/elasticsearch,huypx1292\/elasticsearch,scottsom\/elasticsearch,yanjunh\/elasticsearch,areek\/elasticsearch,mm0\/elasticsearch,awislowski\/elasticsearch,vingupta3\/elasticsearch,Brijeshrpatel9\/elasticsearch,camilojd\/elasticsearch,markwalkom\/elasticsearch,acchen97\/elasticsearch,Clairebi\/ElasticsearchClone,nellicus\/elasticsearch,pranavraman\/elasticsearch,dataduke\/elasticsearch,koxa29\/elasticsearch,loconsolutions\/elasticsearch,acchen97\/elasticsearch,abibell\/elasticsearch,kevinkluge\/elasticsearch,elasticdog\/elasticsearch,camilojd\/elasticsearch,18098924759\/elasticsearch,thecocce\/elasticsearch,pranavraman\/elasticsearch,diendt\/elasticsearch,avikurapati\/elasticsearch,jpountz\/elasticsearch,ZTE-PaaS\/elasticsearch,aglne\/elasticsearch,cnfire\/elasticsearch-1,clintongormley\/elasticsearch,amit-shar\/elasticsearch,kimimj\/elasticsearch,jchampion\/elasticsearch,xingguang2013\/elasticsearch,Widen\/elasticsearch,iamjakob\/elasticsearch,slavau\/elasticsearch,avikurapati\/elasticsearch,kevinkluge\/elasticsearch,vroyer\/elassandra,kevinkluge\/elasticsearch,robin13\/elasticsearch,caengcjd\/elasticsearch,wuranbo\/elasticsearch,humandb\/elasticsearch,jprante\/elasticsearch,HarishAtGitHub\/elasticsearch,wimvds\/elasticsearch,zhiqinghuang\/elasticsearch,sposam\/elasticsearch,mgalushka\/elasticsearch,fooljohnny\/elasticsearch,mute\/elasticsearch,wbowling\/elasticsearch,drewr\/elasticsearch,diendt\/elasticsearch,yynil\/elasticsearch,snikch\/elasticsearch,chirilo\/elasticsearch,StefanGor\/elasticsearch,pritishppai\/elasticsearch,kubum\/elasticsearch,diendt\/elasticsearch,trangvh\/elasticsearch,vietlq\/elasticsearch,hafkensite\/elasticsearch,MichaelLiZhou\/elasticsearch,btiernay\/elasticsearch,Siddartha07\/elasticsearch,wimvds\/elasticsearch,zeroctu\/elasticsearch,kunallimaye\/elasticsearch,knight1128\/elasticsearch,masterweb121\/elasticsearch,HarishAtGitHub\/elasticsearch,vingupta3\/elasticsearch,knight1128\/elasticsearch,xuzha\/elasticsearch,weipinghe\/elasticsearch,AndreKR\/elasticsearch,sposam\/elasticsearch,HarishAtGitHub\/elasticsearch,javachengwc\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,episerver\/elasticsearch,andrestc\/elasticsearch,truemped\/elasticsearch,camilojd\/elasticsearch,lydonchandra\/elasticsearch,Clairebi\/ElasticsearchClone,loconsolutions\/elasticsearch,hechunwen\/elasticsearch,GlenRSmith\/elasticsearch,F0lha\/elasticsearch,alexbrasetvik\/elasticsearch,apepper\/elasticsearch,anti-social\/elasticsearch,wittyameta\/elasticsearch,vvcephei\/elasticsearch,rhoml\/elasticsearch,MisterAndersen\/elasticsearch,khiraiwa\/elasticsearch,jango2015\/elasticsearch,jw0201\/elastic,pranavraman\/elasticsearch,caengcjd\/elasticsearch,rlugojr\/elasticsearch,sdauletau\/elasticsearch,apepper\/elasticsearch,TonyChai24\/ESSource,knight1128\/elasticsearch,wenpos\/elasticsearch,huanzhong\/elasticsearch,sreeramjayan\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,naveenhooda2000\/elasticsearch,nazarewk\/elasticsearch,vietlq\/elasticsearch,i-am-Nathan\/elasticsearch,springning\/elasticsearch,mmaracic\/elasticsearch,vietlq\/elasticsearch,mute\/elasticsearch,spiegela\/elasticsearch,knight1128\/elasticsearch,amit-shar\/elasticsearch,tsohil\/elasticsearch,vroyer\/elasticassandra,PhaedrusTheGreek\/elasticsearch,mute\/elasticsearch,nrkkalyan\/elasticsearch,kunallimaye\/elasticsearch,clintongormley\/elasticsearch,smflorentino\/elasticsearch,scorpionvicky\/elasticsearch,AndreKR\/elasticsearch,achow\/elasticsearch,iantruslove\/elasticsearch,kenshin233\/elasticsearch,alexbrasetvik\/elasticsearch,naveenhooda2000\/elasticsearch,sreeramjayan\/elasticsearch,mohit\/elasticsearch,hirdesh2008\/elasticsearch,nilabhsagar\/elasticsearch,queirozfcom\/elasticsearch,xingguang2013\/elasticsearch,JackyMai\/elasticsearch,NBSW\/elasticsearch,Widen\/elasticsearch,trangvh\/elasticsearch,djschny\/elasticsearch,palecur\/elasticsearch,Kakakakakku\/elasticsearch,elasticdog\/elasticsearch,mgalushka\/elasticsearch,girirajsharma\/elasticsearch,khiraiwa\/elasticsearch,mcku\/elasticsearch,mjason3\/elasticsearch,mm0\/elasticsearch,YosuaMichael\/elasticsearch,SergVro\/elasticsearch,sc0ttkclark\/elasticsearch,loconsolutions\/elasticsearch,TonyChai24\/ESSource,petabytedata\/elasticsearch,jprante\/elasticsearch,geidies\/elasticsearch,masterweb121\/elasticsearch,ulkas\/elasticsearch,phani546\/elasticsearch,glefloch\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,onegambler\/elasticsearch,elancom\/elasticsearch,ImpressTV\/elasticsearch,zeroctu\/elasticsearch,HonzaKral\/elasticsearch,achow\/elasticsearch,GlenRSmith\/elasticsearch,andrejserafim\/elasticsearch,jimhooker2002\/elasticsearch,glefloch\/elasticsearch,JervyShi\/elasticsearch,rlugojr\/elasticsearch,yongminxia\/elasticsearch,luiseduardohdbackup\/elasticsearch,nomoa\/elasticsearch,myelin\/elasticsearch,jimczi\/elasticsearch,rhoml\/elasticsearch,mohit\/elasticsearch,SergVro\/elasticsearch,springning\/elasticsearch,Flipkart\/elasticsearch,drewr\/elasticsearch,mbrukman\/elasticsearch,vroyer\/elasticassandra,nellicus\/elasticsearch,liweinan0423\/elasticsearch,kcompher\/elasticsearch,jsgao0\/elasticsearch,Stacey-Gammon\/elasticsearch,fooljohnny\/elasticsearch,mkis-\/elasticsearch,MichaelLiZhou\/elasticsearch,caengcjd\/elasticsearch,jpountz\/elasticsearch,HonzaKral\/elasticsearch,anti-social\/elasticsearch,knight1128\/elasticsearch,obourgain\/elasticsearch,rento19962\/elasticsearch,ESamir\/elasticsearch,tkssharma\/elasticsearch,jimhooker2002\/elasticsearch,huypx1292\/elasticsearch,IanvsPoplicola\/elasticsearch,fforbeck\/elasticsearch,hanswang\/elasticsearch,anti-social\/elasticsearch,PhaedrusTheGreek\/elasticsearch,davidvgalbraith\/elasticsearch,geidies\/elasticsearch,vvcephei\/elasticsearch,NBSW\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mnylen\/elasticsearch,schonfeld\/elasticsearch,iamjakob\/elasticsearch,ZTE-PaaS\/elasticsearch,brandonkearby\/elasticsearch,wuranbo\/elasticsearch,JervyShi\/elasticsearch,luiseduardohdbackup\/elasticsearch,dylan8902\/elasticsearch,kenshin233\/elasticsearch,szroland\/elasticsearch,nrkkalyan\/elasticsearch,strapdata\/elassandra-test,andrestc\/elasticsearch,kalimatas\/elasticsearch,nilabhsagar\/elasticsearch,ckclark\/elasticsearch,ESamir\/elasticsearch,golubev\/elasticsearch,nilabhsagar\/elasticsearch,JervyShi\/elasticsearch,springning\/elasticsearch,iantruslove\/elasticsearch,overcome\/elasticsearch,likaiwalkman\/elasticsearch,sreeramjayan\/elasticsearch,geidies\/elasticsearch,areek\/elasticsearch,masaruh\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,scorpionvicky\/elasticsearch,iacdingping\/elasticsearch,Collaborne\/elasticsearch,truemped\/elasticsearch,sarwarbhuiyan\/elasticsearch,abibell\/elasticsearch,dylan8902\/elasticsearch,gingerwizard\/elasticsearch,MjAbuz\/elasticsearch,EasonYi\/elasticsearch,girirajsharma\/elasticsearch,trangvh\/elasticsearch,rajanm\/elasticsearch,kcompher\/elasticsearch,mmaracic\/elasticsearch,Shekharrajak\/elasticsearch,rhoml\/elasticsearch,springning\/elasticsearch,palecur\/elasticsearch,knight1128\/elasticsearch,Widen\/elasticsearch,strapdata\/elassandra,mrorii\/elasticsearch,Shekharrajak\/elasticsearch,infusionsoft\/elasticsearch,episerver\/elasticsearch,hechunwen\/elasticsearch,sneivandt\/elasticsearch,codebunt\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,nrkkalyan\/elasticsearch,lchennup\/elasticsearch,markwalkom\/elasticsearch,alexshadow007\/elasticsearch,StefanGor\/elasticsearch,robin13\/elasticsearch,coding0011\/elasticsearch,wangtuo\/elasticsearch,jprante\/elasticsearch,wbowling\/elasticsearch,yongminxia\/elasticsearch,fred84\/elasticsearch,jw0201\/elastic,a2lin\/elasticsearch,elancom\/elasticsearch,gmarz\/elasticsearch,adrianbk\/elasticsearch,Clairebi\/ElasticsearchClone,fernandozhu\/elasticsearch,himanshuag\/elasticsearch,petabytedata\/elasticsearch,jeteve\/elasticsearch,yongminxia\/elasticsearch,ricardocerq\/elasticsearch,jimhooker2002\/elasticsearch,wimvds\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,caengcjd\/elasticsearch,vroyer\/elasticassandra,mcku\/elasticsearch,dylan8902\/elasticsearch,sposam\/elasticsearch,mjhennig\/elasticsearch,Uiho\/elasticsearch,mkis-\/elasticsearch,AndreKR\/elasticsearch,lks21c\/elasticsearch,infusionsoft\/elasticsearch,jango2015\/elasticsearch,jpountz\/elasticsearch,strapdata\/elassandra5-rc,hanst\/elasticsearch,lmtwga\/elasticsearch,kingaj\/elasticsearch,qwerty4030\/elasticsearch,JackyMai\/elasticsearch,iamjakob\/elasticsearch,myelin\/elasticsearch,khiraiwa\/elasticsearch,dylan8902\/elasticsearch,MjAbuz\/elasticsearch,likaiwalkman\/elasticsearch,Fsero\/elasticsearch,chirilo\/elasticsearch,AndreKR\/elasticsearch,petabytedata\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,shreejay\/elasticsearch,Flipkart\/elasticsearch,slavau\/elasticsearch,ESamir\/elasticsearch,szroland\/elasticsearch,wayeast\/elasticsearch,vietlq\/elasticsearch,Brijeshrpatel9\/elasticsearch,jango2015\/elasticsearch,Fsero\/elasticsearch,vingupta3\/elasticsearch,lmtwga\/elasticsearch,awislowski\/elasticsearch,smflorentino\/elasticsearch,Kakakakakku\/elasticsearch,MaineC\/elasticsearch,mcku\/elasticsearch,NBSW\/elasticsearch,aglne\/elasticsearch,tahaemin\/elasticsearch,mnylen\/elasticsearch,hechunwen\/elasticsearch,wenpos\/elasticsearch,tahaemin\/elasticsearch,wimvds\/elasticsearch,vvcephei\/elasticsearch,artnowo\/elasticsearch,onegambler\/elasticsearch,franklanganke\/elasticsearch,mmaracic\/elasticsearch,ouyangkongtong\/elasticsearch,likaiwalkman\/elasticsearch,masterweb121\/elasticsearch,koxa29\/elasticsearch,kalimatas\/elasticsearch,Kakakakakku\/elasticsearch,scottsom\/elasticsearch,strapdata\/elassandra5-rc,Siddartha07\/elasticsearch,obourgain\/elasticsearch,petabytedata\/elasticsearch,njlawton\/elasticsearch,karthikjaps\/elasticsearch,iantruslove\/elasticsearch,nezirus\/elasticsearch,jw0201\/elastic,avikurapati\/elasticsearch,davidvgalbraith\/elasticsearch,skearns64\/elasticsearch,sneivandt\/elasticsearch,jsgao0\/elasticsearch,hanswang\/elasticsearch,mcku\/elasticsearch,franklanganke\/elasticsearch,gingerwizard\/elasticsearch,F0lha\/elasticsearch,fred84\/elasticsearch,ThalaivaStars\/OrgRepo1,kingaj\/elasticsearch,YosuaMichael\/elasticsearch,cwurm\/elasticsearch,dpursehouse\/elasticsearch,18098924759\/elasticsearch,MetSystem\/elasticsearch,mm0\/elasticsearch,smflorentino\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,hydro2k\/elasticsearch,nazarewk\/elasticsearch,acchen97\/elasticsearch,strapdata\/elassandra-test,slavau\/elasticsearch,MetSystem\/elasticsearch,sreeramjayan\/elasticsearch,lzo\/elasticsearch-1,Liziyao\/elasticsearch,abibell\/elasticsearch,markllama\/elasticsearch,weipinghe\/elasticsearch,jaynblue\/elasticsearch,Uiho\/elasticsearch,sauravmondallive\/elasticsearch,himanshuag\/elasticsearch,xuzha\/elasticsearch,beiske\/elasticsearch,queirozfcom\/elasticsearch,nomoa\/elasticsearch,schonfeld\/elasticsearch,coding0011\/elasticsearch,nezirus\/elasticsearch,avikurapati\/elasticsearch,hirdesh2008\/elasticsearch,szroland\/elasticsearch,iantruslove\/elasticsearch,mjhennig\/elasticsearch,mgalushka\/elasticsearch,fekaputra\/elasticsearch,Ansh90\/elasticsearch,zeroctu\/elasticsearch"} {"commit":"f5695d65c67672dcee4559732aec8af766464303","old_file":"docs\/bryn.adoc","new_file":"docs\/bryn.adoc","old_contents":"= Configuration notes: bryn.justinwflory.com\n\nConfiguration or changelog notes for Bryn.\n\n\n== Firewall\n\n* *Services*:\n** SSH (22)\n** HTTP (80)\n** DNS (52)\n** HTTPS (443)\n** MySQL\n* *Ports*:\n** `8086\/tcp`: InfluxDB\n** `60597\/udp`: Mosh\n\n\n== XenForo\n\n* `sitemaps\/` and `temp\/` must have 0777 permissions…\n** `temp\/` is for the image proxy\n","new_contents":"= Configuration notes: bryn.justinwflory.com\n\nConfiguration or changelog notes for Bryn.\n\n\n== Firewall\n\n* *Services*:\n** SSH (22)\n** HTTP (80)\n** DNS (52)\n** HTTPS (443)\n** MySQL\n* *Ports*:\n** `8086\/tcp`: InfluxDB\n** `60597\/udp`: Mosh\n\n\n== WordPress\n\n=== wp_cli cannot upgrade WordPress because another update is in progress\n\n`wp option get core_updater.lock`::\nCheck if WordPress is holding a version lock.\nIf a number is returned, the version lock is on.\n\n`wp option delete core_updater.lock`::\nBreak a version lock on WordPress.\nVerify an update is NOT in progress before deleting (check processes, visit admin panel).\n\nhttps:\/\/wordpress.stackexchange.com\/questions\/224989\/get-rid-of-another-update-is-currently-in-progress[Reference]\n\n\n== XenForo\n\n* `sitemaps\/` and `temp\/` must have 0777 permissions…\n** `temp\/` is for the image proxy\n","subject":"Add wp_cli update in progress scenario to logbook","message":"Add wp_cli update in progress scenario to logbook\n","lang":"AsciiDoc","license":"mpl-2.0","repos":"jflory7\/infrastructure,jflory7\/infrastructure"} {"commit":"421d2ed6a5db02a6c7e590602fcbee5b58773e05","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= beeLīn Java \/ JVM\n\nThis is the start of a DNSChain client for the JVM.\n\n== Install Prerequisites\n\nMake sure you have JDK 7 or later installed.\n\nWARNING: **beeLin-java** is using HTTPS to query the DNSChain server at https:\/\/api.dnschain.net[api.dnschain.net] which uses a https:\/\/cert.startcom.org[StartCom] SSL certificate. By default, Java installations do not trust the StartCom certificate authority and your HTTPS connection to `api.dnschain.net` may fail. For more detail and instructions on how to install the StartCom certificate in your JDK\/JRE see http:\/\/wernerstrydom.com\/2014\/01\/14\/installing-startcom-certificate-authority-certificates-java\/[Installing StartCom Certificate Authority Certificates in Java].\n\n== Build and run tests\n\n .\/gradlew build\n\nYou can view the test results in `beelinj-lib\/build\/reports\/tests\/index.html`\n\nOf course you probably want to install https:\/\/www.jetbrains.com\/idea\/download\/[IntelliJ IDEA] to do this.\n\n","new_contents":"= beeLīn Java \/ JVM\n\nThis is the start of a DNSChain client for the JVM.\n\n== Install Prerequisites\n\nMake sure you have JDK 7 or later installed.\n\nWARNING: **beeLin-java** is using HTTPS to query the DNSChain server at https:\/\/api.dnschain.net[api.dnschain.net] which uses a https:\/\/cert.startcom.org[StartCom] SSL certificate. By default, Java installations do not trust the StartCom certificate authority and your HTTPS connection to `api.dnschain.net` may fail. For more detail and instructions on how to install the StartCom certificate in your JDK\/JRE see http:\/\/wernerstrydom.com\/2014\/01\/14\/installing-startcom-certificate-authority-certificates-java\/[Installing StartCom Certificate Authority Certificates in Java].\n\n== Build and run tests\n\n .\/gradlew build\n\nYou can view the test results in `beelinj-lib\/build\/reports\/tests\/index.html`\n\nOf course you probably want to install https:\/\/www.jetbrains.com\/idea\/download\/[IntelliJ IDEA] to do this.\n\n== Build and run the bare-bones browser\n\n .\/gradlew :beelinj-browser-fx:run\n\n\n","subject":"Add how to run the browser via Gradle.","message":"Add how to run the browser via Gradle.","lang":"AsciiDoc","license":"apache-2.0","repos":"beeLin\/beeLin-java"} {"commit":"9b39eb5310bc5c9368fece33ae1c6a2df9451644","old_file":"06-installer\/README.adoc","new_file":"06-installer\/README.adoc","old_contents":"= Installers\n\n:toc:\n:toc-placement!:\n\ntoc::[]\n\n[[intro]]\nIntroduction\n------------\n\nCMake has the ability to create installers for multiple platforms using a program\ncalled link:https:\/\/cmake.org\/Wiki\/CMake:CPackPackageGenerators[CPack].\nCPack includes the ability to create Linux RPM, deb and gzip distributions\n of both binaries and source code. It also includes teh ability to create NSIS files for Microsoft Windows.\n","new_contents":"= Installers\n\n:toc:\n:toc-placement!:\n\ntoc::[]\n\n[[intro]]\nIntroduction\n------------\n\nCMake has the ability to create installers for multiple platforms using a program\ncalled link:https:\/\/cmake.org\/Wiki\/CMake:CPackPackageGenerators[CPack].\nCPack includes the ability to create Linux RPM, deb and gzip distributions\n of both binaries and source code. It also includes the ability to create NSIS files for Microsoft Windows.\n","subject":"Fix typo. teh -> the","message":"Fix typo. teh -> the","lang":"AsciiDoc","license":"mit","repos":"ttroy50\/cmake-examples,ttroy50\/cmake-examples,ttroy50\/cmake-examples"} {"commit":"4addd458fd7d0e709ae3b2f7e62e684828528238","old_file":"README.adoc","new_file":"README.adoc","old_contents":"\/\/ Do not edit this file (e.g. go instead to src\/main\/asciidoc)\n\nSpring Cloud Build is a common utility project for Spring Cloud\nto use for plugin and dependency management.\n\n== Building and Deploying\n\nTo install locally:\n\n----\n\n$ mvn install\n----\n\nand to deploy snapshots to repo.spring.io:\n\n----\n$ mvn install -DaltSnapshotDeploymentRepository=repo.spring.io::default::https:\/\/repo.spring.io\/libs-snapshot-local\n----\n\nfor a RELEASE build use\n\n----\n$ mvn install -DaltReleaseDeploymentRepository=repo.spring.io::default::https:\/\/repo.spring.io\/libs-release-local\n----\n\nand for Maven Central use\n\n----\n$ mvn install -P central -DaltReleaseDeploymentRepository=sonatype-nexus-staging::default::https:\/\/oss.sonatype.org\/service\/local\/staging\/deploy\/maven2\n----\n\n(the \"central\" profile is available for all projects in Spring Cloud and it sets up the gpg jar signing, and the repository has to be specified separately for this project because it is a parent of the starter parent which users inturn have as their own parent).\n","new_contents":"\/\/ Do not edit this file (e.g. go instead to src\/main\/asciidoc)\n\nSpring Cloud Build is a common utility project for Spring Cloud\nto use for plugin and dependency management.\n\n== Building and Deploying\n\nTo install locally:\n\n----\n\n$ mvn install\n----\n\nand to deploy snapshots to repo.spring.io:\n\n----\n$ mvn deploy -DaltSnapshotDeploymentRepository=repo.spring.io::default::https:\/\/repo.spring.io\/libs-snapshot-local\n----\n\nfor a RELEASE build use\n\n----\n$ mvn deploy -DaltReleaseDeploymentRepository=repo.spring.io::default::https:\/\/repo.spring.io\/libs-release-local\n----\n\nand for Maven Central use\n\n----\n$ mvn deploy -P central -DaltReleaseDeploymentRepository=sonatype-nexus-staging::default::https:\/\/oss.sonatype.org\/service\/local\/staging\/deploy\/maven2\n----\n\n(the \"central\" profile is available for all projects in Spring Cloud and it sets up the gpg jar signing, and the repository has to be specified separately for this project because it is a parent of the starter parent which users in turn have as their own parent).\n","subject":"Update readme for mavn deploy","message":"Update readme for mavn deploy\n","lang":"AsciiDoc","license":"apache-2.0","repos":"royclarkson\/spring-cloud-build,linlynn\/spring-cloud-build,spring-cloud\/spring-cloud-build,linlynn\/spring-cloud-build,spring-cloud\/spring-cloud-build,royclarkson\/spring-cloud-build"} {"commit":"a32ee3935d758653994e559d558027f4662753f0","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Spring Session\nRob Winch\n\nSpring Session aims to provide a common infrastructure for managing sessions. This provides many benefits including:\n\n* Accessing a session from any environment (i.e. web, messaging infrastructure, etc)\n* In a web environment\n** Support for clustering in a vendor neutral way\n** Pluggable strategy for determining the session id\n** Easily keep the HttpSession alive when a WebSocket is active\n\n= Spring Session Project Site\n\nYou can find the documentation, issue management, support, samples, and guides for using Spring Session at http:\/\/spring.io\/spring-session\/\n\n= License\n\nSpring Session is Open Source software released under the http:\/\/www.apache.org\/licenses\/LICENSE-2.0.html[Apache 2.0 license].\n","new_contents":"= Spring Session\nRob Winch\n\nSpring Session aims to provide a common infrastructure for managing sessions. This provides many benefits including:\n\n* Accessing a session from any environment (i.e. web, messaging infrastructure, etc)\n* In a web environment\n** Support for clustering in a vendor neutral way\n** Pluggable strategy for determining the session id\n** Easily keep the HttpSession alive when a WebSocket is active\n\n= Spring Session Project Site\n\nYou can find the documentation, issue management, support, samples, and guides for using Spring Session at http:\/\/projects.spring.io\/spring-session\/\n\n= License\n\nSpring Session is Open Source software released under the http:\/\/www.apache.org\/licenses\/LICENSE-2.0.html[Apache 2.0 license].\n","subject":"Add projects subdomain in project page URL","message":"Add projects subdomain in project page URL\n\nWhile the projects subdomain is not necessary due to a redirect\nit does provide a faster experience for users.\n\nThis commit adds the projects subdomain to the project URL to\navoid unnecessary redirects.\n\nFixes gh-220\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vpavic\/spring-session,vpavic\/spring-session,vpavic\/spring-session"} {"commit":"42ea2f530c9de5467714fcaf605052664bb8b131","old_file":"documentation\/src\/docs\/asciidoc\/release-notes\/release-notes-5.7.0-M1.adoc","new_file":"documentation\/src\/docs\/asciidoc\/release-notes\/release-notes-5.7.0-M1.adoc","old_contents":"[[release-notes-5.7.0-M1]]\n== 5.7.0-M1\n\n*Date of Release:* ❓\n\n*Scope:* ❓\n\nFor a complete list of all _closed_ issues and pull requests for this release, consult the\nlink:{junit5-repo}+\/milestone\/44?closed=1+[5.7 M1] milestone page in the JUnit repository\non GitHub.\n\n\n[[release-notes-5.7.0-M1-junit-platform]]\n=== JUnit Platform\n\n==== Bug Fixes\n\n* ❓\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* The number of containers and tests excluded by post discovery filters based on their tags\n is now logged, along with the exclusion reasons.\n\n\n[[release-notes-5.7.0-M1-junit-jupiter]]\n=== JUnit Jupiter\n\n==== Bug Fixes\n\n* ❓\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* The Javadoc for the `provideTestTemplateInvocationContexts()` method in\n `TestTemplateInvocationContextProvider` has been aligned with the actual implementation.\n Providers are now officially allowed to return an empty stream, and the error message\n when all provided streams are empty is now more helpful.\n\n\n[[release-notes-5.7.0-M1-junit-vintage]]\n=== JUnit Vintage\n\n==== Bug Fixes\n\n* ❓\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* ❓\n","new_contents":"[[release-notes-5.7.0-M1]]\n== 5.7.0-M1\n\n*Date of Release:* ❓\n\n*Scope:* ❓\n\nFor a complete list of all _closed_ issues and pull requests for this release, consult the\nlink:{junit5-repo}+\/milestone\/44?closed=1+[5.7 M1] milestone page in the JUnit repository\non GitHub.\n\n\n[[release-notes-5.7.0-M1-junit-platform]]\n=== JUnit Platform\n\n==== Bug Fixes\n\n* ❓\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* The number of containers and tests excluded by post discovery filters based on their tags\n is now logged, along with the exclusion reasons.\n\n* The annotation `@Testable` may now be applied _directly_ to fields.\n\n[[release-notes-5.7.0-M1-junit-jupiter]]\n=== JUnit Jupiter\n\n==== Bug Fixes\n\n* ❓\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* The Javadoc for the `provideTestTemplateInvocationContexts()` method in\n `TestTemplateInvocationContextProvider` has been aligned with the actual implementation.\n Providers are now officially allowed to return an empty stream, and the error message\n when all provided streams are empty is now more helpful.\n\n\n[[release-notes-5.7.0-M1-junit-vintage]]\n=== JUnit Vintage\n\n==== Bug Fixes\n\n* ❓\n\n==== Deprecations and Breaking Changes\n\n* ❓\n\n==== New Features and Improvements\n\n* ❓\n","subject":"Update release notes for Testable annotation.","message":"Update release notes for Testable annotation.\n\n#2168\n","lang":"AsciiDoc","license":"epl-1.0","repos":"sbrannen\/junit-lambda,junit-team\/junit-lambda"} {"commit":"87497c92ca68bf5b58ad932340f8b4cc2a5ae01c","old_file":"docs\/reference\/migration\/index.asciidoc","new_file":"docs\/reference\/migration\/index.asciidoc","old_contents":"[[breaking-changes]]\n= Breaking changes\n\n[partintro]\n--\nThis section discusses the changes that you need to be aware of when migrating\nyour application from one version of Elasticsearch to another.\n\nAs a general rule:\n\n* Migration between major versions -- e.g. `1.x` to `2.x` --\n requires a <>.\n\n* Migration between minor versions -- e.g. `1.x` to `1.y` -- can be\n performed by <>.\n\nSee <> for more info.\n--\n\ninclude::migrate_1_x.asciidoc[]\n\ninclude::migrate_1_0.asciidoc[]\n\n\n\n","new_contents":"[[breaking-changes]]\n= Breaking changes\n\n[partintro]\n--\nThis section discusses the changes that you need to be aware of when migrating\nyour application from one version of Elasticsearch to another.\n\nAs a general rule:\n\n* Migration between major versions -- e.g. `1.x` to `2.x` --\n requires a <>.\n\n* Migration between minor versions -- e.g. `1.x` to `1.y` -- can be\n performed by <>.\n\nSee <> for more info.\n--\n\ninclude::migrate_2_0.asciidoc[]\n\ninclude::migrate_1_x.asciidoc[]\n\ninclude::migrate_1_0.asciidoc[]\n\n","subject":"Add missing link to the 2.0 migration guide.","message":"Docs: Add missing link to the 2.0 migration guide.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"anti-social\/elasticsearch,winstonewert\/elasticsearch,obourgain\/elasticsearch,vingupta3\/elasticsearch,StefanGor\/elasticsearch,kaneshin\/elasticsearch,dataduke\/elasticsearch,zeroctu\/elasticsearch,ivansun1010\/elasticsearch,btiernay\/elasticsearch,jpountz\/elasticsearch,Liziyao\/elasticsearch,humandb\/elasticsearch,SergVro\/elasticsearch,ouyangkongtong\/elasticsearch,C-Bish\/elasticsearch,TonyChai24\/ESSource,opendatasoft\/elasticsearch,socialrank\/elasticsearch,sdauletau\/elasticsearch,sposam\/elasticsearch,gingerwizard\/elasticsearch,SergVro\/elasticsearch,rmuir\/elasticsearch,VukDukic\/elasticsearch,mikemccand\/elasticsearch,likaiwalkman\/elasticsearch,sneivandt\/elasticsearch,hydro2k\/elasticsearch,obourgain\/elasticsearch,jango2015\/elasticsearch,wbowling\/elasticsearch,djschny\/elasticsearch,ESamir\/elasticsearch,sreeramjayan\/elasticsearch,codebunt\/elasticsearch,fforbeck\/elasticsearch,btiernay\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,TonyChai24\/ESSource,gmarz\/elasticsearch,rlugojr\/elasticsearch,Helen-Zhao\/elasticsearch,nellicus\/elasticsearch,rento19962\/elasticsearch,khiraiwa\/elasticsearch,henakamaMSFT\/elasticsearch,phani546\/elasticsearch,kcompher\/elasticsearch,vrkansagara\/elasticsearch,dataduke\/elasticsearch,glefloch\/elasticsearch,kenshin233\/elasticsearch,amit-shar\/elasticsearch,Chhunlong\/elasticsearch,karthikjaps\/elasticsearch,djschny\/elasticsearch,strapdata\/elassandra-test,ImpressTV\/elasticsearch,wimvds\/elasticsearch,loconsolutions\/elasticsearch,achow\/elasticsearch,nezirus\/elasticsearch,pozhidaevak\/elasticsearch,ImpressTV\/elasticsearch,scottsom\/elasticsearch,sauravmondallive\/elasticsearch,skearns64\/elasticsearch,kaneshin\/elasticsearch,strapdata\/elassandra,zeroctu\/elasticsearch,vroyer\/elassandra,cnfire\/elasticsearch-1,aglne\/elasticsearch,weipinghe\/elasticsearch,lzo\/elasticsearch-1,Liziyao\/elasticsearch,koxa29\/elasticsearch,YosuaMichael\/elasticsearch,Siddartha07\/elasticsearch,rmuir\/elasticsearch,sjohnr\/elasticsearch,Rygbee\/elasticsearch,overcome\/elasticsearch,rento19962\/elasticsearch,golubev\/elasticsearch,thecocce\/elasticsearch,lks21c\/elasticsearch,jprante\/elasticsearch,sauravmondallive\/elasticsearch,onegambler\/elasticsearch,ZTE-PaaS\/elasticsearch,vingupta3\/elasticsearch,kenshin233\/elasticsearch,kevinkluge\/elasticsearch,wittyameta\/elasticsearch,YosuaMichael\/elasticsearch,mm0\/elasticsearch,wuranbo\/elasticsearch,EasonYi\/elasticsearch,janmejay\/elasticsearch,umeshdangat\/elasticsearch,wittyameta\/elasticsearch,LeoYao\/elasticsearch,HarishAtGitHub\/elasticsearch,rhoml\/elasticsearch,nilabhsagar\/elasticsearch,alexkuk\/elasticsearch,mnylen\/elasticsearch,mikemccand\/elasticsearch,feiqitian\/elasticsearch,mjason3\/elasticsearch,tkssharma\/elasticsearch,pablocastro\/elasticsearch,Widen\/elasticsearch,NBSW\/elasticsearch,lzo\/elasticsearch-1,trangvh\/elasticsearch,ajhalani\/elasticsearch,mm0\/elasticsearch,wbowling\/elasticsearch,HarishAtGitHub\/elasticsearch,apepper\/elasticsearch,18098924759\/elasticsearch,sdauletau\/elasticsearch,javachengwc\/elasticsearch,YosuaMichael\/elasticsearch,Flipkart\/elasticsearch,strapdata\/elassandra-test,a2lin\/elasticsearch,dylan8902\/elasticsearch,glefloch\/elasticsearch,knight1128\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,fooljohnny\/elasticsearch,schonfeld\/elasticsearch,fekaputra\/elasticsearch,nazarewk\/elasticsearch,Liziyao\/elasticsearch,polyfractal\/elasticsearch,petmit\/elasticsearch,ZTE-PaaS\/elasticsearch,smflorentino\/elasticsearch,JSCooke\/elasticsearch,coding0011\/elasticsearch,phani546\/elasticsearch,hydro2k\/elasticsearch,sposam\/elasticsearch,dpursehouse\/elasticsearch,xuzha\/elasticsearch,spiegela\/elasticsearch,tkssharma\/elasticsearch,drewr\/elasticsearch,dylan8902\/elasticsearch,YosuaMichael\/elasticsearch,glefloch\/elasticsearch,easonC\/elasticsearch,cwurm\/elasticsearch,ajhalani\/elasticsearch,strapdata\/elassandra5-rc,opendatasoft\/elasticsearch,fekaputra\/elasticsearch,fernandozhu\/elasticsearch,snikch\/elasticsearch,yynil\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,ajhalani\/elasticsearch,EasonYi\/elasticsearch,overcome\/elasticsearch,Asimov4\/elasticsearch,ckclark\/elasticsearch,snikch\/elasticsearch,ZTE-PaaS\/elasticsearch,Charlesdong\/elasticsearch,iantruslove\/elasticsearch,Liziyao\/elasticsearch,springning\/elasticsearch,lmtwga\/elasticsearch,kevinkluge\/elasticsearch,khiraiwa\/elasticsearch,strapdata\/elassandra,jimczi\/elasticsearch,kaneshin\/elasticsearch,dataduke\/elasticsearch,njlawton\/elasticsearch,s1monw\/elasticsearch,slavau\/elasticsearch,iacdingping\/elasticsearch,gingerwizard\/elasticsearch,jpountz\/elasticsearch,JackyMai\/elasticsearch,snikch\/elasticsearch,iantruslove\/elasticsearch,vietlq\/elasticsearch,skearns64\/elasticsearch,vietlq\/elasticsearch,camilojd\/elasticsearch,HonzaKral\/elasticsearch,karthikjaps\/elasticsearch,kkirsche\/elasticsearch,pritishppai\/elasticsearch,himanshuag\/elasticsearch,wayeast\/elasticsearch,sjohnr\/elasticsearch,spiegela\/elasticsearch,mapr\/elasticsearch,lks21c\/elasticsearch,ImpressTV\/elasticsearch,Shekharrajak\/elasticsearch,karthikjaps\/elasticsearch,sneivandt\/elasticsearch,zhiqinghuang\/elasticsearch,iacdingping\/elasticsearch,dpursehouse\/elasticsearch,masterweb121\/elasticsearch,HarishAtGitHub\/elasticsearch,LewayneNaidoo\/elasticsearch,clintongormley\/elasticsearch,Ansh90\/elasticsearch,sauravmondallive\/elasticsearch,alexbrasetvik\/elasticsearch,C-Bish\/elasticsearch,dantuffery\/elasticsearch,lydonchandra\/elasticsearch,nellicus\/elasticsearch,pranavraman\/elasticsearch,AndreKR\/elasticsearch,kimimj\/elasticsearch,mbrukman\/elasticsearch,gingerwizard\/elasticsearch,qwerty4030\/elasticsearch,dongjoon-hyun\/elasticsearch,pozhidaevak\/elasticsearch,Clairebi\/ElasticsearchClone,jw0201\/elastic,janmejay\/elasticsearch,dantuffery\/elasticsearch,mgalushka\/elasticsearch,karthikjaps\/elasticsearch,Chhunlong\/elasticsearch,mcku\/elasticsearch,jeteve\/elasticsearch,jchampion\/elasticsearch,andrestc\/elasticsearch,avikurapati\/elasticsearch,mm0\/elasticsearch,AleksKochev\/elasticsearch,Kakakakakku\/elasticsearch,rajanm\/elasticsearch,sauravmondallive\/elasticsearch,Flipkart\/elasticsearch,Chhunlong\/elasticsearch,iamjakob\/elasticsearch,s1monw\/elasticsearch,nknize\/elasticsearch,njlawton\/elasticsearch,MichaelLiZhou\/elasticsearch,ulkas\/elasticsearch,alexshadow007\/elasticsearch,njlawton\/elasticsearch,KimTaehee\/elasticsearch,rajanm\/elasticsearch,huanzhong\/elasticsearch,ThalaivaStars\/OrgRepo1,Brijeshrpatel9\/elasticsearch,F0lha\/elasticsearch,Widen\/elasticsearch,elasticdog\/elasticsearch,markharwood\/elasticsearch,Asimov4\/elasticsearch,LewayneNaidoo\/elasticsearch,tsohil\/elasticsearch,jpountz\/elasticsearch,kubum\/elasticsearch,mkis-\/elasticsearch,mnylen\/elasticsearch,jimczi\/elasticsearch,iamjakob\/elasticsearch,kcompher\/elasticsearch,mmaracic\/elasticsearch,kunallimaye\/elasticsearch,strapdata\/elassandra5-rc,PhaedrusTheGreek\/elasticsearch,yongminxia\/elasticsearch,davidvgalbraith\/elasticsearch,spiegela\/elasticsearch,Siddartha07\/elasticsearch,opendatasoft\/elasticsearch,milodky\/elasticsearch,mapr\/elasticsearch,mrorii\/elasticsearch,pranavraman\/elasticsearch,tahaemin\/elasticsearch,xingguang2013\/elasticsearch,Collaborne\/elasticsearch,iamjakob\/elasticsearch,yanjunh\/elasticsearch,jsgao0\/elasticsearch,njlawton\/elasticsearch,achow\/elasticsearch,iacdingping\/elasticsearch,jchampion\/elasticsearch,kkirsche\/elasticsearch,NBSW\/elasticsearch,apepper\/elasticsearch,palecur\/elasticsearch,glefloch\/elasticsearch,LeoYao\/elasticsearch,feiqitian\/elasticsearch,mapr\/elasticsearch,elancom\/elasticsearch,nellicus\/elasticsearch,sauravmondallive\/elasticsearch,GlenRSmith\/elasticsearch,btiernay\/elasticsearch,alexshadow007\/elasticsearch,wangtuo\/elasticsearch,pritishppai\/elasticsearch,truemped\/elasticsearch,maddin2016\/elasticsearch,lchennup\/elasticsearch,loconsolutions\/elasticsearch,Ansh90\/elasticsearch,andrejserafim\/elasticsearch,wenpos\/elasticsearch,mortonsykes\/elasticsearch,huypx1292\/elasticsearch,rmuir\/elasticsearch,IanvsPoplicola\/elasticsearch,HonzaKral\/elasticsearch,Siddartha07\/elasticsearch,andrejserafim\/elasticsearch,LewayneNaidoo\/elasticsearch,linglaiyao1314\/elasticsearch,masaruh\/elasticsearch,petmit\/elasticsearch,ricardocerq\/elasticsearch,nezirus\/elasticsearch,rajanm\/elasticsearch,sneivandt\/elasticsearch,masterweb121\/elasticsearch,Ansh90\/elasticsearch,GlenRSmith\/elasticsearch,dongjoon-hyun\/elasticsearch,nilabhsagar\/elasticsearch,wangyuxue\/elasticsearch,franklanganke\/elasticsearch,tebriel\/elasticsearch,clintongormley\/elasticsearch,nknize\/elasticsearch,myelin\/elasticsearch,mgalushka\/elasticsearch,ydsakyclguozi\/elasticsearch,tsohil\/elasticsearch,Siddartha07\/elasticsearch,fooljohnny\/elasticsearch,mm0\/elasticsearch,shreejay\/elasticsearch,ImpressTV\/elasticsearch,fred84\/elasticsearch,alexbrasetvik\/elasticsearch,sscarduzio\/elasticsearch,gingerwizard\/elasticsearch,mkis-\/elasticsearch,hanswang\/elasticsearch,Flipkart\/elasticsearch,mkis-\/elasticsearch,codebunt\/elasticsearch,MichaelLiZhou\/elasticsearch,ulkas\/elasticsearch,sc0ttkclark\/elasticsearch,dongjoon-hyun\/elasticsearch,btiernay\/elasticsearch,ydsakyclguozi\/elasticsearch,bestwpw\/elasticsearch,wimvds\/elasticsearch,springning\/elasticsearch,kimimj\/elasticsearch,infusionsoft\/elasticsearch,easonC\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,cnfire\/elasticsearch-1,AshishThakur\/elasticsearch,maddin2016\/elasticsearch,SergVro\/elasticsearch,myelin\/elasticsearch,adrianbk\/elasticsearch,codebunt\/elasticsearch,jbertouch\/elasticsearch,elancom\/elasticsearch,luiseduardohdbackup\/elasticsearch,likaiwalkman\/elasticsearch,koxa29\/elasticsearch,ricardocerq\/elasticsearch,mm0\/elasticsearch,ydsakyclguozi\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,infusionsoft\/elasticsearch,chirilo\/elasticsearch,infusionsoft\/elasticsearch,knight1128\/elasticsearch,YosuaMichael\/elasticsearch,HarishAtGitHub\/elasticsearch,kaneshin\/elasticsearch,rlugojr\/elasticsearch,heng4fun\/elasticsearch,wayeast\/elasticsearch,umeshdangat\/elasticsearch,dongjoon-hyun\/elasticsearch,lightslife\/elasticsearch,kunallimaye\/elasticsearch,yanjunh\/elasticsearch,kubum\/elasticsearch,micpalmia\/elasticsearch,KimTaehee\/elasticsearch,vroyer\/elassandra,jeteve\/elasticsearch,franklanganke\/elasticsearch,koxa29\/elasticsearch,mmaracic\/elasticsearch,robin13\/elasticsearch,himanshuag\/elasticsearch,vietlq\/elasticsearch,vvcephei\/elasticsearch,lmtwga\/elasticsearch,Shekharrajak\/elasticsearch,pranavraman\/elasticsearch,scorpionvicky\/elasticsearch,jeteve\/elasticsearch,tebriel\/elasticsearch,Fsero\/elasticsearch,alexbrasetvik\/elasticsearch,achow\/elasticsearch,javachengwc\/elasticsearch,iacdingping\/elasticsearch,jimhooker2002\/elasticsearch,drewr\/elasticsearch,Rygbee\/elasticsearch,Brijeshrpatel9\/elasticsearch,beiske\/elasticsearch,yongminxia\/elasticsearch,F0lha\/elasticsearch,easonC\/elasticsearch,nilabhsagar\/elasticsearch,robin13\/elasticsearch,chrismwendt\/elasticsearch,sjohnr\/elasticsearch,yongminxia\/elasticsearch,tahaemin\/elasticsearch,aglne\/elasticsearch,sscarduzio\/elasticsearch,drewr\/elasticsearch,sarwarbhuiyan\/elasticsearch,kubum\/elasticsearch,caengcjd\/elasticsearch,wimvds\/elasticsearch,kimimj\/elasticsearch,schonfeld\/elasticsearch,Kakakakakku\/elasticsearch,yuy168\/elasticsearch,trangvh\/elasticsearch,kenshin233\/elasticsearch,fooljohnny\/elasticsearch,beiske\/elasticsearch,rento19962\/elasticsearch,liweinan0423\/elasticsearch,Shekharrajak\/elasticsearch,mnylen\/elasticsearch,acchen97\/elasticsearch,feiqitian\/elasticsearch,i-am-Nathan\/elasticsearch,xuzha\/elasticsearch,F0lha\/elasticsearch,shreejay\/elasticsearch,Widen\/elasticsearch,F0lha\/elasticsearch,dantuffery\/elasticsearch,kenshin233\/elasticsearch,Flipkart\/elasticsearch,MisterAndersen\/elasticsearch,phani546\/elasticsearch,i-am-Nathan\/elasticsearch,mikemccand\/elasticsearch,queirozfcom\/elasticsearch,lks21c\/elasticsearch,alexshadow007\/elasticsearch,thecocce\/elasticsearch,dataduke\/elasticsearch,Rygbee\/elasticsearch,franklanganke\/elasticsearch,Microsoft\/elasticsearch,smflorentino\/elasticsearch,amit-shar\/elasticsearch,jeteve\/elasticsearch,geidies\/elasticsearch,apepper\/elasticsearch,dpursehouse\/elasticsearch,kkirsche\/elasticsearch,slavau\/elasticsearch,ESamir\/elasticsearch,kalburgimanjunath\/elasticsearch,polyfractal\/elasticsearch,sarwarbhuiyan\/elasticsearch,martinstuga\/elasticsearch,lmtwga\/elasticsearch,andrejserafim\/elasticsearch,nknize\/elasticsearch,wittyameta\/elasticsearch,Collaborne\/elasticsearch,StefanGor\/elasticsearch,beiske\/elasticsearch,ulkas\/elasticsearch,Uiho\/elasticsearch,Chhunlong\/elasticsearch,xingguang2013\/elasticsearch,mcku\/elasticsearch,dylan8902\/elasticsearch,kevinkluge\/elasticsearch,fforbeck\/elasticsearch,ajhalani\/elasticsearch,rhoml\/elasticsearch,jchampion\/elasticsearch,MjAbuz\/elasticsearch,golubev\/elasticsearch,Stacey-Gammon\/elasticsearch,diendt\/elasticsearch,kcompher\/elasticsearch,yynil\/elasticsearch,martinstuga\/elasticsearch,AleksKochev\/elasticsearch,SergVro\/elasticsearch,Liziyao\/elasticsearch,wenpos\/elasticsearch,lmtwga\/elasticsearch,Collaborne\/elasticsearch,rajanm\/elasticsearch,AndreKR\/elasticsearch,clintongormley\/elasticsearch,pritishppai\/elasticsearch,gfyoung\/elasticsearch,djschny\/elasticsearch,milodky\/elasticsearch,uschindler\/elasticsearch,scottsom\/elasticsearch,spiegela\/elasticsearch,skearns64\/elasticsearch,mrorii\/elasticsearch,tebriel\/elasticsearch,petabytedata\/elasticsearch,golubev\/elasticsearch,sreeramjayan\/elasticsearch,weipinghe\/elasticsearch,JSCooke\/elasticsearch,areek\/elasticsearch,sreeramjayan\/elasticsearch,hanswang\/elasticsearch,jimczi\/elasticsearch,strapdata\/elassandra-test,golubev\/elasticsearch,jango2015\/elasticsearch,anti-social\/elasticsearch,jw0201\/elastic,lzo\/elasticsearch-1,a2lin\/elasticsearch,diendt\/elasticsearch,iantruslove\/elasticsearch,ulkas\/elasticsearch,snikch\/elasticsearch,lchennup\/elasticsearch,mortonsykes\/elasticsearch,markwalkom\/elasticsearch,wangtuo\/elasticsearch,amaliujia\/elasticsearch,lchennup\/elasticsearch,milodky\/elasticsearch,masaruh\/elasticsearch,sposam\/elasticsearch,mortonsykes\/elasticsearch,scottsom\/elasticsearch,easonC\/elasticsearch,tcucchietti\/elasticsearch,mcku\/elasticsearch,Uiho\/elasticsearch,camilojd\/elasticsearch,pritishppai\/elasticsearch,sdauletau\/elasticsearch,bawse\/elasticsearch,F0lha\/elasticsearch,mnylen\/elasticsearch,Clairebi\/ElasticsearchClone,alexkuk\/elasticsearch,gmarz\/elasticsearch,mmaracic\/elasticsearch,AndreKR\/elasticsearch,Helen-Zhao\/elasticsearch,fred84\/elasticsearch,bestwpw\/elasticsearch,JervyShi\/elasticsearch,Shekharrajak\/elasticsearch,kubum\/elasticsearch,petmit\/elasticsearch,naveenhooda2000\/elasticsearch,camilojd\/elasticsearch,mgalushka\/elasticsearch,iamjakob\/elasticsearch,wittyameta\/elasticsearch,scorpionvicky\/elasticsearch,lchennup\/elasticsearch,mkis-\/elasticsearch,abibell\/elasticsearch,hafkensite\/elasticsearch,dpursehouse\/elasticsearch,gingerwizard\/elasticsearch,gingerwizard\/elasticsearch,djschny\/elasticsearch,LewayneNaidoo\/elasticsearch,wittyameta\/elasticsearch,amit-shar\/elasticsearch,hydro2k\/elasticsearch,sarwarbhuiyan\/elasticsearch,davidvgalbraith\/elasticsearch,vvcephei\/elasticsearch,sposam\/elasticsearch,slavau\/elasticsearch,sarwarbhuiyan\/elasticsearch,springning\/elasticsearch,easonC\/elasticsearch,likaiwalkman\/elasticsearch,lchennup\/elasticsearch,alexbrasetvik\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,nrkkalyan\/elasticsearch,myelin\/elasticsearch,Brijeshrpatel9\/elasticsearch,queirozfcom\/elasticsearch,GlenRSmith\/elasticsearch,Collaborne\/elasticsearch,djschny\/elasticsearch,huypx1292\/elasticsearch,nazarewk\/elasticsearch,lightslife\/elasticsearch,tcucchietti\/elasticsearch,chirilo\/elasticsearch,qwerty4030\/elasticsearch,snikch\/elasticsearch,ivansun1010\/elasticsearch,pablocastro\/elasticsearch,jbertouch\/elasticsearch,avikurapati\/elasticsearch,fernandozhu\/elasticsearch,yynil\/elasticsearch,abibell\/elasticsearch,gmarz\/elasticsearch,smflorentino\/elasticsearch,ESamir\/elasticsearch,18098924759\/elasticsearch,JervyShi\/elasticsearch,areek\/elasticsearch,jaynblue\/elasticsearch,lightslife\/elasticsearch,ouyangkongtong\/elasticsearch,pritishppai\/elasticsearch,hafkensite\/elasticsearch,HonzaKral\/elasticsearch,kaneshin\/elasticsearch,wayeast\/elasticsearch,schonfeld\/elasticsearch,humandb\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,fekaputra\/elasticsearch,xpandan\/elasticsearch,apepper\/elasticsearch,elasticdog\/elasticsearch,jeteve\/elasticsearch,lydonchandra\/elasticsearch,pablocastro\/elasticsearch,alexkuk\/elasticsearch,Microsoft\/elasticsearch,elancom\/elasticsearch,HarishAtGitHub\/elasticsearch,AshishThakur\/elasticsearch,hafkensite\/elasticsearch,fernandozhu\/elasticsearch,kalburgimanjunath\/elasticsearch,andrestc\/elasticsearch,wuranbo\/elasticsearch,strapdata\/elassandra-test,skearns64\/elasticsearch,hanst\/elasticsearch,szroland\/elasticsearch,diendt\/elasticsearch,lightslife\/elasticsearch,Widen\/elasticsearch,jpountz\/elasticsearch,mohit\/elasticsearch,chrismwendt\/elasticsearch,episerver\/elasticsearch,ydsakyclguozi\/elasticsearch,MaineC\/elasticsearch,djschny\/elasticsearch,xingguang2013\/elasticsearch,mjhennig\/elasticsearch,robin13\/elasticsearch,linglaiyao1314\/elasticsearch,yongminxia\/elasticsearch,btiernay\/elasticsearch,thecocce\/elasticsearch,s1monw\/elasticsearch,zkidkid\/elasticsearch,ricardocerq\/elasticsearch,nrkkalyan\/elasticsearch,IanvsPoplicola\/elasticsearch,petabytedata\/elasticsearch,lmtwga\/elasticsearch,clintongormley\/elasticsearch,MjAbuz\/elasticsearch,overcome\/elasticsearch,xingguang2013\/elasticsearch,ivansun1010\/elasticsearch,MetSystem\/elasticsearch,scorpionvicky\/elasticsearch,Widen\/elasticsearch,kingaj\/elasticsearch,ricardocerq\/elasticsearch,wuranbo\/elasticsearch,henakamaMSFT\/elasticsearch,MetSystem\/elasticsearch,caengcjd\/elasticsearch,tcucchietti\/elasticsearch,KimTaehee\/elasticsearch,Rygbee\/elasticsearch,hanst\/elasticsearch,hechunwen\/elasticsearch,hafkensite\/elasticsearch,gmarz\/elasticsearch,mikemccand\/elasticsearch,hanst\/elasticsearch,brandonkearby\/elasticsearch,palecur\/elasticsearch,markharwood\/elasticsearch,hanswang\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,jango2015\/elasticsearch,kingaj\/elasticsearch,likaiwalkman\/elasticsearch,chirilo\/elasticsearch,loconsolutions\/elasticsearch,coding0011\/elasticsearch,jimczi\/elasticsearch,Liziyao\/elasticsearch,scorpionvicky\/elasticsearch,wayeast\/elasticsearch,kenshin233\/elasticsearch,mbrukman\/elasticsearch,queirozfcom\/elasticsearch,robin13\/elasticsearch,chrismwendt\/elasticsearch,acchen97\/elasticsearch,naveenhooda2000\/elasticsearch,diendt\/elasticsearch,MjAbuz\/elasticsearch,anti-social\/elasticsearch,strapdata\/elassandra,cnfire\/elasticsearch-1,nilabhsagar\/elasticsearch,AshishThakur\/elasticsearch,maddin2016\/elasticsearch,ZTE-PaaS\/elasticsearch,VukDukic\/elasticsearch,zkidkid\/elasticsearch,i-am-Nathan\/elasticsearch,wenpos\/elasticsearch,truemped\/elasticsearch,JackyMai\/elasticsearch,nellicus\/elasticsearch,areek\/elasticsearch,Collaborne\/elasticsearch,likaiwalkman\/elasticsearch,caengcjd\/elasticsearch,javachengwc\/elasticsearch,ivansun1010\/elasticsearch,bawse\/elasticsearch,lightslife\/elasticsearch,sdauletau\/elasticsearch,uschindler\/elasticsearch,PhaedrusTheGreek\/elasticsearch,lydonchandra\/elasticsearch,hirdesh2008\/elasticsearch,aglne\/elasticsearch,himanshuag\/elasticsearch,awislowski\/elasticsearch,18098924759\/elasticsearch,vrkansagara\/elasticsearch,andrestc\/elasticsearch,myelin\/elasticsearch,humandb\/elasticsearch,tsohil\/elasticsearch,mcku\/elasticsearch,AndreKR\/elasticsearch,ESamir\/elasticsearch,lmtwga\/elasticsearch,jeteve\/elasticsearch,Charlesdong\/elasticsearch,hafkensite\/elasticsearch,jimhooker2002\/elasticsearch,truemped\/elasticsearch,likaiwalkman\/elasticsearch,javachengwc\/elasticsearch,wittyameta\/elasticsearch,kingaj\/elasticsearch,Rygbee\/elasticsearch,mjason3\/elasticsearch,Helen-Zhao\/elasticsearch,vrkansagara\/elasticsearch,mute\/elasticsearch,weipinghe\/elasticsearch,snikch\/elasticsearch,kevinkluge\/elasticsearch,caengcjd\/elasticsearch,PhaedrusTheGreek\/elasticsearch,wenpos\/elasticsearch,phani546\/elasticsearch,mgalushka\/elasticsearch,wimvds\/elasticsearch,feiqitian\/elasticsearch,JervyShi\/elasticsearch,tsohil\/elasticsearch,artnowo\/elasticsearch,slavau\/elasticsearch,pritishppai\/elasticsearch,tahaemin\/elasticsearch,schonfeld\/elasticsearch,xpandan\/elasticsearch,vingupta3\/elasticsearch,GlenRSmith\/elasticsearch,strapdata\/elassandra5-rc,easonC\/elasticsearch,kaneshin\/elasticsearch,kunallimaye\/elasticsearch,trangvh\/elasticsearch,wangtuo\/elasticsearch,codebunt\/elasticsearch,koxa29\/elasticsearch,phani546\/elasticsearch,SergVro\/elasticsearch,masaruh\/elasticsearch,artnowo\/elasticsearch,Kakakakakku\/elasticsearch,mnylen\/elasticsearch,mmaracic\/elasticsearch,kalimatas\/elasticsearch,yanjunh\/elasticsearch,pozhidaevak\/elasticsearch,liweinan0423\/elasticsearch,ckclark\/elasticsearch,queirozfcom\/elasticsearch,caengcjd\/elasticsearch,wangtuo\/elasticsearch,knight1128\/elasticsearch,xuzha\/elasticsearch,schonfeld\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,mrorii\/elasticsearch,nilabhsagar\/elasticsearch,heng4fun\/elasticsearch,hirdesh2008\/elasticsearch,linglaiyao1314\/elasticsearch,mkis-\/elasticsearch,slavau\/elasticsearch,loconsolutions\/elasticsearch,EasonYi\/elasticsearch,dantuffery\/elasticsearch,NBSW\/elasticsearch,awislowski\/elasticsearch,golubev\/elasticsearch,Microsoft\/elasticsearch,gfyoung\/elasticsearch,karthikjaps\/elasticsearch,djschny\/elasticsearch,schonfeld\/elasticsearch,MetSystem\/elasticsearch,ajhalani\/elasticsearch,hechunwen\/elasticsearch,hechunwen\/elasticsearch,F0lha\/elasticsearch,mmaracic\/elasticsearch,iacdingping\/elasticsearch,himanshuag\/elasticsearch,geidies\/elasticsearch,fekaputra\/elasticsearch,Fsero\/elasticsearch,infusionsoft\/elasticsearch,Siddartha07\/elasticsearch,JSCooke\/elasticsearch,MaineC\/elasticsearch,wenpos\/elasticsearch,kalburgimanjunath\/elasticsearch,palecur\/elasticsearch,geidies\/elasticsearch,PhaedrusTheGreek\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,ThiagoGarciaAlves\/elasticsearch,markwalkom\/elasticsearch,winstonewert\/elasticsearch,tahaemin\/elasticsearch,MisterAndersen\/elasticsearch,mcku\/elasticsearch,iantruslove\/elasticsearch,MetSystem\/elasticsearch,bawse\/elasticsearch,scorpionvicky\/elasticsearch,vroyer\/elasticassandra,mjason3\/elasticsearch,nrkkalyan\/elasticsearch,markllama\/elasticsearch,polyfractal\/elasticsearch,brandonkearby\/elasticsearch,onegambler\/elasticsearch,himanshuag\/elasticsearch,kalimatas\/elasticsearch,dylan8902\/elasticsearch,wangtuo\/elasticsearch,janmejay\/elasticsearch,szroland\/elasticsearch,sjohnr\/elasticsearch,Shekharrajak\/elasticsearch,linglaiyao1314\/elasticsearch,onegambler\/elasticsearch,pozhidaevak\/elasticsearch,lzo\/elasticsearch-1,pablocastro\/elasticsearch,rhoml\/elasticsearch,AshishThakur\/elasticsearch,combinatorist\/elasticsearch,vietlq\/elasticsearch,hydro2k\/elasticsearch,nomoa\/elasticsearch,Stacey-Gammon\/elasticsearch,tebriel\/elasticsearch,vvcephei\/elasticsearch,ImpressTV\/elasticsearch,strapdata\/elassandra5-rc,milodky\/elasticsearch,shreejay\/elasticsearch,achow\/elasticsearch,likaiwalkman\/elasticsearch,IanvsPoplicola\/elasticsearch,rhoml\/elasticsearch,kunallimaye\/elasticsearch,Uiho\/elasticsearch,MichaelLiZhou\/elasticsearch,LeoYao\/elasticsearch,queirozfcom\/elasticsearch,pranavraman\/elasticsearch,MetSystem\/elasticsearch,KimTaehee\/elasticsearch,yanjunh\/elasticsearch,AleksKochev\/elasticsearch,huanzhong\/elasticsearch,andrestc\/elasticsearch,ivansun1010\/elasticsearch,nellicus\/elasticsearch,iamjakob\/elasticsearch,mute\/elasticsearch,obourgain\/elasticsearch,rmuir\/elasticsearch,combinatorist\/elasticsearch,kunallimaye\/elasticsearch,vvcephei\/elasticsearch,rmuir\/elasticsearch,polyfractal\/elasticsearch,andrestc\/elasticsearch,cwurm\/elasticsearch,rento19962\/elasticsearch,skearns64\/elasticsearch,wayeast\/elasticsearch,nrkkalyan\/elasticsearch,hanswang\/elasticsearch,YosuaMichael\/elasticsearch,Kakakakakku\/elasticsearch,winstonewert\/elasticsearch,JackyMai\/elasticsearch,dataduke\/elasticsearch,wangyuxue\/elasticsearch,Collaborne\/elasticsearch,mbrukman\/elasticsearch,palecur\/elasticsearch,luiseduardohdbackup\/elasticsearch,Charlesdong\/elasticsearch,kalburgimanjunath\/elasticsearch,mortonsykes\/elasticsearch,humandb\/elasticsearch,i-am-Nathan\/elasticsearch,queirozfcom\/elasticsearch,schonfeld\/elasticsearch,Shepard1212\/elasticsearch,javachengwc\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,masterweb121\/elasticsearch,winstonewert\/elasticsearch,i-am-Nathan\/elasticsearch,rhoml\/elasticsearch,lightslife\/elasticsearch,cnfire\/elasticsearch-1,rhoml\/elasticsearch,nazarewk\/elasticsearch,AleksKochev\/elasticsearch,amit-shar\/elasticsearch,kubum\/elasticsearch,phani546\/elasticsearch,drewr\/elasticsearch,SergVro\/elasticsearch,sreeramjayan\/elasticsearch,Siddartha07\/elasticsearch,nrkkalyan\/elasticsearch,mute\/elasticsearch,weipinghe\/elasticsearch,jimhooker2002\/elasticsearch,luiseduardohdbackup\/elasticsearch,hanswang\/elasticsearch,MichaelLiZhou\/elasticsearch,JervyShi\/elasticsearch,sdauletau\/elasticsearch,Helen-Zhao\/elasticsearch,acchen97\/elasticsearch,Helen-Zhao\/elasticsearch,clintongormley\/elasticsearch,EasonYi\/elasticsearch,StefanGor\/elasticsearch,HarishAtGitHub\/elasticsearch,girirajsharma\/elasticsearch,sc0ttkclark\/elasticsearch,mapr\/elasticsearch,myelin\/elasticsearch,khiraiwa\/elasticsearch,JervyShi\/elasticsearch,AndreKR\/elasticsearch,amaliujia\/elasticsearch,elancom\/elasticsearch,sc0ttkclark\/elasticsearch,mute\/elasticsearch,strapdata\/elassandra-test,queirozfcom\/elasticsearch,davidvgalbraith\/elasticsearch,zkidkid\/elasticsearch,acchen97\/elasticsearch,andrejserafim\/elasticsearch,linglaiyao1314\/elasticsearch,ESamir\/elasticsearch,AleksKochev\/elasticsearch,Siddartha07\/elasticsearch,zeroctu\/elasticsearch,yongminxia\/elasticsearch,kubum\/elasticsearch,JervyShi\/elasticsearch,knight1128\/elasticsearch,koxa29\/elasticsearch,mgalushka\/elasticsearch,knight1128\/elasticsearch,nknize\/elasticsearch,iantruslove\/elasticsearch,YosuaMichael\/elasticsearch,vingupta3\/elasticsearch,gfyoung\/elasticsearch,dylan8902\/elasticsearch,trangvh\/elasticsearch,hafkensite\/elasticsearch,awislowski\/elasticsearch,brandonkearby\/elasticsearch,MisterAndersen\/elasticsearch,avikurapati\/elasticsearch,heng4fun\/elasticsearch,jaynblue\/elasticsearch,StefanGor\/elasticsearch,PhaedrusTheGreek\/elasticsearch,acchen97\/elasticsearch,Uiho\/elasticsearch,NBSW\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,Uiho\/elasticsearch,tahaemin\/elasticsearch,ulkas\/elasticsearch,mbrukman\/elasticsearch,Brijeshrpatel9\/elasticsearch,diendt\/elasticsearch,LewayneNaidoo\/elasticsearch,jimhooker2002\/elasticsearch,karthikjaps\/elasticsearch,wimvds\/elasticsearch,micpalmia\/elasticsearch,apepper\/elasticsearch,masaruh\/elasticsearch,socialrank\/elasticsearch,gfyoung\/elasticsearch,qwerty4030\/elasticsearch,GlenRSmith\/elasticsearch,a2lin\/elasticsearch,hanst\/elasticsearch,fekaputra\/elasticsearch,huanzhong\/elasticsearch,zeroctu\/elasticsearch,Rygbee\/elasticsearch,chirilo\/elasticsearch,wayeast\/elasticsearch,amit-shar\/elasticsearch,yuy168\/elasticsearch,sdauletau\/elasticsearch,avikurapati\/elasticsearch,martinstuga\/elasticsearch,kimimj\/elasticsearch,petmit\/elasticsearch,Shekharrajak\/elasticsearch,martinstuga\/elasticsearch,onegambler\/elasticsearch,btiernay\/elasticsearch,jimhooker2002\/elasticsearch,amaliujia\/elasticsearch,fekaputra\/elasticsearch,springning\/elasticsearch,yynil\/elasticsearch,micpalmia\/elasticsearch,linglaiyao1314\/elasticsearch,episerver\/elasticsearch,coding0011\/elasticsearch,jaynblue\/elasticsearch,18098924759\/elasticsearch,hechunwen\/elasticsearch,LeoYao\/elasticsearch,ThalaivaStars\/OrgRepo1,lydonchandra\/elasticsearch,yuy168\/elasticsearch,alexbrasetvik\/elasticsearch,fooljohnny\/elasticsearch,zeroctu\/elasticsearch,ulkas\/elasticsearch,nomoa\/elasticsearch,pablocastro\/elasticsearch,C-Bish\/elasticsearch,onegambler\/elasticsearch,gingerwizard\/elasticsearch,markwalkom\/elasticsearch,MetSystem\/elasticsearch,ckclark\/elasticsearch,artnowo\/elasticsearch,shreejay\/elasticsearch,Brijeshrpatel9\/elasticsearch,tkssharma\/elasticsearch,rlugojr\/elasticsearch,kenshin233\/elasticsearch,yuy168\/elasticsearch,Stacey-Gammon\/elasticsearch,strapdata\/elassandra-test,smflorentino\/elasticsearch,elasticdog\/elasticsearch,MichaelLiZhou\/elasticsearch,humandb\/elasticsearch,zhiqinghuang\/elasticsearch,iantruslove\/elasticsearch,rlugojr\/elasticsearch,fooljohnny\/elasticsearch,kalburgimanjunath\/elasticsearch,uschindler\/elasticsearch,martinstuga\/elasticsearch,uschindler\/elasticsearch,geidies\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,davidvgalbraith\/elasticsearch,mohit\/elasticsearch,sjohnr\/elasticsearch,infusionsoft\/elasticsearch,18098924759\/elasticsearch,masterweb121\/elasticsearch,adrianbk\/elasticsearch,kcompher\/elasticsearch,mikemccand\/elasticsearch,codebunt\/elasticsearch,Charlesdong\/elasticsearch,dataduke\/elasticsearch,knight1128\/elasticsearch,Clairebi\/ElasticsearchClone,VukDukic\/elasticsearch,beiske\/elasticsearch,drewr\/elasticsearch,Asimov4\/elasticsearch,ouyangkongtong\/elasticsearch,markwalkom\/elasticsearch,jchampion\/elasticsearch,khiraiwa\/elasticsearch,HarishAtGitHub\/elasticsearch,kalimatas\/elasticsearch,rlugojr\/elasticsearch,jchampion\/elasticsearch,LeoYao\/elasticsearch,Brijeshrpatel9\/elasticsearch,xingguang2013\/elasticsearch,tkssharma\/elasticsearch,Asimov4\/elasticsearch,wimvds\/elasticsearch,gfyoung\/elasticsearch,lks21c\/elasticsearch,jpountz\/elasticsearch,jprante\/elasticsearch,jsgao0\/elasticsearch,vingupta3\/elasticsearch,abibell\/elasticsearch,jsgao0\/elasticsearch,pranavraman\/elasticsearch,hydro2k\/elasticsearch,jbertouch\/elasticsearch,mohit\/elasticsearch,aglne\/elasticsearch,mjhennig\/elasticsearch,mmaracic\/elasticsearch,MaineC\/elasticsearch,naveenhooda2000\/elasticsearch,Microsoft\/elasticsearch,nomoa\/elasticsearch,episerver\/elasticsearch,sarwarbhuiyan\/elasticsearch,elancom\/elasticsearch,TonyChai24\/ESSource,szroland\/elasticsearch,huanzhong\/elasticsearch,JackyMai\/elasticsearch,markharwood\/elasticsearch,fforbeck\/elasticsearch,C-Bish\/elasticsearch,robin13\/elasticsearch,smflorentino\/elasticsearch,mortonsykes\/elasticsearch,jw0201\/elastic,Clairebi\/ElasticsearchClone,obourgain\/elasticsearch,mute\/elasticsearch,scottsom\/elasticsearch,davidvgalbraith\/elasticsearch,TonyChai24\/ESSource,cwurm\/elasticsearch,camilojd\/elasticsearch,thecocce\/elasticsearch,springning\/elasticsearch,MjAbuz\/elasticsearch,iacdingping\/elasticsearch,jimczi\/elasticsearch,naveenhooda2000\/elasticsearch,coding0011\/elasticsearch,Kakakakakku\/elasticsearch,rento19962\/elasticsearch,petabytedata\/elasticsearch,Widen\/elasticsearch,ZTE-PaaS\/elasticsearch,huanzhong\/elasticsearch,codebunt\/elasticsearch,petabytedata\/elasticsearch,zhiqinghuang\/elasticsearch,Fsero\/elasticsearch,humandb\/elasticsearch,sreeramjayan\/elasticsearch,sauravmondallive\/elasticsearch,hirdesh2008\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,Rygbee\/elasticsearch,achow\/elasticsearch,achow\/elasticsearch,gmarz\/elasticsearch,tahaemin\/elasticsearch,clintongormley\/elasticsearch,sjohnr\/elasticsearch,tsohil\/elasticsearch,markwalkom\/elasticsearch,Brijeshrpatel9\/elasticsearch,NBSW\/elasticsearch,nazarewk\/elasticsearch,EasonYi\/elasticsearch,ImpressTV\/elasticsearch,drewr\/elasticsearch,wbowling\/elasticsearch,springning\/elasticsearch,apepper\/elasticsearch,lchennup\/elasticsearch,opendatasoft\/elasticsearch,andrestc\/elasticsearch,ouyangkongtong\/elasticsearch,dongjoon-hyun\/elasticsearch,jaynblue\/elasticsearch,Microsoft\/elasticsearch,weipinghe\/elasticsearch,sc0ttkclark\/elasticsearch,infusionsoft\/elasticsearch,sarwarbhuiyan\/elasticsearch,awislowski\/elasticsearch,mcku\/elasticsearch,kkirsche\/elasticsearch,pablocastro\/elasticsearch,MjAbuz\/elasticsearch,xingguang2013\/elasticsearch,lzo\/elasticsearch-1,wittyameta\/elasticsearch,slavau\/elasticsearch,henakamaMSFT\/elasticsearch,kingaj\/elasticsearch,hafkensite\/elasticsearch,nrkkalyan\/elasticsearch,artnowo\/elasticsearch,hirdesh2008\/elasticsearch,mrorii\/elasticsearch,yanjunh\/elasticsearch,masterweb121\/elasticsearch,nellicus\/elasticsearch,mkis-\/elasticsearch,mgalushka\/elasticsearch,strapdata\/elassandra,Collaborne\/elasticsearch,luiseduardohdbackup\/elasticsearch,brandonkearby\/elasticsearch,Chhunlong\/elasticsearch,rmuir\/elasticsearch,vietlq\/elasticsearch,NBSW\/elasticsearch,fred84\/elasticsearch,wuranbo\/elasticsearch,mbrukman\/elasticsearch,nezirus\/elasticsearch,mjason3\/elasticsearch,franklanganke\/elasticsearch,jango2015\/elasticsearch,scottsom\/elasticsearch,camilojd\/elasticsearch,jprante\/elasticsearch,jchampion\/elasticsearch,truemped\/elasticsearch,ThalaivaStars\/OrgRepo1,truemped\/elasticsearch,golubev\/elasticsearch,chrismwendt\/elasticsearch,alexkuk\/elasticsearch,cnfire\/elasticsearch-1,chrismwendt\/elasticsearch,episerver\/elasticsearch,vrkansagara\/elasticsearch,Shepard1212\/elasticsearch,amit-shar\/elasticsearch,geidies\/elasticsearch,jango2015\/elasticsearch,alexkuk\/elasticsearch,markllama\/elasticsearch,markllama\/elasticsearch,drewr\/elasticsearch,s1monw\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,sc0ttkclark\/elasticsearch,lzo\/elasticsearch-1,Fsero\/elasticsearch,anti-social\/elasticsearch,combinatorist\/elasticsearch,pozhidaevak\/elasticsearch,nomoa\/elasticsearch,hanst\/elasticsearch,rento19962\/elasticsearch,alexkuk\/elasticsearch,JSCooke\/elasticsearch,btiernay\/elasticsearch,tsohil\/elasticsearch,sposam\/elasticsearch,geidies\/elasticsearch,szroland\/elasticsearch,ckclark\/elasticsearch,xpandan\/elasticsearch,loconsolutions\/elasticsearch,KimTaehee\/elasticsearch,pranavraman\/elasticsearch,kingaj\/elasticsearch,elancom\/elasticsearch,a2lin\/elasticsearch,fforbeck\/elasticsearch,areek\/elasticsearch,kingaj\/elasticsearch,MjAbuz\/elasticsearch,beiske\/elasticsearch,jaynblue\/elasticsearch,chirilo\/elasticsearch,kevinkluge\/elasticsearch,janmejay\/elasticsearch,umeshdangat\/elasticsearch,heng4fun\/elasticsearch,markwalkom\/elasticsearch,jbertouch\/elasticsearch,a2lin\/elasticsearch,luiseduardohdbackup\/elasticsearch,weipinghe\/elasticsearch,luiseduardohdbackup\/elasticsearch,vvcephei\/elasticsearch,MetSystem\/elasticsearch,socialrank\/elasticsearch,abibell\/elasticsearch,humandb\/elasticsearch,petabytedata\/elasticsearch,hirdesh2008\/elasticsearch,Shepard1212\/elasticsearch,bestwpw\/elasticsearch,jimhooker2002\/elasticsearch,bestwpw\/elasticsearch,kalburgimanjunath\/elasticsearch,ImpressTV\/elasticsearch,janmejay\/elasticsearch,andrejserafim\/elasticsearch,cwurm\/elasticsearch,mm0\/elasticsearch,vietlq\/elasticsearch,javachengwc\/elasticsearch,janmejay\/elasticsearch,zhiqinghuang\/elasticsearch,onegambler\/elasticsearch,masterweb121\/elasticsearch,kevinkluge\/elasticsearch,zhiqinghuang\/elasticsearch,vietlq\/elasticsearch,mrorii\/elasticsearch,ThalaivaStars\/OrgRepo1,zkidkid\/elasticsearch,sscarduzio\/elasticsearch,linglaiyao1314\/elasticsearch,franklanganke\/elasticsearch,dylan8902\/elasticsearch,markllama\/elasticsearch,umeshdangat\/elasticsearch,Charlesdong\/elasticsearch,uschindler\/elasticsearch,Clairebi\/ElasticsearchClone,PhaedrusTheGreek\/elasticsearch,avikurapati\/elasticsearch,yynil\/elasticsearch,combinatorist\/elasticsearch,ckclark\/elasticsearch,dataduke\/elasticsearch,infusionsoft\/elasticsearch,sposam\/elasticsearch,Fsero\/elasticsearch,franklanganke\/elasticsearch,HonzaKral\/elasticsearch,petabytedata\/elasticsearch,fforbeck\/elasticsearch,overcome\/elasticsearch,obourgain\/elasticsearch,beiske\/elasticsearch,iamjakob\/elasticsearch,szroland\/elasticsearch,fernandozhu\/elasticsearch,ulkas\/elasticsearch,zeroctu\/elasticsearch,diendt\/elasticsearch,markharwood\/elasticsearch,xpandan\/elasticsearch,MichaelLiZhou\/elasticsearch,sscarduzio\/elasticsearch,vingupta3\/elasticsearch,nknize\/elasticsearch,thecocce\/elasticsearch,vroyer\/elasticassandra,wbowling\/elasticsearch,luiseduardohdbackup\/elasticsearch,milodky\/elasticsearch,kcompher\/elasticsearch,Asimov4\/elasticsearch,ThalaivaStars\/OrgRepo1,tkssharma\/elasticsearch,mapr\/elasticsearch,wuranbo\/elasticsearch,tkssharma\/elasticsearch,elancom\/elasticsearch,ydsakyclguozi\/elasticsearch,acchen97\/elasticsearch,qwerty4030\/elasticsearch,iantruslove\/elasticsearch,fred84\/elasticsearch,kimimj\/elasticsearch,lks21c\/elasticsearch,truemped\/elasticsearch,tcucchietti\/elasticsearch,davidvgalbraith\/elasticsearch,mbrukman\/elasticsearch,ThalaivaStars\/OrgRepo1,zeroctu\/elasticsearch,zkidkid\/elasticsearch,dpursehouse\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,jsgao0\/elasticsearch,fekaputra\/elasticsearch,combinatorist\/elasticsearch,markharwood\/elasticsearch,yongminxia\/elasticsearch,trangvh\/elasticsearch,zhiqinghuang\/elasticsearch,dylan8902\/elasticsearch,heng4fun\/elasticsearch,liweinan0423\/elasticsearch,beiske\/elasticsearch,huypx1292\/elasticsearch,jpountz\/elasticsearch,pablocastro\/elasticsearch,polyfractal\/elasticsearch,Widen\/elasticsearch,coding0011\/elasticsearch,PhaedrusTheGreek\/elasticsearch,huypx1292\/elasticsearch,MjAbuz\/elasticsearch,xuzha\/elasticsearch,micpalmia\/elasticsearch,huanzhong\/elasticsearch,koxa29\/elasticsearch,andrestc\/elasticsearch,skearns64\/elasticsearch,cwurm\/elasticsearch,polyfractal\/elasticsearch,IanvsPoplicola\/elasticsearch,sneivandt\/elasticsearch,kunallimaye\/elasticsearch,huypx1292\/elasticsearch,VukDukic\/elasticsearch,henakamaMSFT\/elasticsearch,masterweb121\/elasticsearch,milodky\/elasticsearch,kkirsche\/elasticsearch,mcku\/elasticsearch,adrianbk\/elasticsearch,adrianbk\/elasticsearch,martinstuga\/elasticsearch,socialrank\/elasticsearch,smflorentino\/elasticsearch,naveenhooda2000\/elasticsearch,tkssharma\/elasticsearch,ckclark\/elasticsearch,Asimov4\/elasticsearch,mnylen\/elasticsearch,sarwarbhuiyan\/elasticsearch,anti-social\/elasticsearch,MisterAndersen\/elasticsearch,njlawton\/elasticsearch,nomoa\/elasticsearch,elasticdog\/elasticsearch,Stacey-Gammon\/elasticsearch,jw0201\/elastic,caengcjd\/elasticsearch,abibell\/elasticsearch,glefloch\/elasticsearch,lydonchandra\/elasticsearch,vroyer\/elasticassandra,ThiagoGarciaAlves\/elasticsearch,vroyer\/elassandra,lzo\/elasticsearch-1,lydonchandra\/elasticsearch,kkirsche\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,girirajsharma\/elasticsearch,thecocce\/elasticsearch,hanswang\/elasticsearch,girirajsharma\/elasticsearch,EasonYi\/elasticsearch,rajanm\/elasticsearch,TonyChai24\/ESSource,Ansh90\/elasticsearch,lydonchandra\/elasticsearch,liweinan0423\/elasticsearch,huypx1292\/elasticsearch,lchennup\/elasticsearch,spiegela\/elasticsearch,vrkansagara\/elasticsearch,Uiho\/elasticsearch,truemped\/elasticsearch,strapdata\/elassandra-test,petmit\/elasticsearch,hydro2k\/elasticsearch,bestwpw\/elasticsearch,NBSW\/elasticsearch,petabytedata\/elasticsearch,jimhooker2002\/elasticsearch,adrianbk\/elasticsearch,ouyangkongtong\/elasticsearch,lightslife\/elasticsearch,jprante\/elasticsearch,lmtwga\/elasticsearch,AndreKR\/elasticsearch,Liziyao\/elasticsearch,winstonewert\/elasticsearch,jw0201\/elastic,chirilo\/elasticsearch,acchen97\/elasticsearch,socialrank\/elasticsearch,KimTaehee\/elasticsearch,kimimj\/elasticsearch,TonyChai24\/ESSource,jsgao0\/elasticsearch,kingaj\/elasticsearch,MaineC\/elasticsearch,mbrukman\/elasticsearch,mjhennig\/elasticsearch,girirajsharma\/elasticsearch,micpalmia\/elasticsearch,AshishThakur\/elasticsearch,nazarewk\/elasticsearch,bestwpw\/elasticsearch,himanshuag\/elasticsearch,bawse\/elasticsearch,VukDukic\/elasticsearch,awislowski\/elasticsearch,18098924759\/elasticsearch,abibell\/elasticsearch,mjhennig\/elasticsearch,Stacey-Gammon\/elasticsearch,hirdesh2008\/elasticsearch,xuzha\/elasticsearch,Shepard1212\/elasticsearch,overcome\/elasticsearch,maddin2016\/elasticsearch,strapdata\/elassandra,MisterAndersen\/elasticsearch,kubum\/elasticsearch,kevinkluge\/elasticsearch,MichaelLiZhou\/elasticsearch,aglne\/elasticsearch,jbertouch\/elasticsearch,ESamir\/elasticsearch,girirajsharma\/elasticsearch,hechunwen\/elasticsearch,fred84\/elasticsearch,mrorii\/elasticsearch,girirajsharma\/elasticsearch,hanst\/elasticsearch,Fsero\/elasticsearch,hirdesh2008\/elasticsearch,knight1128\/elasticsearch,khiraiwa\/elasticsearch,loconsolutions\/elasticsearch,tahaemin\/elasticsearch,nrkkalyan\/elasticsearch,aglne\/elasticsearch,hanswang\/elasticsearch,yuy168\/elasticsearch,jeteve\/elasticsearch,markllama\/elasticsearch,springning\/elasticsearch,henakamaMSFT\/elasticsearch,bestwpw\/elasticsearch,amaliujia\/elasticsearch,ouyangkongtong\/elasticsearch,iacdingping\/elasticsearch,yynil\/elasticsearch,xingguang2013\/elasticsearch,bawse\/elasticsearch,AshishThakur\/elasticsearch,Chhunlong\/elasticsearch,kcompher\/elasticsearch,sdauletau\/elasticsearch,ivansun1010\/elasticsearch,Ansh90\/elasticsearch,jsgao0\/elasticsearch,szroland\/elasticsearch,liweinan0423\/elasticsearch,onegambler\/elasticsearch,mjason3\/elasticsearch,rajanm\/elasticsearch,areek\/elasticsearch,yuy168\/elasticsearch,s1monw\/elasticsearch,jango2015\/elasticsearch,Charlesdong\/elasticsearch,mgalushka\/elasticsearch,amaliujia\/elasticsearch,tsohil\/elasticsearch,apepper\/elasticsearch,amit-shar\/elasticsearch,sneivandt\/elasticsearch,kcompher\/elasticsearch,LeoYao\/elasticsearch,wayeast\/elasticsearch,maddin2016\/elasticsearch,masaruh\/elasticsearch,anti-social\/elasticsearch,mjhennig\/elasticsearch,nellicus\/elasticsearch,pranavraman\/elasticsearch,MaineC\/elasticsearch,wangyuxue\/elasticsearch,shreejay\/elasticsearch,kunallimaye\/elasticsearch,hydro2k\/elasticsearch,xpandan\/elasticsearch,JackyMai\/elasticsearch,cnfire\/elasticsearch-1,yuy168\/elasticsearch,ricardocerq\/elasticsearch,rento19962\/elasticsearch,kimimj\/elasticsearch,palecur\/elasticsearch,Kakakakakku\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,franklanganke\/elasticsearch,mjhennig\/elasticsearch,fooljohnny\/elasticsearch,caengcjd\/elasticsearch,jprante\/elasticsearch,Shepard1212\/elasticsearch,opendatasoft\/elasticsearch,jw0201\/elastic,sc0ttkclark\/elasticsearch,alexbrasetvik\/elasticsearch,iamjakob\/elasticsearch,mute\/elasticsearch,episerver\/elasticsearch,wbowling\/elasticsearch,18098924759\/elasticsearch,areek\/elasticsearch,mnylen\/elasticsearch,KimTaehee\/elasticsearch,nezirus\/elasticsearch,TonyChai24\/ESSource,mjhennig\/elasticsearch,mute\/elasticsearch,vingupta3\/elasticsearch,Flipkart\/elasticsearch,vrkansagara\/elasticsearch,jaynblue\/elasticsearch,mapr\/elasticsearch,tebriel\/elasticsearch,markllama\/elasticsearch,alexshadow007\/elasticsearch,abibell\/elasticsearch,Flipkart\/elasticsearch,wimvds\/elasticsearch,kenshin233\/elasticsearch,feiqitian\/elasticsearch,slavau\/elasticsearch,Chhunlong\/elasticsearch,kalimatas\/elasticsearch,umeshdangat\/elasticsearch,strapdata\/elassandra5-rc,markllama\/elasticsearch,mohit\/elasticsearch,andrejserafim\/elasticsearch,adrianbk\/elasticsearch,xpandan\/elasticsearch,overcome\/elasticsearch,weipinghe\/elasticsearch,adrianbk\/elasticsearch,ouyangkongtong\/elasticsearch,karthikjaps\/elasticsearch,Clairebi\/ElasticsearchClone,StefanGor\/elasticsearch,hechunwen\/elasticsearch,Fsero\/elasticsearch,markharwood\/elasticsearch,socialrank\/elasticsearch,wbowling\/elasticsearch,EasonYi\/elasticsearch,Shekharrajak\/elasticsearch,mm0\/elasticsearch,sscarduzio\/elasticsearch,nezirus\/elasticsearch,vvcephei\/elasticsearch,pritishppai\/elasticsearch,tebriel\/elasticsearch,artnowo\/elasticsearch,kalburgimanjunath\/elasticsearch,C-Bish\/elasticsearch,sc0ttkclark\/elasticsearch,mohit\/elasticsearch,Ansh90\/elasticsearch,feiqitian\/elasticsearch,ckclark\/elasticsearch,jango2015\/elasticsearch,kalimatas\/elasticsearch,dantuffery\/elasticsearch,alexshadow007\/elasticsearch,ydsakyclguozi\/elasticsearch,brandonkearby\/elasticsearch,zhiqinghuang\/elasticsearch,achow\/elasticsearch,LeoYao\/elasticsearch,Ansh90\/elasticsearch,Uiho\/elasticsearch,camilojd\/elasticsearch,JSCooke\/elasticsearch,sreeramjayan\/elasticsearch,khiraiwa\/elasticsearch,areek\/elasticsearch,fernandozhu\/elasticsearch,qwerty4030\/elasticsearch,himanshuag\/elasticsearch,elasticdog\/elasticsearch,Charlesdong\/elasticsearch,jbertouch\/elasticsearch,cnfire\/elasticsearch-1,opendatasoft\/elasticsearch,amaliujia\/elasticsearch,wbowling\/elasticsearch,yongminxia\/elasticsearch,IanvsPoplicola\/elasticsearch,tcucchietti\/elasticsearch,socialrank\/elasticsearch,xuzha\/elasticsearch,sposam\/elasticsearch,huanzhong\/elasticsearch"} {"commit":"491a6bba3b7bf81eebef2ac8c8060c3cc87e3553","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Code Valet\n\n== Problem\n\nThe link:https:\/\/jenkins.io[Jenkins] project faces a challenge unusual to other\ncontemporary CI\/CD tools in that it is downloaded and executed on a user's\nmachine(s) rather than as a service. While this offers quite a lot of\nflexibility to the end-user, it puts Jenkins developers at a disadvantage for a\nnumber of reasons:\n\n. There is no direct return line of feedback from where their code is executed.\n No error reports, etc.\n. There is a significant lag between developers releasing code and it being\n adopted\/used.\n\n\n== Solution\n\nA free service which provides basic CI\/CD functions with Jenkins as the core\nplatform. With a regularly updated \"Jenkins distribution\" consisting of many of\nthe key plugins which people are used, built from `master`, and rolled through\nthe Code Valet cluster:\n\n. Blue Ocean\n. GitHub Branch Source\n. Pipeline\n. ???\n","new_contents":"= Code Valet\n\n== Problem\n\nThe link:https:\/\/jenkins.io[Jenkins] project faces a challenge unusual to other\ncontemporary CI\/CD tools in that it is downloaded and executed on a user's\nmachine(s) rather than as a service. While this offers quite a lot of\nflexibility to the end-user, it puts Jenkins developers at a disadvantage for a\nnumber of reasons:\n\n. There is no direct return line of feedback from where their code is executed.\n No error reports, etc.\n. There is a significant lag between developers releasing code and it being\n adopted\/used.\n\n\n== Solution\n\nA free service which provides basic CI\/CD functions with Jenkins as the core\nplatform. With a regularly updated \"Jenkins distribution\" consisting of many of\nthe key plugins which people are used, built from `master`, and rolled through\nthe Code Valet cluster:\n\n. Blue Ocean\n. GitHub Branch Source\n. Pipeline\n. ???\n\n\n\n== Architecture\n\nWARNING: This is most definitely not set in stone\n\n\n=== Control Plane\n\n\nA Kubernetes cluster which will act as the control plane\n\n\n=== Management\n\nA webapp which acts as the primary controller, user interface for non-Jenkins\nspecific tasks:\n\n. Surfacing logs from the Jenkins masters\n.. Searchable logs for exceptions, etc\n. Listing statistics from the other running Jenkins masters\n.. Number of Pipelines active\n\n=== Jenkins\n\nEach GitHub user will have a per-user allocated Jenkins master which executes\nas a container in this control plane. For example: `rtyler.codevalet.io` would\ncontain all the Pipelines which can be found inside of\n`https:\/\/github.com\/rtyler`\n\nTo start, new Jenkins masters will be configured manual (beta testing!) and\nusers will have access primarily through to\nlink:https:\/\/jenkins.io\/projects\/blueocean[Blue Ocean], but will **not** be\ngiven administrative access to the Jenkins master.\n\n\nGroovy scripting will set up some VM templates which will provide dynamically\nprovisioned agents in a cloud provider such as Azure, with a fixed quota, i.e.\n2 active machines per.\n","subject":"Add a current thought dump on the architecture","message":"Add a current thought dump on the architecture\n","lang":"AsciiDoc","license":"agpl-3.0","repos":"CodeValet\/codevalet,CodeValet\/codevalet,CodeValet\/codevalet"} {"commit":"d3dd93e8627518363d6fb693492ead644a28a015","old_file":"README.adoc","new_file":"README.adoc","old_contents":"MrTweety Analytic\n=================\n\nimage:https:\/\/travis-ci.org\/kubahorak\/mrtweety-analytic.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/kubahorak\/mrtweety-analytic\"]\n\nAnalyses tweets in realtime to figure out the most popular hashtags.\n\nUses https:\/\/spark.apache.org[Apache Spark] and a https:\/\/github.com\/spark-packages\/dstream-twitter[Twitter DStream] to\nretrieve top 5 tweets in a sliding window of 5 minutes. This result is stored in a JSON file and a small JS app is\nproducing a small website of this data.\n\nEverything is included into one Docker container together with Nginx. Just run\n\n .\/gradlew buildImage\n\nTo use the Spark module alone, build it like so:\n\n .\/gradlew :spark:shadowJar\n\nOptionally you can change the default path of the result JSON file by setting the environment variable\n`RESULT_FILENAME`.\nFinally submit the \"fat jar\" to your Spark for execution:\n\n spark-submit --class \"cz.zee.mrtweety.analytic.spark.Application\" --master local[4] build\/libs\/spark-all.jar \n\n\n(c) 2016 Jakub Horák\n","new_contents":"MrTweety Analytic\n=================\n\nimage:https:\/\/travis-ci.org\/kubahorak\/mrtweety-analytic.svg?branch=master[\"Build Status\", link=\"https:\/\/travis-ci.org\/kubahorak\/mrtweety-analytic\"]\n\nAnalyses tweets in realtime to figure out the most popular hashtags.\n\nUses https:\/\/spark.apache.org[Apache Spark] and a https:\/\/github.com\/spark-packages\/dstream-twitter[Twitter DStream] to\nretrieve top 5 tweets in a sliding window of 5 minutes. This result is stored in a JSON file and a small JS app is\nproducing a small website of this data.\n\nEverything is included into one Docker container together with Nginx. Just run\n\n .\/gradlew buildImage\n\nTo use the Spark module alone, build it like so:\n\n .\/gradlew :spark:shadowJar\n\nOptionally you can change the default path of the result JSON file by setting the environment variable\n`RESULT_FILENAME`.\n\n export RESULT_FILENAME=\/tmp\/analytic.json\n\nFinally submit the \"fat jar\" to your Spark for execution:\n\n spark-submit --class \"cz.zee.mrtweety.analytic.spark.Application\" --master local[4] build\/libs\/spark-all.jar \n\n\n(c) 2016 Jakub Horák\n","subject":"Add example setting environment variable.","message":"Add example setting environment variable.\n","lang":"AsciiDoc","license":"mit","repos":"kubahorak\/mrtweety-analytic,kubahorak\/mrtweety-analytic,kubahorak\/mrtweety-analytic,kubahorak\/mrtweety-analytic"} {"commit":"5bc73badf94b2132478d92ce065fe7adf288225a","old_file":"conoha\/README.adoc","new_file":"conoha\/README.adoc","old_contents":"= conoha\/\n\nAnsible playbook for my conoha instance.\n\n\n== Current setups\n\n\n|====\n|Memory |1GB\n|Disk |SSD 50GB\n|OS |Ubuntu 14.4 trusty\n|====\n\n\n== Pre configurations\n\n* Add normal user: `adduser NAME`\n** Add `.ssh\/authorized_keys` file for the user\n** Add the user to `sudo` group: `gpasswd -a NAME sudo`\n\n\n== Usage\n\nIssue\n\n----\nansible-playbook ansible.yml --ask-become-pass\n----\n","new_contents":"= conoha\/\n\nAnsible playbook for my conoha instance.\n\n\n== Current setups\n\n\n|====\n|Memory |1GB\n|Disk |SSD 50GB\n|OS |Ubuntu 14.4 trusty\n|====\n\n\n== Pre configurations\n\n* Add normal user: `adduser NAME`\n** Add `.ssh\/authorized_keys` file for the user\n** Add the user to `sudo` group: `gpasswd -a NAME sudo`\n\n\n== Usage\n\nIssue\n\n----\nansible-playbook ansible.yml --ask-become-pass\n----\n\nOptionally, when you want to update mydns entry:\n\n----\nansible-playbook ansible.yml --extra-vars=mydns_password=xxxx\n----\n","subject":"Add about updating mydns entry","message":"Add about updating mydns entry\n","lang":"AsciiDoc","license":"unlicense","repos":"10sr\/machine-setups,10sr\/machine-setups,10sr\/server-provisions,10sr\/machine-setups,10sr\/server-provisions,10sr\/machine-setups"} {"commit":"c7ae27873ab98952018be682f4d5193bac9ebd33","old_file":"using_images\/index.adoc","new_file":"using_images\/index.adoc","old_contents":"= Overview\n{product-author}\n{product-version}\n:data-uri:\n:icons:\n:experimental:\n\nUse these topics to discover the different\nlink:..\/architecture\/core_concepts\/builds_and_image_streams.html#source-build[S2I\n(Source-to-Image)], database, and other Docker images that are available for\nOpenShift users.\n\nifdef::openshift-enterprise[]\nRed Hat's official container images are provided in the Red Hat Registry at\nhttps:\/\/registry.access.redhat.com[registry.access.redhat.com]. OpenShift's\nsupported S2I, database, and Jenkins images are provided in the\nhttps:\/\/access.redhat.com\/search\/#\/container-images?q=openshift3&p=1&sort=relevant&rows=12&srch=any&documentKind=ImageRepository[*openshift3*\nrepository] in the Red Hat Registry. For example,\n`registry.access.redhat.com\/openshift3\/nodejs-010-rhel7` for the Node.js image.\n\nThe xPaaS middleware images are provided in their respective product\nrepositories on the Red Hat Registry, but suffixed with a *-openshift*. For\nexample, `registry.access.redhat.com\/jboss-eap-6\/eap64-openshift` for\nthe JBoss EAP image.\nendif::[]\n","new_contents":"= Overview\n{product-author}\n{product-version}\n:data-uri:\n:icons:\n:experimental:\n\nUse these topics to discover the different\nlink:..\/architecture\/core_concepts\/builds_and_image_streams.html#source-build[S2I\n(Source-to-Image)], database, and other Docker images that are available for\nOpenShift users.\n\nifdef::openshift-enterprise,openshift-dedicated[]\nRed Hat's official container images are provided in the Red Hat Registry at\nhttps:\/\/registry.access.redhat.com[registry.access.redhat.com]. OpenShift's\nsupported S2I, database, and Jenkins images are provided in the\nhttps:\/\/access.redhat.com\/search\/#\/container-images?q=openshift3&p=1&sort=relevant&rows=12&srch=any&documentKind=ImageRepository[*openshift3*\nrepository] in the Red Hat Registry. For example,\n`registry.access.redhat.com\/openshift3\/nodejs-010-rhel7` for the Node.js image.\n\nThe xPaaS middleware images are provided in their respective product\nrepositories on the Red Hat Registry, but suffixed with a *-openshift*. For\nexample, `registry.access.redhat.com\/jboss-eap-6\/eap64-openshift` for\nthe JBoss EAP image.\nendif::[]\n","subject":"Make image support blurb appear for Dedicated.","message":"Make image support blurb appear for Dedicated.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"xiaoping378\/openshift-docs,xiaoping378\/openshift-docs,xiaoping378\/openshift-docs"} {"commit":"1aeb422572ef3e75dbda2b5778b1c23b49b7b19c","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Hawkular Android Client\n\nThis repository contains the source code for the Hawkular Android application.\n\n== License\n\n* http:\/\/www.apache.org\/licenses\/LICENSE-2.0.html[Apache Version 2.0]\n\n== Building\n\nifdef::env-github[]\n[link=https:\/\/travis-ci.org\/hawkular\/android-client]\nimage:https:\/\/travis-ci.org\/hawkular\/android-client.svg[\"Build Status\", link=\"https:\/\/travis-ci.org\/hawkular\/android-client\"]\nendif::[]\n\nYou will need JDK 1.7+ installed.\nGradle, Android SDK and all dependencies will be downloaded automatically.\n\n----\n$ .\/gradlew clean assembleDebug\n----\n","new_contents":"= Hawkular Android Client\n\nThis repository contains the source code for the Hawkular Android application.\n\n== License\n\n* http:\/\/www.apache.org\/licenses\/LICENSE-2.0.html[Apache Version 2.0]\n\n== Building\n\nifdef::env-github[]\n[link=https:\/\/travis-ci.org\/hawkular\/hawkular-android-client]\nimage:https:\/\/travis-ci.org\/hawkular\/hawkular-android-client.svg[\"Build Status\", link=\"https:\/\/travis-ci.org\/hawkular\/hawkular-android-client\"]\nendif::[]\n\nYou will need JDK 1.7+ installed.\nGradle, Android SDK and all dependencies will be downloaded automatically.\n\n----\n$ .\/gradlew clean assembleDebug\n----\n","subject":"Change Travis badge regarding changed repository path.","message":"Change Travis badge regarding changed repository path.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"pg301\/hawkular-android-client,hawkular\/hawkular-android-client,sauravvishal8797\/hawkular-android-client,pilhuhn\/hawkular-android-client,anuj1708\/hawkular-android-buff,anuj1708\/hawkular-android-client,danielpassos\/hawkular-android-client,shubhamvashisht\/hawkular-android-client"} {"commit":"14b966f04fe4c1d9578ae5598adbc56458f41a36","old_file":"README.asciidoc","new_file":"README.asciidoc","old_contents":"Domotica\n========\n\nA simple webapp for a home automation system based around a Siemens S7-300 PLC,\nusing libs7comm-python. It's intended to be used from smartphones.\n\nNote that this is not a generic solution. It's an implementation for one\nspecific house.\n\nRequirements\n============\n * Django\n * python-daemon\n","new_contents":"Domotica\n========\n\nA simple webapp for a home automation system based around a Siemens S7-300 PLC,\nusing libs7comm-python. It's intended to be used from smartphones.\n\nNote that this is not a generic solution. It's an implementation for one\nspecific house.\n\nRequirements\n============\n * Django\n * python-daemon\n * python-rrdtool\n","subject":"Document that we require python-rrdtool","message":"Document that we require python-rrdtool\n","lang":"AsciiDoc","license":"bsd-2-clause","repos":"kprovost\/domotica,kprovost\/domotica"} {"commit":"97ae6133ded84ebaa882948ba9f72f11c3816d05","old_file":"documentation\/src\/docs\/asciidoc\/release-notes.adoc","new_file":"documentation\/src\/docs\/asciidoc\/release-notes.adoc","old_contents":"[[release-notes]]\n== Release Notes\n\n:numbered!:\n\ninclude::release-notes-5.1.0-M1.adoc[]\n\ninclude::release-notes-5.0.2.adoc[]\n\ninclude::release-notes-5.0.1.adoc[]\n\ninclude::release-notes-5.0.0.adoc[]\n\ninclude::release-notes-5.0.0-RC3.adoc[]\n\ninclude::release-notes-5.0.0-RC2.adoc[]\n\ninclude::release-notes-5.0.0-RC1.adoc[]\n\ninclude::release-notes-5.0.0-M6.adoc[]\n\ninclude::release-notes-5.0.0-M5.adoc[]\n\ninclude::release-notes-5.0.0-M4.adoc[]\n\ninclude::release-notes-5.0.0-M3.adoc[]\n\ninclude::release-notes-5.0.0-M2.adoc[]\n\ninclude::release-notes-5.0.0-M1.adoc[]\n\ninclude::release-notes-5.0.0-ALPHA.adoc[]\n\n:numbered:\n","new_contents":"[[release-notes]]\n== Release Notes\n\n:numbered!:\n\ninclude::release-notes-5.1.0-M2.adoc[]\n\ninclude::release-notes-5.1.0-M1.adoc[]\n\ninclude::release-notes-5.0.2.adoc[]\n\ninclude::release-notes-5.0.1.adoc[]\n\ninclude::release-notes-5.0.0.adoc[]\n\ninclude::release-notes-5.0.0-RC3.adoc[]\n\ninclude::release-notes-5.0.0-RC2.adoc[]\n\ninclude::release-notes-5.0.0-RC1.adoc[]\n\ninclude::release-notes-5.0.0-M6.adoc[]\n\ninclude::release-notes-5.0.0-M5.adoc[]\n\ninclude::release-notes-5.0.0-M4.adoc[]\n\ninclude::release-notes-5.0.0-M3.adoc[]\n\ninclude::release-notes-5.0.0-M2.adoc[]\n\ninclude::release-notes-5.0.0-M1.adoc[]\n\ninclude::release-notes-5.0.0-ALPHA.adoc[]\n\n:numbered:\n","subject":"Include 5.1.0-M2 release notes in main document","message":"Include 5.1.0-M2 release notes in main document\n","lang":"AsciiDoc","license":"epl-1.0","repos":"sbrannen\/junit-lambda,junit-team\/junit-lambda"} {"commit":"776a8c58ff05f2a298354fae1bc6f854e6c1317c","old_file":"neo4j-ogm-docs\/src\/main\/asciidoc\/appendix\/faq.adoc","new_file":"neo4j-ogm-docs\/src\/main\/asciidoc\/appendix\/faq.adoc","old_contents":"[appendix]\n[[faq]]\n= Frequently Asked Questions (FAQ)\n\n[qanda]\nWhat is the difference between Neo4j OGM and Spring Data Neo4j (SDN)?::\n Spring Data Neo4j (SDN) uses the OGM under the covers. It's like Spring Data JPA, where JPA\/Hibernate underly it. Most\n of the power of SDN actually comes from the OGM.\n","new_contents":"[appendix]\n[[faq]]\n= Frequently Asked Questions (FAQ)\n\n[qanda]\nWhat is the difference between Neo4j OGM and Spring Data Neo4j (SDN)?::\n Spring Data Neo4j (SDN) uses the OGM under the covers. It's like Spring Data JPA, where JPA\/Hibernate underly it. Most\n of the power of SDN actually comes from the OGM.\n\nHow are labels generated when using inheritance?::\n All concrete classes generate a label, abstract classes and interfaces not.\n If any kind of class or interface gets annotated with @NodeEntity or @NodeEntity(label=\"customLabel\") it will generate a label.\n Any class annotated with @Transient will not generate a label.\n","subject":"Add label class hierarchy information to FAQ","message":"Add label class hierarchy information to FAQ\n","lang":"AsciiDoc","license":"apache-2.0","repos":"neo4j\/neo4j-ogm,neo4j\/neo4j-ogm,neo4j\/neo4j-ogm,neo4j\/neo4j-ogm"} {"commit":"41320354738016442bb559e89b0d9275c5088f17","old_file":"osxclient.adoc","new_file":"osxclient.adoc","old_contents":"= Building Mac OS X client =\n\nOS X licensing means we can't just simply provide a build vm via vagrant as\nwe've done for linux. Creating a vagrant-ready VM is fairly simple though.\n\n== Client Build VM ==\n\nInstall link:https:\/\/www.vagrantup.com\/[Vagrant], buy VMware Fusion, and buy the\nlink:https:\/\/www.vagrantup.com\/vmware[Vagrant VMWare Fusion plugin]. It's\npossible to get this to work with VirtualBox, which is free, but it's missing\nsome useful features such as shared folders.\n\nCreate a new\nlink:http:\/\/ilostmynotes.blogspot.com\/2015\/02\/building-os-x-vagrant-vmware-fusion-vm.html[vagrant-ready\nOS X VM in VMWare Fusion]. The essentials are:\n\n * Commandline Tools for XCode\n * PackageMaker.app for building .pkg's\n * VMWare Tools\n * Vagrant ssh and sudo access\n","new_contents":"= Building Mac OS X client =\n\nOS X licensing means we can't just simply provide a build vm via vagrant as\nwe've done for linux. Creating a vagrant-ready VM is fairly simple though.\n\n== Client Build VM ==\n\nInstall link:https:\/\/www.vagrantup.com\/[Vagrant], buy VMware Fusion, and buy the\nlink:https:\/\/www.vagrantup.com\/vmware[Vagrant VMWare Fusion plugin]. It's\npossible to get this to work with VirtualBox, which is free, but it's missing\nsome useful features such as shared folders.\n\nCreate a new\nlink:http:\/\/ilostmynotes.blogspot.com\/2015\/02\/building-os-x-vagrant-vmware-fusion-vm.html[vagrant-ready\nOS X VM in VMWare Fusion]. We use OS X 10.8 (Mountain Lion) as a base so we can install on systems at least that old, the build scripts are tested and work on that version. The essentials are:\n\n * Commandline Tools for XCode\n * PackageMaker.app for building .pkg's\n * VMWare Tools\n * Vagrant ssh and sudo access\n","subject":"Add note about using mountain lion as base version","message":"Add note about using mountain lion as base version","lang":"AsciiDoc","license":"apache-2.0","repos":"google\/grr-doc"} {"commit":"10fe3afd5b002d120d0fe7a30388ffba6d0639c3","old_file":"docs\/reference\/data-rollup-transform.asciidoc","new_file":"docs\/reference\/data-rollup-transform.asciidoc","old_contents":"[[data-rollup-transform]]\n= Roll up or transform your data\n\n[partintro]\n--\n\n{es} offers the following methods for manipulating your data:\n\nifdef::permanently-unreleased-branch[]\n\n* <>\n+\nA rollup aggregates an index's time series data and stores the results in new\nread-only index. For example, you can roll up hourly data into daily or weekly\nsummaries.\n\nendif::[]\nifndef::permanently-unreleased-branch[]\n\n* <>\n+\ninclude::rollup\/index.asciidoc[tag=rollup-intro]\n\nendif::[]\n\n* <>\n+\ninclude::transform\/transforms.asciidoc[tag=transform-intro]\n\n--\n\ninclude::rollup\/index.asciidoc[]\n\ninclude::transform\/index.asciidoc[]\n","new_contents":"[[data-rollup-transform]]\n= Roll up or transform your data\n\n[partintro]\n--\n\n{es} offers the following methods for manipulating your data:\n\n* <>\n+\ninclude::rollup\/index.asciidoc[tag=rollup-intro]\n\n* <>\n+\ninclude::transform\/transforms.asciidoc[tag=transform-intro]\n\n--\n\ninclude::rollup\/index.asciidoc[]\n\ninclude::transform\/index.asciidoc[]\n","subject":"Remove ifdefs for rollup refactor","message":"[DOCS] Remove ifdefs for rollup refactor\n\nRemoves some ifdef conditionals overlooked in #70885. That PR removed\ndocs for the rollup refactor.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"GlenRSmith\/elasticsearch,GlenRSmith\/elasticsearch,GlenRSmith\/elasticsearch,GlenRSmith\/elasticsearch,GlenRSmith\/elasticsearch"} {"commit":"e09d10aa1f55232d79341c5a443a3dd1c6bf0ff7","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Vert.x-Web\n\nimage:https:\/\/vertx.ci.cloudbees.com\/buildStatus\/icon?job=vert.x3-web[\"Build Status\",link=\"https:\/\/vertx.ci.cloudbees.com\/view\/vert.x-3\/job\/vert.x3-web\/\"]\nimage:https:\/\/img.shields.io\/maven-central\/v\/io.vertx\/vertx-web.svg[\"Maven Central\"]\nimage:https:\/\/bestpractices.coreinfrastructure.org\/projects\/540\/badge[\"CII Best Practices\",link=\"https:\/\/bestpractices.coreinfrastructure.org\/projects\/540\"]\n\nVert.x-Web is a set of building blocks for building web applications with Vert.x. Think of it as a Swiss Army Knife for building\nmodern, scalable, web apps.\n\nPlease see the in source asciidoc link:vertx-web\/src\/main\/asciidoc\/index.adoc[documentation] or the main http:\/\/vertx.io\/docs\/#web[documentation] on the web-site for a full description\nof Vert.x-Web:\n\n== Template engines\n\nTemplate engine implementations are in the template engine sub-project.\n","new_contents":"= Vert.x-Web\n\nimage:https:\/\/vertx.ci.cloudbees.com\/buildStatus\/icon?job=vert.x3-web[\"Build Status\",link=\"https:\/\/vertx.ci.cloudbees.com\/view\/vert.x-3\/job\/vert.x3-web\/\"]\nimage:https:\/\/img.shields.io\/maven-central\/v\/io.vertx\/vertx-web.svg[\"Maven Central\"]\nimage:https:\/\/bestpractices.coreinfrastructure.org\/projects\/540\/badge[\"CII Best Practices\",link=\"https:\/\/bestpractices.coreinfrastructure.org\/projects\/540\"]\n\nVert.x-Web is a set of building blocks for building web applications with Vert.x. Think of it as a Swiss Army Knife for building\nmodern, scalable, web apps.\n\nPlease see the main documentation on the web-site for a full description:\n\n* https:\/\/vertx.io\/docs\/#web[Web-site documentation]\n\n== Template engines\n\nTemplate engine implementations are in the template engine sub-project.\n","subject":"Remove link to in-source docs","message":"Remove link to in-source docs\n","lang":"AsciiDoc","license":"apache-2.0","repos":"InfoSec812\/vertx-web,aesteve\/vertx-web,aesteve\/vertx-web,InfoSec812\/vertx-web,InfoSec812\/vertx-web,InfoSec812\/vertx-web,vert-x3\/vertx-web,vert-x3\/vertx-web,vert-x3\/vertx-web,aesteve\/vertx-web,InfoSec812\/vertx-web,vert-x3\/vertx-web,aesteve\/vertx-web,InfoSec812\/vertx-web,aesteve\/vertx-web,vert-x3\/vertx-web"} {"commit":"adef2716eee3da7ed3bc70a6586202c3dfd27c07","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= java-libbitcoinconsensus\n\nimage:https:\/\/travis-ci.org\/dexX7\/java-libbitcoinconsensus.svg[\"Build Status\", link=\"https:\/\/travis-ci.org\/dexX7\/java-libbitcoinconsensus\"]\n\nA https:\/\/github.com\/java-native-access\/jna[JNA] binding and Java wrapper for https:\/\/github.com\/bitcoin\/bitcoin\/blob\/master\/doc\/shared-libraries.md#bitcoinconsensus[libbitcoinconsensus].\n\nSee the http:\/\/dexx7.github.io\/java-libbitcoinconsensus\/[Javadoc] for an overview of this project.\n\nWARNING: This software is EXPERIMENTAL software. USE AT YOUR OWN RISK.\n\n== Setup\n\n git clone https:\/\/github.com\/dexX7\/java-libbitcoinconsensus.git\n cd java-libbitcoinconsensus\/\n\n== Building\n\n .\/gradlew build\n\n\n== Testing\n\n .\/gradlew test\n\nNOTE: `libbitcoinconsensus` must be available in the class path or as system library.\n","new_contents":"= java-libbitcoinconsensus\n\nimage:https:\/\/travis-ci.org\/dexX7\/java-libbitcoinconsensus.svg[\"Build Status\", link=\"https:\/\/travis-ci.org\/dexX7\/java-libbitcoinconsensus\"]\n\nA https:\/\/github.com\/java-native-access\/jna[JNA] binding and Java wrapper for https:\/\/github.com\/bitcoin\/bitcoin\/blob\/master\/doc\/shared-libraries.md#bitcoinconsensus[libbitcoinconsensus].\n\nSee the http:\/\/dexx7.github.io\/java-libbitcoinconsensus\/[Javadoc] for an overview of this project.\n\nWARNING: This software is EXPERIMENTAL software. USE AT YOUR OWN RISK.\n\n== Setup\n\n git clone https:\/\/github.com\/dexX7\/java-libbitcoinconsensus.git\n cd java-libbitcoinconsensus\/\n\n== Building\n\n .\/gradlew build\n\n\n== Testing\n\n .\/gradlew test\n\nNOTE: `libbitcoinconsensus` must be available in the class path or as system library.\n\n== Platform Notes\n\n=== Mac OS X\n\nOn Mac OS X you can put `libbitcoinconsensus.dylib` in `src\/main\/resources\/`.\n\n","subject":"Add notes for Mac OS X","message":"Add notes for Mac OS X","lang":"AsciiDoc","license":"mit","repos":"dexX7\/java-libbitcoinconsensus,dexX7\/java-libbitcoinconsensus"} {"commit":"04d087c105430a6fa81af1c5adbe31caae10a01b","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= asciidoctor-chrome-extension, AsciiDoc.js Chrome Extension\nGuillaume Grossetie\n:sources: https:\/\/github.com\/Mogztter\/asciidoctor-chrome-extension\n:license: https:\/\/github.com\/Mogztter\/asciidoctor-chrome-extension\/blob\/master\/LICENSE\n\nThis project uses https:\/\/github.com\/asciidoctor\/asciidoctor.js[Asciidoctor.js] to render AsciiDoc as HTML inside Chrome!\n\n== Copyright\n\nCopyright (C) 2013 Guillaume Grossetie.\nFree use of this software is granted under the terms of the MIT License.\n\nSee the {license}[LICENSE] file for details.","new_contents":"= asciidoctor-chrome-extension, Asciidoctor Chrome Extension\nGuillaume Grossetie\n:sources: https:\/\/github.com\/asciidoctor\/asciidoctor-chrome-extension\n:license: https:\/\/github.com\/asciidoctor\/asciidoctor-chrome-extension\/blob\/master\/LICENSE\n\nThis project uses https:\/\/github.com\/asciidoctor\/asciidoctor.js[Asciidoctor.js] to render AsciiDoc as HTML inside Chrome!\n\n== Copyright\n\nCopyright (C) 2013 Guillaume Grossetie.\nFree use of this software is granted under the terms of the MIT License.\n\nSee the {license}[LICENSE] file for details.","subject":"Update AsciiDoc.js to Asciidoctor in the title and the repository URL (asciidoctor org)","message":"Update AsciiDoc.js to Asciidoctor in the title and the repository URL (asciidoctor org)\n","lang":"AsciiDoc","license":"mit","repos":"asciidoctor\/asciidoctor-chrome-extension,asciidoctor\/asciidoctor-chrome-extension,rotty3000\/asciidoctor-chrome-extension,Mogztter\/asciidoctor-chrome-extension,bbucko\/asciidoctor-chrome-extension,bbucko\/asciidoctor-chrome-extension,rotty3000\/asciidoctor-chrome-extension,rotty3000\/asciidoctor-chrome-extension,Mogztter\/asciidoctor-chrome-extension,bbucko\/asciidoctor-chrome-extension,asciidoctor\/asciidoctor-chrome-extension"} {"commit":"401e2c8b6f0a4f63c29a8615052571aa41f2e6ce","old_file":"spring-boot-starters\/README.adoc","new_file":"spring-boot-starters\/README.adoc","old_contents":"= Starter POMs\n\nSpring Boot Starters are a set of convenient dependency descriptors that you can include\nin your application. You get a one-stop-shop for all the Spring and related technology\nthat you need without having to hunt through sample code and copy paste loads of\ndependency descriptors. For example, if you want to get started using Spring and\nJPA for database access just include the `spring-boot-starter-data-jpa` dependency in\nyour project, and you are good to go.\n\nFor complete details see the\nhttp:\/\/docs.spring.io\/spring-boot\/docs\/current-SNAPSHOT\/reference\/htmlsingle\/#using-boot-starter-poms[reference documentation]\n\n== Community Contributions\nIf you create a starter for a technology that is not already in the standard list we can\nlist it here. Just send a pull request for this page.\n\n|===\n| Name | Location\n\n| https:\/\/code.google.com\/p\/wro4j\/[WRO4J]\n| https:\/\/github.com\/sbuettner\/spring-boot-autoconfigure-wro4j\n|===\n","new_contents":"= Starter POMs\n\nSpring Boot Starters are a set of convenient dependency descriptors that you can include\nin your application. You get a one-stop-shop for all the Spring and related technology\nthat you need without having to hunt through sample code and copy paste loads of\ndependency descriptors. For example, if you want to get started using Spring and\nJPA for database access just include the `spring-boot-starter-data-jpa` dependency in\nyour project, and you are good to go.\n\nFor complete details see the\nhttp:\/\/docs.spring.io\/spring-boot\/docs\/current-SNAPSHOT\/reference\/htmlsingle\/#using-boot-starter-poms[reference documentation]\n\n== Community Contributions\nIf you create a starter for a technology that is not already in the standard list we can\nlist it here. Just send a pull request for this page.\n\n|===\n| Name | Location\n\n| https:\/\/code.google.com\/p\/wro4j\/[WRO4J]\n| https:\/\/github.com\/sbuettner\/spring-boot-autoconfigure-wro4j\n\n| http:\/\/projects.spring.io\/spring-batch\/[Spring Batch] (Advanced usage)\n| https:\/\/github.com\/codecentric\/spring-boot-starter-batch-web\n|===\n","subject":"Add codecentric Spring Batch Starter Info","message":"Add codecentric Spring Batch Starter Info\n\nFixes gh-870\n","lang":"AsciiDoc","license":"apache-2.0","repos":"rickeysu\/spring-boot,deki\/spring-boot,afroje-reshma\/spring-boot-sample,lingounet\/spring-boot,panbiping\/spring-boot,domix\/spring-boot,felipeg48\/spring-boot,cleverjava\/jenkins2-course-spring-boot,mebinjacob\/spring-boot,nevenc-pivotal\/spring-boot,joansmith\/spring-boot,NetoDevel\/spring-boot,balajinsr\/spring-boot,murilobr\/spring-boot,fireshort\/spring-boot,allyjunio\/spring-boot,liupd\/spring-boot,donthadineshkumar\/spring-boot,nareshmiriyala\/spring-boot,mohican0607\/spring-boot,kamilszymanski\/spring-boot,sbcoba\/spring-boot,rickeysu\/spring-boot,habuma\/spring-boot,hello2009chen\/spring-boot,jayarampradhan\/spring-boot,wilkinsona\/spring-boot,tsachev\/spring-boot,aahlenst\/spring-boot,lcardito\/spring-boot,mevasaroj\/jenkins2-course-spring-boot,trecloux\/spring-boot,AstaTus\/spring-boot,vandan16\/Vandan,satheeshmb\/spring-boot,orangesdk\/spring-boot,rajendra-chola\/jenkins2-course-spring-boot,hehuabing\/spring-boot,ApiSecRay\/spring-boot,crackien\/spring-boot,joshthornhill\/spring-boot,xwjxwj30abc\/spring-boot,kayelau\/spring-boot,aahlenst\/spring-boot,joshthornhill\/spring-boot,mouadtk\/spring-boot,izestrea\/spring-boot,nurkiewicz\/spring-boot,olivergierke\/spring-boot,javyzheng\/spring-boot,thomasdarimont\/spring-boot,roymanish\/spring-boot,MrMitchellMoore\/spring-boot,soul2zimate\/spring-boot,rstirling\/spring-boot,hehuabing\/spring-boot,vandan16\/Vandan,mlc0202\/spring-boot,wwadge\/spring-boot,gorcz\/spring-boot,M3lkior\/spring-boot,bsodzik\/spring-boot,mebinjacob\/spring-boot,lburgazzoli\/spring-boot,johnktims\/spring-boot,xialeizhou\/spring-boot,xiaoleiPENG\/my-project,mike-kukla\/spring-boot,hello2009chen\/spring-boot,spring-projects\/spring-boot,lburgazzoli\/spring-boot,ihoneymon\/spring-boot,damoyang\/spring-boot,mouadtk\/spring-boot,smilence1986\/spring-boot,isopov\/spring-boot,michael-simons\/spring-boot,ractive\/spring-boot,VitDevelop\/spring-boot,murilobr\/spring-boot,ChunPIG\/spring-boot,sankin\/spring-boot,AngusZhu\/spring-boot,xc145214\/spring-boot,AstaTus\/spring-boot,yuxiaole\/spring-boot,allyjunio\/spring-boot,jeremiahmarks\/spring-boot,PraveenkumarShethe\/spring-boot,RichardCSantana\/spring-boot,royclarkson\/spring-boot,Pokbab\/spring-boot,lingounet\/spring-boot,michael-simons\/spring-boot,felipeg48\/spring-boot,forestqqqq\/spring-boot,ptahchiev\/spring-boot,damoyang\/spring-boot,meloncocoo\/spring-boot,nevenc-pivotal\/spring-boot,jayarampradhan\/spring-boot,brettwooldridge\/spring-boot,ApiSecRay\/spring-boot,yunbian\/spring-boot,sebastiankirsch\/spring-boot,ydsakyclguozi\/spring-boot,drumonii\/spring-boot,jayarampradhan\/spring-boot,gorcz\/spring-boot,meloncocoo\/spring-boot,joshthornhill\/spring-boot,crackien\/spring-boot,roymanish\/spring-boot,cmsandiga\/spring-boot,mosoft521\/spring-boot,marcellodesales\/spring-boot,xc145214\/spring-boot,okba1\/spring-boot,eonezhang\/spring-boot,xc145214\/spring-boot,donhuvy\/spring-boot,trecloux\/spring-boot,dreis2211\/spring-boot,tbadie\/spring-boot,pnambiarsf\/spring-boot,mrumpf\/spring-boot,DeezCashews\/spring-boot,frost2014\/spring-boot,rweisleder\/spring-boot,tbadie\/spring-boot,sbcoba\/spring-boot,axelfontaine\/spring-boot,balajinsr\/spring-boot,vaseemahmed01\/spring-boot,spring-projects\/spring-boot,zhanhb\/spring-boot,minmay\/spring-boot,kamilszymanski\/spring-boot,christian-posta\/spring-boot,philwebb\/spring-boot,xingguang2013\/spring-boot,christian-posta\/spring-boot,joansmith\/spring-boot,lingounet\/spring-boot,xiaoleiPENG\/my-project,javyzheng\/spring-boot,nareshmiriyala\/spring-boot,zhanhb\/spring-boot,yunbian\/spring-boot,donhuvy\/spring-boot,nisuhw\/spring-boot,vaseemahmed01\/spring-boot,olivergierke\/spring-boot,sungha\/spring-boot,PraveenkumarShethe\/spring-boot,scottfrederick\/spring-boot,keithsjohnson\/spring-boot,RichardCSantana\/spring-boot,izeye\/spring-boot,zorosteven\/spring-boot,qerub\/spring-boot,master-slave\/spring-boot,ApiSecRay\/spring-boot,joshiste\/spring-boot,johnktims\/spring-boot,vakninr\/spring-boot,nandakishorm\/spring-boot,nelswadycki\/spring-boot,fogone\/spring-boot,fjlopez\/spring-boot,patrikbeno\/spring-boot,imranansari\/spring-boot,peteyan\/spring-boot,DONIKAN\/spring-boot,donthadineshkumar\/spring-boot,kdvolder\/spring-boot,clarklj001\/spring-boot,bjornlindstrom\/spring-boot,brettwooldridge\/spring-boot,tbadie\/spring-boot,ChunPIG\/spring-boot,peteyan\/spring-boot,ractive\/spring-boot,duandf35\/spring-boot,mosoft521\/spring-boot,tbbost\/spring-boot,shakuzen\/spring-boot,Chomeh\/spring-boot,Chomeh\/spring-boot,jack-luj\/spring-boot,sebastiankirsch\/spring-boot,coolcao\/spring-boot,fogone\/spring-boot,buobao\/spring-boot,Xaerxess\/spring-boot,candrews\/spring-boot,meftaul\/spring-boot,satheeshmb\/spring-boot,gauravbrills\/spring-boot,huangyugui\/spring-boot,domix\/spring-boot,afroje-reshma\/spring-boot-sample,yunbian\/spring-boot,ractive\/spring-boot,ojacquemart\/spring-boot,hehuabing\/spring-boot,rweisleder\/spring-boot,lburgazzoli\/spring-boot,frost2014\/spring-boot,bsodzik\/spring-boot,ollie314\/spring-boot,mrumpf\/spring-boot,smayoorans\/spring-boot,thomasdarimont\/spring-boot,vakninr\/spring-boot,mouadtk\/spring-boot,forestqqqq\/spring-boot,duandf35\/spring-boot,166yuan\/spring-boot,mbenson\/spring-boot,liupd\/spring-boot,damoyang\/spring-boot,domix\/spring-boot,vandan16\/Vandan,mabernardo\/spring-boot,jjankar\/spring-boot,Charkui\/spring-boot,hello2009chen\/spring-boot,hklv\/spring-boot,scottfrederick\/spring-boot,prasenjit-net\/spring-boot,Nowheresly\/spring-boot,keithsjohnson\/spring-boot,Makhlab\/spring-boot,ameraljovic\/spring-boot,jmnarloch\/spring-boot,lokbun\/spring-boot,AngusZhu\/spring-boot,mevasaroj\/jenkins2-course-spring-boot,jayeshmuralidharan\/spring-boot,huangyugui\/spring-boot,hqrt\/jenkins2-course-spring-boot,DeezCashews\/spring-boot,rmoorman\/spring-boot,DONIKAN\/spring-boot,hqrt\/jenkins2-course-spring-boot,mike-kukla\/spring-boot,mouadtk\/spring-boot,RichardCSantana\/spring-boot,xc145214\/spring-boot,jxblum\/spring-boot,krmcbride\/spring-boot,olivergierke\/spring-boot,buobao\/spring-boot,Pokbab\/spring-boot,vpavic\/spring-boot,nghialunhaiha\/spring-boot,roberthafner\/spring-boot,paweldolecinski\/spring-boot,rstirling\/spring-boot,na-na\/spring-boot,ameraljovic\/spring-boot,RobertNickens\/spring-boot,keithsjohnson\/spring-boot,dnsw83\/spring-boot,RishikeshDarandale\/spring-boot,cbtpro\/spring-boot,drumonii\/spring-boot,zorosteven\/spring-boot,zhanhb\/spring-boot,nelswadycki\/spring-boot,eliudiaz\/spring-boot,Buzzardo\/spring-boot,crackien\/spring-boot,michael-simons\/spring-boot,mebinjacob\/spring-boot,Makhlab\/spring-boot,afroje-reshma\/spring-boot-sample,lingounet\/spring-boot,xdweleven\/spring-boot,joansmith\/spring-boot,Pokbab\/spring-boot,tan9\/spring-boot,donhuvy\/spring-boot,eddumelendez\/spring-boot,SPNilsen\/spring-boot,ptahchiev\/spring-boot,liupd\/spring-boot,sungha\/spring-boot,zorosteven\/spring-boot,lif123\/spring-boot,nelswadycki\/spring-boot,bclozel\/spring-boot,murilobr\/spring-boot,candrews\/spring-boot,ollie314\/spring-boot,vpavic\/spring-boot,hqrt\/jenkins2-course-spring-boot,mosen11\/spring-boot,bijukunjummen\/spring-boot,nevenc-pivotal\/spring-boot,pnambiarsf\/spring-boot,fireshort\/spring-boot,jjankar\/spring-boot,mevasaroj\/jenkins2-course-spring-boot,axibase\/spring-boot,meftaul\/spring-boot,mbenson\/spring-boot,tan9\/spring-boot,tiarebalbi\/spring-boot,nisuhw\/spring-boot,lenicliu\/spring-boot,nelswadycki\/spring-boot,bbrouwer\/spring-boot,rams2588\/spring-boot,hklv\/spring-boot,christian-posta\/spring-boot,paddymahoney\/spring-boot,wwadge\/spring-boot,lexandro\/spring-boot,jeremiahmarks\/spring-boot,kdvolder\/spring-boot,jeremiahmarks\/spring-boot,clarklj001\/spring-boot,xialeizhou\/spring-boot,hello2009chen\/spring-boot,liupugong\/spring-boot,tan9\/spring-boot,huangyugui\/spring-boot,jcastaldoFoodEssentials\/spring-boot,nareshmiriyala\/spring-boot,rams2588\/spring-boot,neo4j-contrib\/spring-boot,VitDevelop\/spring-boot,mackeprm\/spring-boot,smayoorans\/spring-boot,srikalyan\/spring-boot,nghiavo\/spring-boot,lexandro\/spring-boot,raiamber1\/spring-boot,sbuettner\/spring-boot,gauravbrills\/spring-boot,orangesdk\/spring-boot,tsachev\/spring-boot,nebhale\/spring-boot,soul2zimate\/spring-boot,yhj630520\/spring-boot,bijukunjummen\/spring-boot,qq83387856\/spring-boot,Buzzardo\/spring-boot,5zzang\/spring-boot,zorosteven\/spring-boot,kiranbpatil\/spring-boot,forestqqqq\/spring-boot,meftaul\/spring-boot,pnambiarsf\/spring-boot,smilence1986\/spring-boot,master-slave\/spring-boot,hqrt\/jenkins2-course-spring-boot,jayarampradhan\/spring-boot,jjankar\/spring-boot,jack-luj\/spring-boot,frost2014\/spring-boot,kiranbpatil\/spring-boot,Charkui\/spring-boot,chrylis\/spring-boot,lenicliu\/spring-boot,VitDevelop\/spring-boot,rmoorman\/spring-boot,jorgepgjr\/spring-boot,kdvolder\/spring-boot,linead\/spring-boot,vandan16\/Vandan,minmay\/spring-boot,chrylis\/spring-boot,akmaharshi\/jenkins,ilayaperumalg\/spring-boot,simonnordberg\/spring-boot,yhj630520\/spring-boot,auvik\/spring-boot,Nowheresly\/spring-boot,sungha\/spring-boot,keithsjohnson\/spring-boot,Chomeh\/spring-boot,linead\/spring-boot,yuxiaole\/spring-boot,mike-kukla\/spring-boot,lburgazzoli\/spring-boot,thomasdarimont\/spring-boot,axelfontaine\/spring-boot,ralenmandao\/spring-boot,10045125\/spring-boot,rizwan18\/spring-boot,mbnshankar\/spring-boot,artembilan\/spring-boot,ojacquemart\/spring-boot,jorgepgjr\/spring-boot,ollie314\/spring-boot,nghialunhaiha\/spring-boot,nandakishorm\/spring-boot,Nowheresly\/spring-boot,meftaul\/spring-boot,srinivasan01\/spring-boot,duandf35\/spring-boot,SaravananParthasarathy\/SPSDemo,jrrickard\/spring-boot,xialeizhou\/spring-boot,jayeshmuralidharan\/spring-boot,jxblum\/spring-boot,dnsw83\/spring-boot,Charkui\/spring-boot,mrumpf\/spring-boot,jvz\/spring-boot,snicoll\/spring-boot,dreis2211\/spring-boot,mabernardo\/spring-boot,jforge\/spring-boot,spring-projects\/spring-boot,bijukunjummen\/spring-boot,AstaTus\/spring-boot,paweldolecinski\/spring-boot,lif123\/spring-boot,mohican0607\/spring-boot,zorosteven\/spring-boot,yunbian\/spring-boot,pvorb\/spring-boot,auvik\/spring-boot,imranansari\/spring-boot,durai145\/spring-boot,jbovet\/spring-boot,dreis2211\/spring-boot,joansmith\/spring-boot,166yuan\/spring-boot,scottfrederick\/spring-boot,end-user\/spring-boot,ilayaperumalg\/spring-boot,damoyang\/spring-boot,aahlenst\/spring-boot,rajendra-chola\/jenkins2-course-spring-boot,rajendra-chola\/jenkins2-course-spring-boot,ApiSecRay\/spring-boot,candrews\/spring-boot,krmcbride\/spring-boot,philwebb\/spring-boot-concourse,PraveenkumarShethe\/spring-boot,jayarampradhan\/spring-boot,SPNilsen\/spring-boot,i007422\/jenkins2-course-spring-boot,akmaharshi\/jenkins,cbtpro\/spring-boot,eliudiaz\/spring-boot,jforge\/spring-boot,kdvolder\/spring-boot,allyjunio\/spring-boot,ojacquemart\/spring-boot,end-user\/spring-boot,philwebb\/spring-boot,qq83387856\/spring-boot,xwjxwj30abc\/spring-boot,lcardito\/spring-boot,durai145\/spring-boot,mohican0607\/spring-boot,M3lkior\/spring-boot,lif123\/spring-boot,MasterRoots\/spring-boot,playleud\/spring-boot,liupugong\/spring-boot,npcode\/spring-boot,M3lkior\/spring-boot,166yuan\/spring-boot,srikalyan\/spring-boot,bclozel\/spring-boot,xingguang2013\/spring-boot,M3lkior\/spring-boot,mbrukman\/spring-boot,domix\/spring-boot,cmsandiga\/spring-boot,zhangshuangquan\/spring-root,cmsandiga\/spring-boot,Pokbab\/spring-boot,linead\/spring-boot,jcastaldoFoodEssentials\/spring-boot,fjlopez\/spring-boot,patrikbeno\/spring-boot,paweldolecinski\/spring-boot,herau\/spring-boot,srikalyan\/spring-boot,designreuse\/spring-boot,VitDevelop\/spring-boot,shangyi0102\/spring-boot,royclarkson\/spring-boot,shakuzen\/spring-boot,smilence1986\/spring-boot,kiranbpatil\/spring-boot,christian-posta\/spring-boot,jmnarloch\/spring-boot,bjornlindstrom\/spring-boot,habuma\/spring-boot,mbenson\/spring-boot,raiamber1\/spring-boot,DONIKAN\/spring-boot,pvorb\/spring-boot,donhuvy\/spring-boot,tbbost\/spring-boot,kayelau\/spring-boot,nebhale\/spring-boot,allyjunio\/spring-boot,eonezhang\/spring-boot,jorgepgjr\/spring-boot,simonnordberg\/spring-boot,nandakishorm\/spring-boot,SaravananParthasarathy\/SPSDemo,peteyan\/spring-boot,soul2zimate\/spring-boot,rizwan18\/spring-boot,smayoorans\/spring-boot,axibase\/spring-boot,soul2zimate\/spring-boot,drunklite\/spring-boot,satheeshmb\/spring-boot,MasterRoots\/spring-boot,existmaster\/spring-boot,drunklite\/spring-boot,allyjunio\/spring-boot,zhangshuangquan\/spring-root,okba1\/spring-boot,rmoorman\/spring-boot,ihoneymon\/spring-boot,Nowheresly\/spring-boot,huangyugui\/spring-boot,roymanish\/spring-boot,vaseemahmed01\/spring-boot,mdeinum\/spring-boot,liupugong\/spring-boot,yangdd1205\/spring-boot,snicoll\/spring-boot,gregturn\/spring-boot,mbrukman\/spring-boot,sungha\/spring-boot,mlc0202\/spring-boot,MrMitchellMoore\/spring-boot,nevenc-pivotal\/spring-boot,gorcz\/spring-boot,spring-projects\/spring-boot,ApiSecRay\/spring-boot,axibase\/spring-boot,prasenjit-net\/spring-boot,fjlopez\/spring-boot,htynkn\/spring-boot,prasenjit-net\/spring-boot,bjornlindstrom\/spring-boot,dnsw83\/spring-boot,imranansari\/spring-boot,linead\/spring-boot,royclarkson\/spring-boot,donhuvy\/spring-boot,Buzzardo\/spring-boot,vaseemahmed01\/spring-boot,olivergierke\/spring-boot,M3lkior\/spring-boot,raiamber1\/spring-boot,pnambiarsf\/spring-boot,end-user\/spring-boot,yuxiaole\/spring-boot,neo4j-contrib\/spring-boot,tbbost\/spring-boot,fulvio-m\/spring-boot,vakninr\/spring-boot,yhj630520\/spring-boot,donhuvy\/spring-boot,jforge\/spring-boot,bclozel\/spring-boot,joshiste\/spring-boot,kayelau\/spring-boot,prasenjit-net\/spring-boot,rickeysu\/spring-boot,SPNilsen\/spring-boot,mouadtk\/spring-boot,royclarkson\/spring-boot,simonnordberg\/spring-boot,sankin\/spring-boot,akmaharshi\/jenkins,afroje-reshma\/spring-boot-sample,mlc0202\/spring-boot,okba1\/spring-boot,vaseemahmed01\/spring-boot,jack-luj\/spring-boot,joshiste\/spring-boot,sankin\/spring-boot,wilkinsona\/spring-boot,AngusZhu\/spring-boot,domix\/spring-boot,jmnarloch\/spring-boot,ralenmandao\/spring-boot,rweisleder\/spring-boot,orangesdk\/spring-boot,brettwooldridge\/spring-boot,xwjxwj30abc\/spring-boot,designreuse\/spring-boot,tan9\/spring-boot,auvik\/spring-boot,RishikeshDarandale\/spring-boot,sungha\/spring-boot,dfa1\/spring-boot,zhanhb\/spring-boot,sankin\/spring-boot,hehuabing\/spring-boot,eonezhang\/spring-boot,mosen11\/spring-boot,dfa1\/spring-boot,existmaster\/spring-boot,fogone\/spring-boot,bbrouwer\/spring-boot,cbtpro\/spring-boot,jbovet\/spring-boot,nebhale\/spring-boot,sbcoba\/spring-boot,philwebb\/spring-boot-concourse,javyzheng\/spring-boot,cmsandiga\/spring-boot,hklv\/spring-boot,qq83387856\/spring-boot,nisuhw\/spring-boot,michael-simons\/spring-boot,roymanish\/spring-boot,jcastaldoFoodEssentials\/spring-boot,philwebb\/spring-boot,rams2588\/spring-boot,panbiping\/spring-boot,mbenson\/spring-boot,tbbost\/spring-boot,jmnarloch\/spring-boot,liupd\/spring-boot,duandf35\/spring-boot,mbrukman\/spring-boot,tiarebalbi\/spring-boot,jxblum\/spring-boot,thomasdarimont\/spring-boot,existmaster\/spring-boot,deki\/spring-boot,mlc0202\/spring-boot,bsodzik\/spring-boot,lucassaldanha\/spring-boot,huangyugui\/spring-boot,johnktims\/spring-boot,ilayaperumalg\/spring-boot,gauravbrills\/spring-boot,yuxiaole\/spring-boot,htynkn\/spring-boot,brettwooldridge\/spring-boot,prakashme\/spring-boot,michael-simons\/spring-boot,designreuse\/spring-boot,eric-stanley\/spring-boot,lokbun\/spring-boot,zhanhb\/spring-boot,snicoll\/spring-boot,jxblum\/spring-boot,RobertNickens\/spring-boot,meftaul\/spring-boot,eddumelendez\/spring-boot,ojacquemart\/spring-boot,olivergierke\/spring-boot,yunbian\/spring-boot,spring-projects\/spring-boot,balajinsr\/spring-boot,designreuse\/spring-boot,izestrea\/spring-boot,DeezCashews\/spring-boot,brettwooldridge\/spring-boot,rmoorman\/spring-boot,habuma\/spring-boot,rajendra-chola\/jenkins2-course-spring-boot,johnktims\/spring-boot,jcastaldoFoodEssentials\/spring-boot,mrumpf\/spring-boot,paddymahoney\/spring-boot,5zzang\/spring-boot,cmsandiga\/spring-boot,wilkinsona\/spring-boot,eric-stanley\/spring-boot,ojacquemart\/spring-boot,jforge\/spring-boot,cleverjava\/jenkins2-course-spring-boot,izeye\/spring-boot,navarrogabriela\/spring-boot,isopov\/spring-boot,liupugong\/spring-boot,soul2zimate\/spring-boot,rstirling\/spring-boot,bbrouwer\/spring-boot,clarklj001\/spring-boot,tiarebalbi\/spring-boot,habuma\/spring-boot,mosen11\/spring-boot,Nowheresly\/spring-boot,fulvio-m\/spring-boot,master-slave\/spring-boot,imranansari\/spring-boot,pvorb\/spring-boot,166yuan\/spring-boot,i007422\/jenkins2-course-spring-boot,ptahchiev\/spring-boot,auvik\/spring-boot,xingguang2013\/spring-boot,hklv\/spring-boot,lexandro\/spring-boot,mdeinum\/spring-boot,mebinjacob\/spring-boot,htynkn\/spring-boot,bclozel\/spring-boot,NetoDevel\/spring-boot,minmay\/spring-boot,AstaTus\/spring-boot,sbuettner\/spring-boot,neo4j-contrib\/spring-boot,5zzang\/spring-boot,bijukunjummen\/spring-boot,shangyi0102\/spring-boot,isopov\/spring-boot,royclarkson\/spring-boot,Charkui\/spring-boot,xdweleven\/spring-boot,wilkinsona\/spring-boot,thomasdarimont\/spring-boot,tiarebalbi\/spring-boot,xdweleven\/spring-boot,jvz\/spring-boot,prakashme\/spring-boot,herau\/spring-boot,hqrt\/jenkins2-course-spring-boot,paddymahoney\/spring-boot,5zzang\/spring-boot,shangyi0102\/spring-boot,npcode\/spring-boot,xialeizhou\/spring-boot,lenicliu\/spring-boot,jxblum\/spring-boot,fireshort\/spring-boot,javyzheng\/spring-boot,ihoneymon\/spring-boot,drumonii\/spring-boot,izeye\/spring-boot,nevenc-pivotal\/spring-boot,deki\/spring-boot,izeye\/spring-boot,felipeg48\/spring-boot,satheeshmb\/spring-boot,liupugong\/spring-boot,bbrouwer\/spring-boot,duandf35\/spring-boot,qerub\/spring-boot,pnambiarsf\/spring-boot,jvz\/spring-boot,auvik\/spring-boot,playleud\/spring-boot,herau\/spring-boot,spring-projects\/spring-boot,deki\/spring-boot,ihoneymon\/spring-boot,mevasaroj\/jenkins2-course-spring-boot,NetoDevel\/spring-boot,kamilszymanski\/spring-boot,pvorb\/spring-boot,artembilan\/spring-boot,RobertNickens\/spring-boot,mohican0607\/spring-boot,RobertNickens\/spring-boot,vpavic\/spring-boot,fogone\/spring-boot,mebinjacob\/spring-boot,npcode\/spring-boot,mbenson\/spring-boot,orangesdk\/spring-boot,forestqqqq\/spring-boot,jorgepgjr\/spring-boot,scottfrederick\/spring-boot,clarklj001\/spring-boot,mosoft521\/spring-boot,buobao\/spring-boot,qerub\/spring-boot,aahlenst\/spring-boot,rickeysu\/spring-boot,philwebb\/spring-boot-concourse,candrews\/spring-boot,axelfontaine\/spring-boot,roymanish\/spring-boot,axibase\/spring-boot,peteyan\/spring-boot,joansmith\/spring-boot,Xaerxess\/spring-boot,herau\/spring-boot,afroje-reshma\/spring-boot-sample,xiaoleiPENG\/my-project,mevasaroj\/jenkins2-course-spring-boot,philwebb\/spring-boot,jrrickard\/spring-boot,coolcao\/spring-boot,gorcz\/spring-boot,lucassaldanha\/spring-boot,mdeinum\/spring-boot,imranansari\/spring-boot,ptahchiev\/spring-boot,tbadie\/spring-boot,RainPlanter\/spring-boot,Xaerxess\/spring-boot,roberthafner\/spring-boot,jrrickard\/spring-boot,srinivasan01\/spring-boot,lexandro\/spring-boot,playleud\/spring-boot,lcardito\/spring-boot,fulvio-m\/spring-boot,mdeinum\/spring-boot,dnsw83\/spring-boot,fulvio-m\/spring-boot,eonezhang\/spring-boot,mbnshankar\/spring-boot,bsodzik\/spring-boot,mackeprm\/spring-boot,trecloux\/spring-boot,drumonii\/spring-boot,Xaerxess\/spring-boot,prakashme\/spring-boot,deki\/spring-boot,nurkiewicz\/spring-boot,joshthornhill\/spring-boot,eddumelendez\/spring-boot,existmaster\/spring-boot,marcellodesales\/spring-boot,dreis2211\/spring-boot,vakninr\/spring-boot,xwjxwj30abc\/spring-boot,ChunPIG\/spring-boot,JiweiWong\/spring-boot,rajendra-chola\/jenkins2-course-spring-boot,jack-luj\/spring-boot,lburgazzoli\/spring-boot,SaravananParthasarathy\/SPSDemo,nghialunhaiha\/spring-boot,NetoDevel\/spring-boot,dfa1\/spring-boot,nghialunhaiha\/spring-boot,eddumelendez\/spring-boot,nebhale\/spring-boot,durai145\/spring-boot,lenicliu\/spring-boot,MasterRoots\/spring-boot,cleverjava\/jenkins2-course-spring-boot,satheeshmb\/spring-boot,MrMitchellMoore\/spring-boot,joshthornhill\/spring-boot,ydsakyclguozi\/spring-boot,166yuan\/spring-boot,zhangshuangquan\/spring-root,vpavic\/spring-boot,joshiste\/spring-boot,navarrogabriela\/spring-boot,jforge\/spring-boot,JiweiWong\/spring-boot,nghiavo\/spring-boot,gauravbrills\/spring-boot,nisuhw\/spring-boot,nelswadycki\/spring-boot,xdweleven\/spring-boot,joshiste\/spring-boot,ptahchiev\/spring-boot,ydsakyclguozi\/spring-boot,frost2014\/spring-boot,fireshort\/spring-boot,mosoft521\/spring-boot,jrrickard\/spring-boot,rams2588\/spring-boot,ilayaperumalg\/spring-boot,jrrickard\/spring-boot,fjlopez\/spring-boot,donthadineshkumar\/spring-boot,jxblum\/spring-boot,felipeg48\/spring-boot,xiaoleiPENG\/my-project,xingguang2013\/spring-boot,chrylis\/spring-boot,smilence1986\/spring-boot,buobao\/spring-boot,srinivasan01\/spring-boot,jvz\/spring-boot,keithsjohnson\/spring-boot,simonnordberg\/spring-boot,ollie314\/spring-boot,end-user\/spring-boot,sbcoba\/spring-boot,ilayaperumalg\/spring-boot,linead\/spring-boot,rizwan18\/spring-boot,dnsw83\/spring-boot,jayeshmuralidharan\/spring-boot,tsachev\/spring-boot,Buzzardo\/spring-boot,NetoDevel\/spring-boot,SPNilsen\/spring-boot,kiranbpatil\/spring-boot,rams2588\/spring-boot,i007422\/jenkins2-course-spring-boot,RishikeshDarandale\/spring-boot,patrikbeno\/spring-boot,DONIKAN\/spring-boot,rweisleder\/spring-boot,ilayaperumalg\/spring-boot,izeye\/spring-boot,akmaharshi\/jenkins,shakuzen\/spring-boot,vandan16\/Vandan,nghiavo\/spring-boot,ihoneymon\/spring-boot,simonnordberg\/spring-boot,okba1\/spring-boot,mbogoevici\/spring-boot,RobertNickens\/spring-boot,kamilszymanski\/spring-boot,jjankar\/spring-boot,jbovet\/spring-boot,DeezCashews\/spring-boot,Chomeh\/spring-boot,fjlopez\/spring-boot,RishikeshDarandale\/spring-boot,existmaster\/spring-boot,habuma\/spring-boot,Chomeh\/spring-boot,Xaerxess\/spring-boot,marcellodesales\/spring-boot,lucassaldanha\/spring-boot,candrews\/spring-boot,mrumpf\/spring-boot,mabernardo\/spring-boot,rweisleder\/spring-boot,zhangshuangquan\/spring-root,eric-stanley\/spring-boot,Makhlab\/spring-boot,DONIKAN\/spring-boot,aahlenst\/spring-boot,xc145214\/spring-boot,pvorb\/spring-boot,ydsakyclguozi\/spring-boot,durai145\/spring-boot,mabernardo\/spring-boot,artembilan\/spring-boot,kamilszymanski\/spring-boot,gregturn\/spring-boot,hklv\/spring-boot,nareshmiriyala\/spring-boot,vpavic\/spring-boot,yhj630520\/spring-boot,na-na\/spring-boot,xwjxwj30abc\/spring-boot,qq83387856\/spring-boot,forestqqqq\/spring-boot,philwebb\/spring-boot,balajinsr\/spring-boot,mbrukman\/spring-boot,DeezCashews\/spring-boot,shakuzen\/spring-boot,chrylis\/spring-boot,lokbun\/spring-boot,srikalyan\/spring-boot,navarrogabriela\/spring-boot,nareshmiriyala\/spring-boot,PraveenkumarShethe\/spring-boot,ractive\/spring-boot,philwebb\/spring-boot,RainPlanter\/spring-boot,jayeshmuralidharan\/spring-boot,mbnshankar\/spring-boot,MrMitchellMoore\/spring-boot,shangyi0102\/spring-boot,drunklite\/spring-boot,patrikbeno\/spring-boot,panbiping\/spring-boot,fireshort\/spring-boot,ydsakyclguozi\/spring-boot,patrikbeno\/spring-boot,mike-kukla\/spring-boot,shakuzen\/spring-boot,ChunPIG\/spring-boot,axelfontaine\/spring-boot,RainPlanter\/spring-boot,felipeg48\/spring-boot,10045125\/spring-boot,cleverjava\/jenkins2-course-spring-boot,prakashme\/spring-boot,gregturn\/spring-boot,nurkiewicz\/spring-boot,akmaharshi\/jenkins,balajinsr\/spring-boot,mdeinum\/spring-boot,artembilan\/spring-boot,johnktims\/spring-boot,okba1\/spring-boot,orangesdk\/spring-boot,SPNilsen\/spring-boot,Makhlab\/spring-boot,Buzzardo\/spring-boot,eddumelendez\/spring-boot,mabernardo\/spring-boot,kiranbpatil\/spring-boot,wwadge\/spring-boot,bclozel\/spring-boot,sankin\/spring-boot,philwebb\/spring-boot-concourse,PraveenkumarShethe\/spring-boot,rweisleder\/spring-boot,SaravananParthasarathy\/SPSDemo,lucassaldanha\/spring-boot,krmcbride\/spring-boot,JiweiWong\/spring-boot,i007422\/jenkins2-course-spring-boot,mbrukman\/spring-boot,nisuhw\/spring-boot,sbcoba\/spring-boot,playleud\/spring-boot,tan9\/spring-boot,coolcao\/spring-boot,meloncocoo\/spring-boot,na-na\/spring-boot,jbovet\/spring-boot,shangyi0102\/spring-boot,bclozel\/spring-boot,sbuettner\/spring-boot,cbtpro\/spring-boot,mohican0607\/spring-boot,rstirling\/spring-boot,axibase\/spring-boot,eliudiaz\/spring-boot,tiarebalbi\/spring-boot,kayelau\/spring-boot,neo4j-contrib\/spring-boot,dfa1\/spring-boot,roberthafner\/spring-boot,master-slave\/spring-boot,artembilan\/spring-boot,drunklite\/spring-boot,mdeinum\/spring-boot,yuxiaole\/spring-boot,srinivasan01\/spring-boot,joshiste\/spring-boot,hello2009chen\/spring-boot,trecloux\/spring-boot,lif123\/spring-boot,rmoorman\/spring-boot,10045125\/spring-boot,na-na\/spring-boot,sbuettner\/spring-boot,cbtpro\/spring-boot,rstirling\/spring-boot,Pokbab\/spring-boot,mike-kukla\/spring-boot,paweldolecinski\/spring-boot,murilobr\/spring-boot,yhj630520\/spring-boot,mackeprm\/spring-boot,lif123\/spring-boot,roberthafner\/spring-boot,damoyang\/spring-boot,izestrea\/spring-boot,AstaTus\/spring-boot,npcode\/spring-boot,yangdd1205\/spring-boot,lcardito\/spring-boot,coolcao\/spring-boot,minmay\/spring-boot,eliudiaz\/spring-boot,ihoneymon\/spring-boot,paddymahoney\/spring-boot,herau\/spring-boot,hehuabing\/spring-boot,RichardCSantana\/spring-boot,ameraljovic\/spring-boot,vakninr\/spring-boot,mosoft521\/spring-boot,jeremiahmarks\/spring-boot,navarrogabriela\/spring-boot,wwadge\/spring-boot,sebastiankirsch\/spring-boot,xialeizhou\/spring-boot,bsodzik\/spring-boot,AngusZhu\/spring-boot,izestrea\/spring-boot,crackien\/spring-boot,bbrouwer\/spring-boot,htynkn\/spring-boot,jeremiahmarks\/spring-boot,mackeprm\/spring-boot,tiarebalbi\/spring-boot,nghiavo\/spring-boot,ptahchiev\/spring-boot,JiweiWong\/spring-boot,coolcao\/spring-boot,kayelau\/spring-boot,lokbun\/spring-boot,mbogoevici\/spring-boot,meloncocoo\/spring-boot,raiamber1\/spring-boot,neo4j-contrib\/spring-boot,RishikeshDarandale\/spring-boot,MasterRoots\/spring-boot,nebhale\/spring-boot,christian-posta\/spring-boot,tsachev\/spring-boot,panbiping\/spring-boot,mbogoevici\/spring-boot,rizwan18\/spring-boot,panbiping\/spring-boot,lcardito\/spring-boot,MrMitchellMoore\/spring-boot,prakashme\/spring-boot,jorgepgjr\/spring-boot,sebastiankirsch\/spring-boot,nghiavo\/spring-boot,Charkui\/spring-boot,nurkiewicz\/spring-boot,sbuettner\/spring-boot,lenicliu\/spring-boot,marcellodesales\/spring-boot,donthadineshkumar\/spring-boot,minmay\/spring-boot,fulvio-m\/spring-boot,RichardCSantana\/spring-boot,cleverjava\/jenkins2-course-spring-boot,isopov\/spring-boot,bjornlindstrom\/spring-boot,paweldolecinski\/spring-boot,murilobr\/spring-boot,shakuzen\/spring-boot,marcellodesales\/spring-boot,kdvolder\/spring-boot,chrylis\/spring-boot,VitDevelop\/spring-boot,eliudiaz\/spring-boot,eric-stanley\/spring-boot,philwebb\/spring-boot-concourse,krmcbride\/spring-boot,dfa1\/spring-boot,RainPlanter\/spring-boot,michael-simons\/spring-boot,Buzzardo\/spring-boot,AngusZhu\/spring-boot,xingguang2013\/spring-boot,xdweleven\/spring-boot,rizwan18\/spring-boot,gauravbrills\/spring-boot,donthadineshkumar\/spring-boot,npcode\/spring-boot,wilkinsona\/spring-boot,end-user\/spring-boot,ractive\/spring-boot,master-slave\/spring-boot,smayoorans\/spring-boot,meloncocoo\/spring-boot,scottfrederick\/spring-boot,ollie314\/spring-boot,jack-luj\/spring-boot,wwadge\/spring-boot,Makhlab\/spring-boot,ralenmandao\/spring-boot,jjankar\/spring-boot,dreis2211\/spring-boot,durai145\/spring-boot,frost2014\/spring-boot,roberthafner\/spring-boot,drumonii\/spring-boot,i007422\/jenkins2-course-spring-boot,qerub\/spring-boot,prasenjit-net\/spring-boot,na-na\/spring-boot,ralenmandao\/spring-boot,felipeg48\/spring-boot,qerub\/spring-boot,lexandro\/spring-boot,nandakishorm\/spring-boot,zhangshuangquan\/spring-root,liupd\/spring-boot,mosen11\/spring-boot,mbnshankar\/spring-boot,eddumelendez\/spring-boot,htynkn\/spring-boot,xiaoleiPENG\/my-project,tsachev\/spring-boot,JiweiWong\/spring-boot,peteyan\/spring-boot,designreuse\/spring-boot,tbadie\/spring-boot,mbnshankar\/spring-boot,eric-stanley\/spring-boot,yangdd1205\/spring-boot,kdvolder\/spring-boot,sebastiankirsch\/spring-boot,fogone\/spring-boot,jvz\/spring-boot,zhanhb\/spring-boot,izestrea\/spring-boot,RainPlanter\/spring-boot,5zzang\/spring-boot,jcastaldoFoodEssentials\/spring-boot,rickeysu\/spring-boot,habuma\/spring-boot,mackeprm\/spring-boot,navarrogabriela\/spring-boot,wilkinsona\/spring-boot,bijukunjummen\/spring-boot,dreis2211\/spring-boot,drumonii\/spring-boot,krmcbride\/spring-boot,mosen11\/spring-boot,nandakishorm\/spring-boot,paddymahoney\/spring-boot,ameraljovic\/spring-boot,mbenson\/spring-boot,ameraljovic\/spring-boot,jbovet\/spring-boot,ChunPIG\/spring-boot,isopov\/spring-boot,buobao\/spring-boot,bjornlindstrom\/spring-boot,jayeshmuralidharan\/spring-boot,smayoorans\/spring-boot,isopov\/spring-boot,mbogoevici\/spring-boot,htynkn\/spring-boot,axelfontaine\/spring-boot,trecloux\/spring-boot,vpavic\/spring-boot,MasterRoots\/spring-boot,javyzheng\/spring-boot,scottfrederick\/spring-boot,clarklj001\/spring-boot,smilence1986\/spring-boot,tbbost\/spring-boot,gorcz\/spring-boot,mlc0202\/spring-boot,jmnarloch\/spring-boot,tsachev\/spring-boot,playleud\/spring-boot,qq83387856\/spring-boot,drunklite\/spring-boot,raiamber1\/spring-boot,chrylis\/spring-boot,crackien\/spring-boot,mbogoevici\/spring-boot,lingounet\/spring-boot,lucassaldanha\/spring-boot,srinivasan01\/spring-boot,SaravananParthasarathy\/SPSDemo,eonezhang\/spring-boot,srikalyan\/spring-boot,ralenmandao\/spring-boot,lokbun\/spring-boot,aahlenst\/spring-boot,nurkiewicz\/spring-boot,nghialunhaiha\/spring-boot"} {"commit":"b52a19fbbb9e43e5431eb36053210b24ab690713","old_file":"src\/docs\/asciidoc\/index.asciidoc","new_file":"src\/docs\/asciidoc\/index.asciidoc","old_contents":"= Reactor Netty\nStephane Maldini;\n:appversion: 0.5.0 (wiki)\nifndef::host-github[:ext-relative: {outfilesuffix}]\n{appversion}\n:doctype: book\n:icons: font\n\ninclude::net.adoc[]\ninclude::net-tcp.adoc[]\ninclude::net-http.adoc[]\ninclude::net-e2e.adoc[]\n\n","new_contents":"= Reactor Netty\nStephane Maldini;\n:appversion: 0.5.0 (wiki)\nifndef::host-github[:ext-relative: {outfilesuffix}]\n{appversion}\n:doctype: book\n:icons: font\n\ninclude::net.adoc[]\ninclude::net-tcp.adoc[]\ninclude::net-http.adoc[]\n\n","subject":"Fix warning in asciidoc rendering","message":"Fix warning in asciidoc rendering\n","lang":"AsciiDoc","license":"apache-2.0","repos":"reactor\/reactor-netty,reactor\/reactor-netty"} {"commit":"111f0788a2e2580ebc3ecdbb68eda28560a7f5fa","old_file":"docs\/reference\/setup\/important-settings.asciidoc","new_file":"docs\/reference\/setup\/important-settings.asciidoc","old_contents":"[[important-settings]]\n== Important Elasticsearch configuration\n\nWhile Elasticsearch requires very little configuration, there are a number of\nsettings which need to be considered before going into production.\n\nThe following settings *must* be considered before going to production:\n\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n\ninclude::important-settings\/path-settings.asciidoc[]\n\ninclude::important-settings\/cluster-name.asciidoc[]\n\ninclude::important-settings\/node-name.asciidoc[]\n\ninclude::important-settings\/network-host.asciidoc[]\n\ninclude::important-settings\/discovery-settings.asciidoc[]\n\ninclude::important-settings\/heap-size.asciidoc[]\n\ninclude::important-settings\/heap-dump-path.asciidoc[]\n\ninclude::important-settings\/gc-logging.asciidoc[]\n","new_contents":"[[important-settings]]\n== Important Elasticsearch configuration\n\nWhile Elasticsearch requires very little configuration, there are a number of\nsettings which need to be considered before going into production.\n\nThe following settings *must* be considered before going to production:\n\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n* <>\n\ninclude::important-settings\/path-settings.asciidoc[]\n\ninclude::important-settings\/cluster-name.asciidoc[]\n\ninclude::important-settings\/node-name.asciidoc[]\n\ninclude::important-settings\/network-host.asciidoc[]\n\ninclude::important-settings\/discovery-settings.asciidoc[]\n\ninclude::important-settings\/heap-size.asciidoc[]\n\ninclude::important-settings\/heap-dump-path.asciidoc[]\n\ninclude::important-settings\/gc-logging.asciidoc[]\n\ninclude::important-settings\/error-file.asciidoc[]\n","subject":"Add error file docs to important settings","message":"Add error file docs to important settings\n\nThis commit adds the error file documentation to the important settings\ndocs so that the page is actually visible.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"gingerwizard\/elasticsearch,HonzaKral\/elasticsearch,GlenRSmith\/elasticsearch,gingerwizard\/elasticsearch,robin13\/elasticsearch,coding0011\/elasticsearch,GlenRSmith\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,uschindler\/elasticsearch,scorpionvicky\/elasticsearch,rajanm\/elasticsearch,kalimatas\/elasticsearch,robin13\/elasticsearch,gingerwizard\/elasticsearch,s1monw\/elasticsearch,nknize\/elasticsearch,HonzaKral\/elasticsearch,coding0011\/elasticsearch,GlenRSmith\/elasticsearch,coding0011\/elasticsearch,scorpionvicky\/elasticsearch,s1monw\/elasticsearch,GlenRSmith\/elasticsearch,nknize\/elasticsearch,rajanm\/elasticsearch,kalimatas\/elasticsearch,scorpionvicky\/elasticsearch,uschindler\/elasticsearch,kalimatas\/elasticsearch,gingerwizard\/elasticsearch,kalimatas\/elasticsearch,HonzaKral\/elasticsearch,coding0011\/elasticsearch,kalimatas\/elasticsearch,gfyoung\/elasticsearch,gfyoung\/elasticsearch,uschindler\/elasticsearch,gingerwizard\/elasticsearch,uschindler\/elasticsearch,nknize\/elasticsearch,scorpionvicky\/elasticsearch,s1monw\/elasticsearch,gfyoung\/elasticsearch,robin13\/elasticsearch,s1monw\/elasticsearch,uschindler\/elasticsearch,gingerwizard\/elasticsearch,coding0011\/elasticsearch,gfyoung\/elasticsearch,robin13\/elasticsearch,HonzaKral\/elasticsearch,s1monw\/elasticsearch,gfyoung\/elasticsearch,nknize\/elasticsearch,rajanm\/elasticsearch,rajanm\/elasticsearch,rajanm\/elasticsearch,nknize\/elasticsearch,rajanm\/elasticsearch,GlenRSmith\/elasticsearch,robin13\/elasticsearch"} {"commit":"84a26c62428a3c19bb6dce39ba49f431bf468e1e","old_file":"SUPPORT.adoc","new_file":"SUPPORT.adoc","old_contents":"= Getting support for Micrometer\n\n== GitHub issues\nWe choose not to use GitHub issues for general usage questions and support, preferring to\nuse issues solely for the tracking of bugs and enhancements. If you have a general\nusage question please do not open a GitHub issue, but use one of the other channels\ndescribed below.\n\nIf you are reporting a bug, please help to speed up problem diagnosis by providing as\nmuch information as possible. Ideally, that would include a small sample project that\nreproduces the problem.\n\n== Stack Overflow\nThe Micrometer community monitors the\nhttps:\/\/stackoverflow.com\/tags\/micrometer[`micrometer`] tag on Stack Overflow. Before\nasking a question, please familiarize yourself with Stack Overflow's\nhttps:\/\/stackoverflow.com\/help\/how-to-ask[advice on how to ask a good question].\n\n== Slack\nIf you want to discuss something or have a question that isn't suited to Stack Overflow,\nthe Micrometer community chat in the\nhttp:\/\/slack.micrometer.io\/[micrometer-metrics channel on Slack].\n","new_contents":"= Getting support for Micrometer\n\n== GitHub issues\nWe choose not to use GitHub issues for general usage questions and support, preferring to\nuse issues solely for the tracking of bugs and enhancements. If you have a general\nusage question please do not open a GitHub issue, but use one of the other channels\ndescribed below.\n\nIf you are reporting a bug, please help to speed up problem diagnosis by providing as\nmuch information as possible. Ideally, that would include a small sample project that\nreproduces the problem.\n\n== Stack Overflow\nThe Micrometer community monitors the\nhttps:\/\/stackoverflow.com\/tags\/micrometer[`micrometer`] tag on Stack Overflow. Before\nasking a question, please familiarize yourself with Stack Overflow's\nhttps:\/\/stackoverflow.com\/help\/how-to-ask[advice on how to ask a good question].\n\n== Slack\nIf you want to discuss something or have a question that isn't suited to Stack Overflow,\nthe Micrometer community chat in the\nhttps:\/\/join.slack.com\/t\/micrometer-metrics\/shared_invite\/zt-ewo3kcs0-Ji3aOAqTxnjYPEFBBI5HqQ[micrometer-metrics Slack].\n","subject":"Update link to the Slack invite","message":"Update link to the Slack invite","lang":"AsciiDoc","license":"apache-2.0","repos":"micrometer-metrics\/micrometer,micrometer-metrics\/micrometer,micrometer-metrics\/micrometer"} {"commit":"8f44f74d44b9eaf8d12490cb1d189f3b1a8dae69","old_file":"docs\/modules\/ROOT\/pages\/whats-new.adoc","new_file":"docs\/modules\/ROOT\/pages\/whats-new.adoc","old_contents":"[[new]]\n= What's New in Spring Security 5.8\n\nSpring Security 5.8 provides a number of new features.\nBelow are the highlights of the release.\n\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11638[gh-11638] - Refresh remote JWK when unknown KID error occurs\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11782[gh-11782] - @WithMockUser Supported as Merged Annotation\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11661[gh-11661] - Configurable authentication converter for resource-servers with token introspection\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11771[gh-11771] - `HttpSecurityDsl` should support `apply` method\n","new_contents":"[[new]]\n= What's New in Spring Security 5.8\n\nSpring Security 5.8 provides a number of new features.\nBelow are the highlights of the release.\n\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11638[gh-11638] - Refresh remote JWK when unknown KID error occurs\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11782[gh-11782] - @WithMockUser Supported as Merged Annotation\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11661[gh-11661] - Configurable authentication converter for resource-servers with token introspection\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11771[gh-11771] - `HttpSecurityDsl` should support `apply` method\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11232[gh-11232] - `ClientRegistrations#rest` defines 30s connect and read timeouts\n","subject":"Update What's New for 5.8","message":"Update What's New for 5.8\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security"} {"commit":"a89979966e3a79b62bf7f771ff9698216bb9ed28","old_file":"docs\/horizon.adoc","new_file":"docs\/horizon.adoc","old_contents":"= Logbook: horizon.justinwflory.com\n\nRunning logbook of documentation notes for Horizon.\n\n\n== Firewall\n\n_See https:\/\/github.com\/jwflory\/infrastructure\/blob\/master\/roles\/firewalld\/tasks\/main.yml[jwflory\/infrastructure firewalld Ansible role]._\n\n\n== WordPress\n\n=== wp_cli cannot upgrade WordPress because another update is in progress\n\n`wp option get core_updater.lock`::\nCheck if WordPress is holding a version lock.\nIf a number is returned, the version lock is on.\n\n`wp option delete core_updater.lock`::\nBreak a version lock on WordPress.\nVerify an update is NOT in progress before deleting (check processes, visit admin panel).\n\nhttps:\/\/wordpress.stackexchange.com\/questions\/224989\/get-rid-of-another-update-is-currently-in-progress[Reference]\n\n\n== XenForo\n\n* `sitemaps\/` and `temp\/` must have 0777 permissions…\n** `temp\/` is for the image proxy\n\n","new_contents":"= Logbook: horizon.justinwflory.com\n\nRunning logbook of documentation notes for Horizon.\n\n\n== Firewall\n\n_See https:\/\/github.com\/jwflory\/infrastructure\/blob\/master\/roles\/firewalld\/tasks\/main.yml[jwflory\/infrastructure firewalld Ansible role]._\n\n\n== WordPress\n\n=== Updating from admin dashboard does not work: \"failed to create directory\"\n\nThe web server cannot read or write to files in the web directory.\nMake sure the `php-fpm` user is a member of the `www-admin` group and that the folder is group-writable.\n\nWhy does this happen?\nNormally, your web server needs access, like `nginx` or `httpd`.\nBut in my case, `nginx` is spinning off `php-fpm` processes to run PHP web applications.\nThis user is trying to read and write from files instead of the web server.\nLook closer at https:\/\/github.com\/jwflory\/infrastructure[jwflory\/infrastructure] for additional context.\n\n=== wp_cli cannot upgrade WordPress because another update is in progress\n\n`wp option get core_updater.lock`::\nCheck if WordPress is holding a version lock.\nIf a number is returned, the version lock is on.\n\n`wp option delete core_updater.lock`::\nBreak a version lock on WordPress.\nVerify an update is NOT in progress before deleting (check processes, visit admin panel).\n\nhttps:\/\/wordpress.stackexchange.com\/questions\/224989\/get-rid-of-another-update-is-currently-in-progress[Reference]\n\n\n== XenForo\n\n* `sitemaps\/` and `temp\/` must have 0777 permissions…\n** `temp\/` is for the image proxy\n\n","subject":"Add 'failed to create directory' WordPress scenario","message":"[docs] Add 'failed to create directory' WordPress scenario\n","lang":"AsciiDoc","license":"mpl-2.0","repos":"jflory7\/infrastructure,jflory7\/infrastructure"} {"commit":"9e5b6cab2e77ccf6dbf1f476603fa90931496078","old_file":"documentation\/src\/docs\/asciidoc\/release-notes.adoc","new_file":"documentation\/src\/docs\/asciidoc\/release-notes.adoc","old_contents":"[[release-notes]]\n== JUnit 5 Release Notes\n\ninclude::link-attributes.adoc[]\n\n:numbered!:\n\ninclude::release-notes-5.1.0-M2.adoc[]\n\ninclude::release-notes-5.1.0-M1.adoc[]\n\ninclude::release-notes-5.0.2.adoc[]\n\ninclude::release-notes-5.0.1.adoc[]\n\ninclude::release-notes-5.0.0.adoc[]\n\ninclude::release-notes-5.0.0-RC3.adoc[]\n\ninclude::release-notes-5.0.0-RC2.adoc[]\n\ninclude::release-notes-5.0.0-RC1.adoc[]\n\ninclude::release-notes-5.0.0-M6.adoc[]\n\ninclude::release-notes-5.0.0-M5.adoc[]\n\ninclude::release-notes-5.0.0-M4.adoc[]\n\ninclude::release-notes-5.0.0-M3.adoc[]\n\ninclude::release-notes-5.0.0-M2.adoc[]\n\ninclude::release-notes-5.0.0-M1.adoc[]\n\ninclude::release-notes-5.0.0-ALPHA.adoc[]\n\n:numbered:\n","new_contents":"[[release-notes]]\n= JUnit 5 Release Notes\nStefan Bechtold; Sam Brannen; Johannes Link; Matthias Merdes; Marc Philipp; Christian Stein\n\/\/\n:docinfodir: docinfos\n:docinfo: private-head\n:numbered!:\n\/\/\n\ninclude::link-attributes.adoc[]\n\ninclude::release-notes-5.1.0-M2.adoc[]\n\ninclude::release-notes-5.1.0-M1.adoc[]\n\ninclude::release-notes-5.0.2.adoc[]\n\ninclude::release-notes-5.0.1.adoc[]\n\ninclude::release-notes-5.0.0.adoc[]\n\ninclude::release-notes-5.0.0-RC3.adoc[]\n\ninclude::release-notes-5.0.0-RC2.adoc[]\n\ninclude::release-notes-5.0.0-RC1.adoc[]\n\ninclude::release-notes-5.0.0-M6.adoc[]\n\ninclude::release-notes-5.0.0-M5.adoc[]\n\ninclude::release-notes-5.0.0-M4.adoc[]\n\ninclude::release-notes-5.0.0-M3.adoc[]\n\ninclude::release-notes-5.0.0-M2.adoc[]\n\ninclude::release-notes-5.0.0-M1.adoc[]\n\ninclude::release-notes-5.0.0-ALPHA.adoc[]\n","subject":"Include header and footer in Release Notes","message":"Include header and footer in Release Notes\n\nIssue: #1068\n","lang":"AsciiDoc","license":"epl-1.0","repos":"junit-team\/junit-lambda,sbrannen\/junit-lambda"} {"commit":"c6caeea8871c374255b1f2848f80d2c1c44ce17e","old_file":"docs\/community\/misc.asciidoc","new_file":"docs\/community\/misc.asciidoc","old_contents":"[[misc]]\n== Misc\n\n* https:\/\/github.com\/electrical\/puppet-elasticsearch[Puppet]:\n Elasticsearch puppet module.\n\n* http:\/\/github.com\/elasticsearch\/cookbook-elasticsearch[Chef]:\n Chef cookbook for Elasticsearch\n\n* https:\/\/github.com\/tavisto\/elasticsearch-rpms[elasticsearch-rpms]:\n RPMs for elasticsearch.\n\n* http:\/\/www.github.com\/neogenix\/daikon[daikon]:\n Daikon Elasticsearch CLI\n\n* https:\/\/github.com\/Aconex\/scrutineer[Scrutineer]:\n A high performance consistency checker to compare what you've indexed \n with your source of truth content (e.g. DB)\n","new_contents":"[[misc]]\n== Misc\n\n* https:\/\/github.com\/elasticsearch\/puppet-elasticsearch[Puppet]:\n Elasticsearch puppet module.\n\n* http:\/\/github.com\/elasticsearch\/cookbook-elasticsearch[Chef]:\n Chef cookbook for Elasticsearch\n\n* http:\/\/www.github.com\/neogenix\/daikon[daikon]:\n Daikon Elasticsearch CLI\n\n* https:\/\/github.com\/Aconex\/scrutineer[Scrutineer]:\n A high performance consistency checker to compare what you've indexed \n with your source of truth content (e.g. DB)\n","subject":"Update link to puppet module and remove link to other RPM repo as we have our own.","message":"Update link to puppet module and remove link to other RPM repo as we have our own.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"wbowling\/elasticsearch,markharwood\/elasticsearch,peschlowp\/elasticsearch,xuzha\/elasticsearch,Fsero\/elasticsearch,koxa29\/elasticsearch,bestwpw\/elasticsearch,boliza\/elasticsearch,feiqitian\/elasticsearch,opendatasoft\/elasticsearch,GlenRSmith\/elasticsearch,sdauletau\/elasticsearch,smflorentino\/elasticsearch,yanjunh\/elasticsearch,Microsoft\/elasticsearch,alexkuk\/elasticsearch,umeshdangat\/elasticsearch,JervyShi\/elasticsearch,sarwarbhuiyan\/elasticsearch,kubum\/elasticsearch,mapr\/elasticsearch,nilabhsagar\/elasticsearch,sjohnr\/elasticsearch,adrianbk\/elasticsearch,lightslife\/elasticsearch,mikemccand\/elasticsearch,zhiqinghuang\/elasticsearch,rlugojr\/elasticsearch,PhaedrusTheGreek\/elasticsearch,dongjoon-hyun\/elasticsearch,myelin\/elasticsearch,xuzha\/elasticsearch,jpountz\/elasticsearch,PhaedrusTheGreek\/elasticsearch,ivansun1010\/elasticsearch,maddin2016\/elasticsearch,nellicus\/elasticsearch,Uiho\/elasticsearch,sneivandt\/elasticsearch,wimvds\/elasticsearch,feiqitian\/elasticsearch,tkssharma\/elasticsearch,markharwood\/elasticsearch,hydro2k\/elasticsearch,peschlowp\/elasticsearch,mjhennig\/elasticsearch,markllama\/elasticsearch,wangtuo\/elasticsearch,xingguang2013\/elasticsearch,tahaemin\/elasticsearch,mapr\/elasticsearch,ulkas\/elasticsearch,onegambler\/elasticsearch,thecocce\/elasticsearch,zhiqinghuang\/elasticsearch,ydsakyclguozi\/elasticsearch,jsgao0\/elasticsearch,fernandozhu\/elasticsearch,maddin2016\/elasticsearch,lydonchandra\/elasticsearch,martinstuga\/elasticsearch,KimTaehee\/elasticsearch,Widen\/elasticsearch,iamjakob\/elasticsearch,sscarduzio\/elasticsearch,diendt\/elasticsearch,jango2015\/elasticsearch,strapdata\/elassandra5-rc,skearns64\/elasticsearch,socialrank\/elasticsearch,hanswang\/elasticsearch,MetSystem\/elasticsearch,zhaocloud\/elasticsearch,PhaedrusTheGreek\/elasticsearch,18098924759\/elasticsearch,kimimj\/elasticsearch,markllama\/elasticsearch,Widen\/elasticsearch,kenshin233\/elasticsearch,jchampion\/elasticsearch,kalimatas\/elasticsearch,himanshuag\/elasticsearch,Liziyao\/elasticsearch,linglaiyao1314\/elasticsearch,slavau\/elasticsearch,chrismwendt\/elasticsearch,qwerty4030\/elasticsearch,nknize\/elasticsearch,trangvh\/elasticsearch,SergVro\/elasticsearch,Kakakakakku\/elasticsearch,ESamir\/elasticsearch,opendatasoft\/elasticsearch,nknize\/elasticsearch,areek\/elasticsearch,ckclark\/elasticsearch,iantruslove\/elasticsearch,umeshdangat\/elasticsearch,sposam\/elasticsearch,ThalaivaStars\/OrgRepo1,elancom\/elasticsearch,s1monw\/elasticsearch,glefloch\/elasticsearch,LeoYao\/elasticsearch,xingguang2013\/elasticsearch,sjohnr\/elasticsearch,hafkensite\/elasticsearch,umeshdangat\/elasticsearch,jaynblue\/elasticsearch,bawse\/elasticsearch,xpandan\/elasticsearch,njlawton\/elasticsearch,sreeramjayan\/elasticsearch,andrejserafim\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,karthikjaps\/elasticsearch,LewayneNaidoo\/elasticsearch,truemped\/elasticsearch,nilabhsagar\/elasticsearch,sposam\/elasticsearch,JackyMai\/elasticsearch,codebunt\/elasticsearch,nomoa\/elasticsearch,strapdata\/elassandra,petmit\/elasticsearch,YosuaMichael\/elasticsearch,sdauletau\/elasticsearch,jpountz\/elasticsearch,bestwpw\/elasticsearch,opendatasoft\/elasticsearch,petabytedata\/elasticsearch,himanshuag\/elasticsearch,abhijitiitr\/es,nazarewk\/elasticsearch,xingguang2013\/elasticsearch,LeoYao\/elasticsearch,wuranbo\/elasticsearch,lzo\/elasticsearch-1,liweinan0423\/elasticsearch,yongminxia\/elasticsearch,masterweb121\/elasticsearch,lydonchandra\/elasticsearch,kingaj\/elasticsearch,EasonYi\/elasticsearch,abibell\/elasticsearch,gingerwizard\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,phani546\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,petmit\/elasticsearch,ydsakyclguozi\/elasticsearch,Asimov4\/elasticsearch,iacdingping\/elasticsearch,JSCooke\/elasticsearch,strapdata\/elassandra5-rc,truemped\/elasticsearch,wimvds\/elasticsearch,abhijitiitr\/es,maddin2016\/elasticsearch,fekaputra\/elasticsearch,adrianbk\/elasticsearch,koxa29\/elasticsearch,episerver\/elasticsearch,MaineC\/elasticsearch,weipinghe\/elasticsearch,jaynblue\/elasticsearch,dataduke\/elasticsearch,kingaj\/elasticsearch,masterweb121\/elasticsearch,rhoml\/elasticsearch,adrianbk\/elasticsearch,weipinghe\/elasticsearch,sposam\/elasticsearch,MichaelLiZhou\/elasticsearch,janmejay\/elasticsearch,jango2015\/elasticsearch,ulkas\/elasticsearch,kaneshin\/elasticsearch,aglne\/elasticsearch,rmuir\/elasticsearch,trangvh\/elasticsearch,henakamaMSFT\/elasticsearch,TonyChai24\/ESSource,yynil\/elasticsearch,jaynblue\/elasticsearch,wangyuxue\/elasticsearch,onegambler\/elasticsearch,camilojd\/elasticsearch,jeteve\/elasticsearch,jw0201\/elastic,nrkkalyan\/elasticsearch,AleksKochev\/elasticsearch,gingerwizard\/elasticsearch,nazarewk\/elasticsearch,jchampion\/elasticsearch,mcku\/elasticsearch,aglne\/elasticsearch,petabytedata\/elasticsearch,marcuswr\/elasticsearch-dateline,AshishThakur\/elasticsearch,jimhooker2002\/elasticsearch,kingaj\/elasticsearch,pritishppai\/elasticsearch,overcome\/elasticsearch,thecocce\/elasticsearch,artnowo\/elasticsearch,weipinghe\/elasticsearch,ivansun1010\/elasticsearch,ajhalani\/elasticsearch,iamjakob\/elasticsearch,kaneshin\/elasticsearch,sneivandt\/elasticsearch,hydro2k\/elasticsearch,mgalushka\/elasticsearch,hanswang\/elasticsearch,drewr\/elasticsearch,clintongormley\/elasticsearch,iantruslove\/elasticsearch,drewr\/elasticsearch,Shepard1212\/elasticsearch,wuranbo\/elasticsearch,truemped\/elasticsearch,andrestc\/elasticsearch,wuranbo\/elasticsearch,wbowling\/elasticsearch,gmarz\/elasticsearch,vietlq\/elasticsearch,Clairebi\/ElasticsearchClone,sneivandt\/elasticsearch,huanzhong\/elasticsearch,schonfeld\/elasticsearch,mrorii\/elasticsearch,sreeramjayan\/elasticsearch,dataduke\/elasticsearch,yongminxia\/elasticsearch,i-am-Nathan\/elasticsearch,amit-shar\/elasticsearch,huypx1292\/elasticsearch,Microsoft\/elasticsearch,tkssharma\/elasticsearch,overcome\/elasticsearch,Charlesdong\/elasticsearch,easonC\/elasticsearch,AndreKR\/elasticsearch,scorpionvicky\/elasticsearch,masterweb121\/elasticsearch,szroland\/elasticsearch,djschny\/elasticsearch,gmarz\/elasticsearch,snikch\/elasticsearch,C-Bish\/elasticsearch,cwurm\/elasticsearch,uschindler\/elasticsearch,mmaracic\/elasticsearch,lydonchandra\/elasticsearch,alexkuk\/elasticsearch,vingupta3\/elasticsearch,easonC\/elasticsearch,scottsom\/elasticsearch,mohit\/elasticsearch,tsohil\/elasticsearch,luiseduardohdbackup\/elasticsearch,sdauletau\/elasticsearch,likaiwalkman\/elasticsearch,brandonkearby\/elasticsearch,rmuir\/elasticsearch,Ansh90\/elasticsearch,ivansun1010\/elasticsearch,Chhunlong\/elasticsearch,naveenhooda2000\/elasticsearch,shreejay\/elasticsearch,Siddartha07\/elasticsearch,bestwpw\/elasticsearch,MjAbuz\/elasticsearch,strapdata\/elassandra5-rc,iantruslove\/elasticsearch,xingguang2013\/elasticsearch,nellicus\/elasticsearch,StefanGor\/elasticsearch,JackyMai\/elasticsearch,AndreKR\/elasticsearch,njlawton\/elasticsearch,slavau\/elasticsearch,phani546\/elasticsearch,sscarduzio\/elasticsearch,xpandan\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,franklanganke\/elasticsearch,tebriel\/elasticsearch,nomoa\/elasticsearch,jpountz\/elasticsearch,kimimj\/elasticsearch,wimvds\/elasticsearch,snikch\/elasticsearch,geidies\/elasticsearch,linglaiyao1314\/elasticsearch,alexbrasetvik\/elasticsearch,wittyameta\/elasticsearch,lchennup\/elasticsearch,lks21c\/elasticsearch,kalimatas\/elasticsearch,golubev\/elasticsearch,likaiwalkman\/elasticsearch,infusionsoft\/elasticsearch,AndreKR\/elasticsearch,fekaputra\/elasticsearch,peschlowp\/elasticsearch,huypx1292\/elasticsearch,schonfeld\/elasticsearch,avikurapati\/elasticsearch,fooljohnny\/elasticsearch,huypx1292\/elasticsearch,robin13\/elasticsearch,onegambler\/elasticsearch,socialrank\/elasticsearch,feiqitian\/elasticsearch,naveenhooda2000\/elasticsearch,golubev\/elasticsearch,beiske\/elasticsearch,truemped\/elasticsearch,YosuaMichael\/elasticsearch,Siddartha07\/elasticsearch,coding0011\/elasticsearch,a2lin\/elasticsearch,overcome\/elasticsearch,ivansun1010\/elasticsearch,marcuswr\/elasticsearch-dateline,pozhidaevak\/elasticsearch,StefanGor\/elasticsearch,zhaocloud\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,knight1128\/elasticsearch,vvcephei\/elasticsearch,sdauletau\/elasticsearch,kalimatas\/elasticsearch,chrismwendt\/elasticsearch,clintongormley\/elasticsearch,Flipkart\/elasticsearch,amaliujia\/elasticsearch,mute\/elasticsearch,mbrukman\/elasticsearch,caengcjd\/elasticsearch,palecur\/elasticsearch,kenshin233\/elasticsearch,mjhennig\/elasticsearch,geidies\/elasticsearch,achow\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,clintongormley\/elasticsearch,jimhooker2002\/elasticsearch,artnowo\/elasticsearch,lchennup\/elasticsearch,JSCooke\/elasticsearch,jsgao0\/elasticsearch,zkidkid\/elasticsearch,achow\/elasticsearch,overcome\/elasticsearch,feiqitian\/elasticsearch,awislowski\/elasticsearch,tcucchietti\/elasticsearch,infusionsoft\/elasticsearch,Shepard1212\/elasticsearch,naveenhooda2000\/elasticsearch,s1monw\/elasticsearch,TonyChai24\/ESSource,mkis-\/elasticsearch,jbertouch\/elasticsearch,tsohil\/elasticsearch,opendatasoft\/elasticsearch,jeteve\/elasticsearch,vingupta3\/elasticsearch,nrkkalyan\/elasticsearch,khiraiwa\/elasticsearch,markllama\/elasticsearch,Collaborne\/elasticsearch,Collaborne\/elasticsearch,kcompher\/elasticsearch,kevinkluge\/elasticsearch,chrismwendt\/elasticsearch,Uiho\/elasticsearch,szroland\/elasticsearch,liweinan0423\/elasticsearch,wayeast\/elasticsearch,vvcephei\/elasticsearch,kunallimaye\/elasticsearch,TonyChai24\/ESSource,tcucchietti\/elasticsearch,vingupta3\/elasticsearch,marcuswr\/elasticsearch-dateline,Brijeshrpatel9\/elasticsearch,javachengwc\/elasticsearch,lchennup\/elasticsearch,sreeramjayan\/elasticsearch,kunallimaye\/elasticsearch,tkssharma\/elasticsearch,zhiqinghuang\/elasticsearch,PhaedrusTheGreek\/elasticsearch,camilojd\/elasticsearch,LewayneNaidoo\/elasticsearch,amaliujia\/elasticsearch,fekaputra\/elasticsearch,gfyoung\/elasticsearch,fforbeck\/elasticsearch,sjohnr\/elasticsearch,ydsakyclguozi\/elasticsearch,fernandozhu\/elasticsearch,dpursehouse\/elasticsearch,khiraiwa\/elasticsearch,vrkansagara\/elasticsearch,winstonewert\/elasticsearch,onegambler\/elasticsearch,ricardocerq\/elasticsearch,C-Bish\/elasticsearch,yuy168\/elasticsearch,acchen97\/elasticsearch,yynil\/elasticsearch,mcku\/elasticsearch,heng4fun\/elasticsearch,javachengwc\/elasticsearch,hirdesh2008\/elasticsearch,andrestc\/elasticsearch,huanzhong\/elasticsearch,thecocce\/elasticsearch,dataduke\/elasticsearch,queirozfcom\/elasticsearch,jbertouch\/elasticsearch,smflorentino\/elasticsearch,wittyameta\/elasticsearch,elasticdog\/elasticsearch,strapdata\/elassandra-test,adrianbk\/elasticsearch,opendatasoft\/elasticsearch,lightslife\/elasticsearch,strapdata\/elassandra-test,elasticdog\/elasticsearch,martinstuga\/elasticsearch,Asimov4\/elasticsearch,humandb\/elasticsearch,jeteve\/elasticsearch,zeroctu\/elasticsearch,mute\/elasticsearch,kubum\/elasticsearch,clintongormley\/elasticsearch,xingguang2013\/elasticsearch,fooljohnny\/elasticsearch,Uiho\/elasticsearch,mjason3\/elasticsearch,knight1128\/elasticsearch,hanst\/elasticsearch,xingguang2013\/elasticsearch,mute\/elasticsearch,girirajsharma\/elasticsearch,qwerty4030\/elasticsearch,ouyangkongtong\/elasticsearch,Fsero\/elasticsearch,naveenhooda2000\/elasticsearch,markllama\/elasticsearch,MetSystem\/elasticsearch,tebriel\/elasticsearch,vroyer\/elasticassandra,Shepard1212\/elasticsearch,springning\/elasticsearch,queirozfcom\/elasticsearch,episerver\/elasticsearch,combinatorist\/elasticsearch,xuzha\/elasticsearch,zeroctu\/elasticsearch,lchennup\/elasticsearch,wangyuxue\/elasticsearch,slavau\/elasticsearch,kenshin233\/elasticsearch,abhijitiitr\/es,ImpressTV\/elasticsearch,andrestc\/elasticsearch,Fsero\/elasticsearch,pozhidaevak\/elasticsearch,hydro2k\/elasticsearch,wuranbo\/elasticsearch,milodky\/elasticsearch,apepper\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,Brijeshrpatel9\/elasticsearch,pranavraman\/elasticsearch,Clairebi\/ElasticsearchClone,petabytedata\/elasticsearch,Microsoft\/elasticsearch,Uiho\/elasticsearch,humandb\/elasticsearch,schonfeld\/elasticsearch,thecocce\/elasticsearch,fernandozhu\/elasticsearch,socialrank\/elasticsearch,jeteve\/elasticsearch,snikch\/elasticsearch,fooljohnny\/elasticsearch,shreejay\/elasticsearch,sposam\/elasticsearch,mohit\/elasticsearch,dylan8902\/elasticsearch,skearns64\/elasticsearch,kubum\/elasticsearch,jimczi\/elasticsearch,KimTaehee\/elasticsearch,pranavraman\/elasticsearch,MichaelLiZhou\/elasticsearch,janmejay\/elasticsearch,zhiqinghuang\/elasticsearch,kunallimaye\/elasticsearch,ThalaivaStars\/OrgRepo1,LewayneNaidoo\/elasticsearch,infusionsoft\/elasticsearch,pablocastro\/elasticsearch,ricardocerq\/elasticsearch,jeteve\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,kcompher\/elasticsearch,kkirsche\/elasticsearch,vrkansagara\/elasticsearch,mohit\/elasticsearch,Brijeshrpatel9\/elasticsearch,njlawton\/elasticsearch,apepper\/elasticsearch,StefanGor\/elasticsearch,Flipkart\/elasticsearch,elancom\/elasticsearch,vietlq\/elasticsearch,awislowski\/elasticsearch,beiske\/elasticsearch,fred84\/elasticsearch,GlenRSmith\/elasticsearch,Clairebi\/ElasticsearchClone,MisterAndersen\/elasticsearch,SergVro\/elasticsearch,acchen97\/elasticsearch,kenshin233\/elasticsearch,karthikjaps\/elasticsearch,combinatorist\/elasticsearch,mrorii\/elasticsearch,kubum\/elasticsearch,yongminxia\/elasticsearch,likaiwalkman\/elasticsearch,mm0\/elasticsearch,zkidkid\/elasticsearch,infusionsoft\/elasticsearch,F0lha\/elasticsearch,hanst\/elasticsearch,jimhooker2002\/elasticsearch,camilojd\/elasticsearch,loconsolutions\/elasticsearch,tsohil\/elasticsearch,HonzaKral\/elasticsearch,wayeast\/elasticsearch,lchennup\/elasticsearch,qwerty4030\/elasticsearch,salyh\/elasticsearch,andrestc\/elasticsearch,tahaemin\/elasticsearch,clintongormley\/elasticsearch,mjhennig\/elasticsearch,MaineC\/elasticsearch,raishiv\/elasticsearch,fforbeck\/elasticsearch,mcku\/elasticsearch,mmaracic\/elasticsearch,masaruh\/elasticsearch,boliza\/elasticsearch,MisterAndersen\/elasticsearch,lydonchandra\/elasticsearch,mjhennig\/elasticsearch,sdauletau\/elasticsearch,schonfeld\/elasticsearch,ImpressTV\/elasticsearch,wittyameta\/elasticsearch,obourgain\/elasticsearch,chirilo\/elasticsearch,tsohil\/elasticsearch,golubev\/elasticsearch,milodky\/elasticsearch,xuzha\/elasticsearch,C-Bish\/elasticsearch,ImpressTV\/elasticsearch,TonyChai24\/ESSource,brwe\/elasticsearch,sdauletau\/elasticsearch,StefanGor\/elasticsearch,linglaiyao1314\/elasticsearch,iantruslove\/elasticsearch,IanvsPoplicola\/elasticsearch,ricardocerq\/elasticsearch,hydro2k\/elasticsearch,rento19962\/elasticsearch,Siddartha07\/elasticsearch,sreeramjayan\/elasticsearch,elasticdog\/elasticsearch,gfyoung\/elasticsearch,HonzaKral\/elasticsearch,jprante\/elasticsearch,fforbeck\/elasticsearch,hirdesh2008\/elasticsearch,xuzha\/elasticsearch,Kakakakakku\/elasticsearch,franklanganke\/elasticsearch,scorpionvicky\/elasticsearch,skearns64\/elasticsearch,sc0ttkclark\/elasticsearch,hanswang\/elasticsearch,himanshuag\/elasticsearch,hanst\/elasticsearch,HarishAtGitHub\/elasticsearch,TonyChai24\/ESSource,achow\/elasticsearch,markwalkom\/elasticsearch,jimhooker2002\/elasticsearch,18098924759\/elasticsearch,ESamir\/elasticsearch,jango2015\/elasticsearch,vroyer\/elassandra,Chhunlong\/elasticsearch,MichaelLiZhou\/elasticsearch,yuy168\/elasticsearch,ouyangkongtong\/elasticsearch,davidvgalbraith\/elasticsearch,lzo\/elasticsearch-1,amit-shar\/elasticsearch,cwurm\/elasticsearch,khiraiwa\/elasticsearch,luiseduardohdbackup\/elasticsearch,LeoYao\/elasticsearch,lightslife\/elasticsearch,knight1128\/elasticsearch,glefloch\/elasticsearch,ckclark\/elasticsearch,KimTaehee\/elasticsearch,lmtwga\/elasticsearch,hanswang\/elasticsearch,winstonewert\/elasticsearch,javachengwc\/elasticsearch,boliza\/elasticsearch,HonzaKral\/elasticsearch,tkssharma\/elasticsearch,JackyMai\/elasticsearch,kalburgimanjunath\/elasticsearch,anti-social\/elasticsearch,alexkuk\/elasticsearch,chirilo\/elasticsearch,ouyangkongtong\/elasticsearch,AshishThakur\/elasticsearch,hanst\/elasticsearch,dylan8902\/elasticsearch,socialrank\/elasticsearch,Rygbee\/elasticsearch,AleksKochev\/elasticsearch,vvcephei\/elasticsearch,dylan8902\/elasticsearch,micpalmia\/elasticsearch,kunallimaye\/elasticsearch,EasonYi\/elasticsearch,caengcjd\/elasticsearch,jango2015\/elasticsearch,palecur\/elasticsearch,dpursehouse\/elasticsearch,karthikjaps\/elasticsearch,kevinkluge\/elasticsearch,18098924759\/elasticsearch,VukDukic\/elasticsearch,caengcjd\/elasticsearch,Collaborne\/elasticsearch,mapr\/elasticsearch,himanshuag\/elasticsearch,janmejay\/elasticsearch,mapr\/elasticsearch,strapdata\/elassandra-test,salyh\/elasticsearch,AndreKR\/elasticsearch,martinstuga\/elasticsearch,mrorii\/elasticsearch,tcucchietti\/elasticsearch,wbowling\/elasticsearch,pablocastro\/elasticsearch,apepper\/elasticsearch,truemped\/elasticsearch,markharwood\/elasticsearch,MichaelLiZhou\/elasticsearch,sreeramjayan\/elasticsearch,apepper\/elasticsearch,iamjakob\/elasticsearch,masterweb121\/elasticsearch,tsohil\/elasticsearch,polyfractal\/elasticsearch,huanzhong\/elasticsearch,diendt\/elasticsearch,alexkuk\/elasticsearch,ouyangkongtong\/elasticsearch,brwe\/elasticsearch,davidvgalbraith\/elasticsearch,episerver\/elasticsearch,avikurapati\/elasticsearch,huanzhong\/elasticsearch,jpountz\/elasticsearch,xuzha\/elasticsearch,raishiv\/elasticsearch,andrestc\/elasticsearch,i-am-Nathan\/elasticsearch,scottsom\/elasticsearch,ajhalani\/elasticsearch,jw0201\/elastic,JervyShi\/elasticsearch,yanjunh\/elasticsearch,VukDukic\/elasticsearch,feiqitian\/elasticsearch,ouyangkongtong\/elasticsearch,masaruh\/elasticsearch,18098924759\/elasticsearch,hechunwen\/elasticsearch,nilabhsagar\/elasticsearch,masterweb121\/elasticsearch,wangtuo\/elasticsearch,springning\/elasticsearch,Charlesdong\/elasticsearch,petmit\/elasticsearch,tcucchietti\/elasticsearch,palecur\/elasticsearch,abibell\/elasticsearch,geidies\/elasticsearch,alexbrasetvik\/elasticsearch,elancom\/elasticsearch,luiseduardohdbackup\/elasticsearch,overcome\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,jimczi\/elasticsearch,zeroctu\/elasticsearch,IanvsPoplicola\/elasticsearch,JervyShi\/elasticsearch,phani546\/elasticsearch,Shekharrajak\/elasticsearch,abibell\/elasticsearch,elasticdog\/elasticsearch,raishiv\/elasticsearch,HarishAtGitHub\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,girirajsharma\/elasticsearch,Shekharrajak\/elasticsearch,geidies\/elasticsearch,amit-shar\/elasticsearch,ulkas\/elasticsearch,tebriel\/elasticsearch,dataduke\/elasticsearch,lks21c\/elasticsearch,djschny\/elasticsearch,mikemccand\/elasticsearch,humandb\/elasticsearch,cnfire\/elasticsearch-1,sauravmondallive\/elasticsearch,nomoa\/elasticsearch,janmejay\/elasticsearch,Chhunlong\/elasticsearch,NBSW\/elasticsearch,Flipkart\/elasticsearch,kimimj\/elasticsearch,NBSW\/elasticsearch,sscarduzio\/elasticsearch,sc0ttkclark\/elasticsearch,sarwarbhuiyan\/elasticsearch,Asimov4\/elasticsearch,huanzhong\/elasticsearch,fforbeck\/elasticsearch,weipinghe\/elasticsearch,vingupta3\/elasticsearch,ImpressTV\/elasticsearch,springning\/elasticsearch,jimhooker2002\/elasticsearch,schonfeld\/elasticsearch,loconsolutions\/elasticsearch,jsgao0\/elasticsearch,ThalaivaStars\/OrgRepo1,shreejay\/elasticsearch,strapdata\/elassandra-test,btiernay\/elasticsearch,petabytedata\/elasticsearch,adrianbk\/elasticsearch,wbowling\/elasticsearch,kenshin233\/elasticsearch,jbertouch\/elasticsearch,chrismwendt\/elasticsearch,slavau\/elasticsearch,tkssharma\/elasticsearch,kubum\/elasticsearch,nezirus\/elasticsearch,yanjunh\/elasticsearch,ydsakyclguozi\/elasticsearch,TonyChai24\/ESSource,elancom\/elasticsearch,queirozfcom\/elasticsearch,wbowling\/elasticsearch,mrorii\/elasticsearch,nrkkalyan\/elasticsearch,Collaborne\/elasticsearch,onegambler\/elasticsearch,mnylen\/elasticsearch,dongjoon-hyun\/elasticsearch,ThalaivaStars\/OrgRepo1,boliza\/elasticsearch,mm0\/elasticsearch,coding0011\/elasticsearch,lmtwga\/elasticsearch,jprante\/elasticsearch,HonzaKral\/elasticsearch,acchen97\/elasticsearch,jchampion\/elasticsearch,vroyer\/elasticassandra,snikch\/elasticsearch,mcku\/elasticsearch,kkirsche\/elasticsearch,Collaborne\/elasticsearch,sposam\/elasticsearch,ESamir\/elasticsearch,wbowling\/elasticsearch,rhoml\/elasticsearch,Shepard1212\/elasticsearch,areek\/elasticsearch,ZTE-PaaS\/elasticsearch,Kakakakakku\/elasticsearch,yongminxia\/elasticsearch,mmaracic\/elasticsearch,gmarz\/elasticsearch,mcku\/elasticsearch,hydro2k\/elasticsearch,pablocastro\/elasticsearch,Microsoft\/elasticsearch,LeoYao\/elasticsearch,linglaiyao1314\/elasticsearch,fekaputra\/elasticsearch,polyfractal\/elasticsearch,Shekharrajak\/elasticsearch,xpandan\/elasticsearch,janmejay\/elasticsearch,iacdingping\/elasticsearch,hanst\/elasticsearch,koxa29\/elasticsearch,ricardocerq\/elasticsearch,rajanm\/elasticsearch,springning\/elasticsearch,iamjakob\/elasticsearch,jpountz\/elasticsearch,bestwpw\/elasticsearch,areek\/elasticsearch,MaineC\/elasticsearch,thecocce\/elasticsearch,Rygbee\/elasticsearch,gingerwizard\/elasticsearch,javachengwc\/elasticsearch,a2lin\/elasticsearch,drewr\/elasticsearch,s1monw\/elasticsearch,pozhidaevak\/elasticsearch,djschny\/elasticsearch,kevinkluge\/elasticsearch,codebunt\/elasticsearch,markharwood\/elasticsearch,kunallimaye\/elasticsearch,mkis-\/elasticsearch,girirajsharma\/elasticsearch,mute\/elasticsearch,mjhennig\/elasticsearch,huypx1292\/elasticsearch,vvcephei\/elasticsearch,18098924759\/elasticsearch,chirilo\/elasticsearch,EasonYi\/elasticsearch,lks21c\/elasticsearch,weipinghe\/elasticsearch,achow\/elasticsearch,onegambler\/elasticsearch,areek\/elasticsearch,rento19962\/elasticsearch,skearns64\/elasticsearch,polyfractal\/elasticsearch,mohit\/elasticsearch,i-am-Nathan\/elasticsearch,ulkas\/elasticsearch,MisterAndersen\/elasticsearch,IanvsPoplicola\/elasticsearch,Flipkart\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,jango2015\/elasticsearch,achow\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,Shekharrajak\/elasticsearch,abibell\/elasticsearch,codebunt\/elasticsearch,zhiqinghuang\/elasticsearch,rlugojr\/elasticsearch,likaiwalkman\/elasticsearch,smflorentino\/elasticsearch,dongjoon-hyun\/elasticsearch,btiernay\/elasticsearch,Widen\/elasticsearch,lmtwga\/elasticsearch,andrejserafim\/elasticsearch,snikch\/elasticsearch,fred84\/elasticsearch,weipinghe\/elasticsearch,petabytedata\/elasticsearch,caengcjd\/elasticsearch,mkis-\/elasticsearch,IanvsPoplicola\/elasticsearch,pranavraman\/elasticsearch,NBSW\/elasticsearch,dylan8902\/elasticsearch,maddin2016\/elasticsearch,kkirsche\/elasticsearch,shreejay\/elasticsearch,mikemccand\/elasticsearch,uschindler\/elasticsearch,episerver\/elasticsearch,milodky\/elasticsearch,wittyameta\/elasticsearch,kcompher\/elasticsearch,achow\/elasticsearch,btiernay\/elasticsearch,kimimj\/elasticsearch,luiseduardohdbackup\/elasticsearch,uschindler\/elasticsearch,masterweb121\/elasticsearch,franklanganke\/elasticsearch,amaliujia\/elasticsearch,mortonsykes\/elasticsearch,masterweb121\/elasticsearch,Rygbee\/elasticsearch,feiqitian\/elasticsearch,schonfeld\/elasticsearch,Siddartha07\/elasticsearch,uschindler\/elasticsearch,wangtuo\/elasticsearch,18098924759\/elasticsearch,jprante\/elasticsearch,springning\/elasticsearch,NBSW\/elasticsearch,sauravmondallive\/elasticsearch,wuranbo\/elasticsearch,winstonewert\/elasticsearch,glefloch\/elasticsearch,skearns64\/elasticsearch,wayeast\/elasticsearch,phani546\/elasticsearch,codebunt\/elasticsearch,rento19962\/elasticsearch,combinatorist\/elasticsearch,knight1128\/elasticsearch,MisterAndersen\/elasticsearch,rhoml\/elasticsearch,IanvsPoplicola\/elasticsearch,ESamir\/elasticsearch,pablocastro\/elasticsearch,ImpressTV\/elasticsearch,sc0ttkclark\/elasticsearch,kenshin233\/elasticsearch,cnfire\/elasticsearch-1,maddin2016\/elasticsearch,hirdesh2008\/elasticsearch,YosuaMichael\/elasticsearch,Chhunlong\/elasticsearch,Widen\/elasticsearch,nellicus\/elasticsearch,loconsolutions\/elasticsearch,peschlowp\/elasticsearch,humandb\/elasticsearch,wenpos\/elasticsearch,F0lha\/elasticsearch,gfyoung\/elasticsearch,humandb\/elasticsearch,kcompher\/elasticsearch,likaiwalkman\/elasticsearch,marcuswr\/elasticsearch-dateline,ajhalani\/elasticsearch,Rygbee\/elasticsearch,coding0011\/elasticsearch,trangvh\/elasticsearch,pablocastro\/elasticsearch,mnylen\/elasticsearch,fooljohnny\/elasticsearch,mjason3\/elasticsearch,xpandan\/elasticsearch,kingaj\/elasticsearch,pranavraman\/elasticsearch,djschny\/elasticsearch,mm0\/elasticsearch,lzo\/elasticsearch-1,vietlq\/elasticsearch,likaiwalkman\/elasticsearch,tkssharma\/elasticsearch,vingupta3\/elasticsearch,kingaj\/elasticsearch,apepper\/elasticsearch,slavau\/elasticsearch,F0lha\/elasticsearch,martinstuga\/elasticsearch,salyh\/elasticsearch,sauravmondallive\/elasticsearch,dataduke\/elasticsearch,Shekharrajak\/elasticsearch,myelin\/elasticsearch,kingaj\/elasticsearch,ouyangkongtong\/elasticsearch,MjAbuz\/elasticsearch,abhijitiitr\/es,hafkensite\/elasticsearch,bestwpw\/elasticsearch,Kakakakakku\/elasticsearch,mortonsykes\/elasticsearch,ouyangkongtong\/elasticsearch,avikurapati\/elasticsearch,jsgao0\/elasticsearch,lmtwga\/elasticsearch,liweinan0423\/elasticsearch,abibell\/elasticsearch,javachengwc\/elasticsearch,gingerwizard\/elasticsearch,hechunwen\/elasticsearch,pritishppai\/elasticsearch,bawse\/elasticsearch,camilojd\/elasticsearch,AshishThakur\/elasticsearch,kkirsche\/elasticsearch,Uiho\/elasticsearch,MjAbuz\/elasticsearch,fred84\/elasticsearch,snikch\/elasticsearch,djschny\/elasticsearch,polyfractal\/elasticsearch,vvcephei\/elasticsearch,lmtwga\/elasticsearch,vrkansagara\/elasticsearch,xpandan\/elasticsearch,s1monw\/elasticsearch,kevinkluge\/elasticsearch,Chhunlong\/elasticsearch,yynil\/elasticsearch,amit-shar\/elasticsearch,tahaemin\/elasticsearch,rento19962\/elasticsearch,martinstuga\/elasticsearch,sneivandt\/elasticsearch,andrejserafim\/elasticsearch,brandonkearby\/elasticsearch,Rygbee\/elasticsearch,loconsolutions\/elasticsearch,fekaputra\/elasticsearch,lmtwga\/elasticsearch,beiske\/elasticsearch,Stacey-Gammon\/elasticsearch,davidvgalbraith\/elasticsearch,KimTaehee\/elasticsearch,zeroctu\/elasticsearch,masaruh\/elasticsearch,lightslife\/elasticsearch,nazarewk\/elasticsearch,iacdingping\/elasticsearch,huanzhong\/elasticsearch,vietlq\/elasticsearch,heng4fun\/elasticsearch,pritishppai\/elasticsearch,wittyameta\/elasticsearch,sscarduzio\/elasticsearch,alexbrasetvik\/elasticsearch,fred84\/elasticsearch,wayeast\/elasticsearch,MjAbuz\/elasticsearch,artnowo\/elasticsearch,karthikjaps\/elasticsearch,xingguang2013\/elasticsearch,Liziyao\/elasticsearch,EasonYi\/elasticsearch,opendatasoft\/elasticsearch,golubev\/elasticsearch,raishiv\/elasticsearch,Flipkart\/elasticsearch,hechunwen\/elasticsearch,LewayneNaidoo\/elasticsearch,kaneshin\/elasticsearch,fekaputra\/elasticsearch,areek\/elasticsearch,rmuir\/elasticsearch,janmejay\/elasticsearch,obourgain\/elasticsearch,nknize\/elasticsearch,franklanganke\/elasticsearch,aglne\/elasticsearch,gmarz\/elasticsearch,rmuir\/elasticsearch,shreejay\/elasticsearch,lzo\/elasticsearch-1,brandonkearby\/elasticsearch,lydonchandra\/elasticsearch,peschlowp\/elasticsearch,strapdata\/elassandra,Liziyao\/elasticsearch,i-am-Nathan\/elasticsearch,YosuaMichael\/elasticsearch,mm0\/elasticsearch,anti-social\/elasticsearch,fernandozhu\/elasticsearch,mbrukman\/elasticsearch,andrejserafim\/elasticsearch,jbertouch\/elasticsearch,Siddartha07\/elasticsearch,dylan8902\/elasticsearch,kubum\/elasticsearch,MisterAndersen\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,henakamaMSFT\/elasticsearch,strapdata\/elassandra-test,yuy168\/elasticsearch,scorpionvicky\/elasticsearch,ajhalani\/elasticsearch,ydsakyclguozi\/elasticsearch,awislowski\/elasticsearch,salyh\/elasticsearch,kalimatas\/elasticsearch,schonfeld\/elasticsearch,coding0011\/elasticsearch,amit-shar\/elasticsearch,JervyShi\/elasticsearch,bawse\/elasticsearch,jimczi\/elasticsearch,C-Bish\/elasticsearch,cnfire\/elasticsearch-1,mnylen\/elasticsearch,dantuffery\/elasticsearch,ZTE-PaaS\/elasticsearch,diendt\/elasticsearch,mjhennig\/elasticsearch,camilojd\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,zkidkid\/elasticsearch,ydsakyclguozi\/elasticsearch,phani546\/elasticsearch,mgalushka\/elasticsearch,wenpos\/elasticsearch,milodky\/elasticsearch,zeroctu\/elasticsearch,geidies\/elasticsearch,wimvds\/elasticsearch,mnylen\/elasticsearch,mjhennig\/elasticsearch,henakamaMSFT\/elasticsearch,sdauletau\/elasticsearch,tahaemin\/elasticsearch,heng4fun\/elasticsearch,nezirus\/elasticsearch,awislowski\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mbrukman\/elasticsearch,lks21c\/elasticsearch,vrkansagara\/elasticsearch,ThalaivaStars\/OrgRepo1,petmit\/elasticsearch,jimczi\/elasticsearch,jango2015\/elasticsearch,ImpressTV\/elasticsearch,yuy168\/elasticsearch,achow\/elasticsearch,micpalmia\/elasticsearch,StefanGor\/elasticsearch,mjason3\/elasticsearch,kalimatas\/elasticsearch,aglne\/elasticsearch,alexbrasetvik\/elasticsearch,dylan8902\/elasticsearch,ckclark\/elasticsearch,sarwarbhuiyan\/elasticsearch,MaineC\/elasticsearch,Shepard1212\/elasticsearch,SergVro\/elasticsearch,martinstuga\/elasticsearch,cnfire\/elasticsearch-1,MaineC\/elasticsearch,JSCooke\/elasticsearch,yynil\/elasticsearch,yanjunh\/elasticsearch,kalburgimanjunath\/elasticsearch,brandonkearby\/elasticsearch,uschindler\/elasticsearch,jsgao0\/elasticsearch,vingupta3\/elasticsearch,F0lha\/elasticsearch,kevinkluge\/elasticsearch,Stacey-Gammon\/elasticsearch,kimimj\/elasticsearch,tcucchietti\/elasticsearch,iamjakob\/elasticsearch,glefloch\/elasticsearch,naveenhooda2000\/elasticsearch,elancom\/elasticsearch,dantuffery\/elasticsearch,Ansh90\/elasticsearch,sjohnr\/elasticsearch,coding0011\/elasticsearch,dpursehouse\/elasticsearch,yuy168\/elasticsearch,davidvgalbraith\/elasticsearch,adrianbk\/elasticsearch,Shekharrajak\/elasticsearch,kimimj\/elasticsearch,cwurm\/elasticsearch,YosuaMichael\/elasticsearch,khiraiwa\/elasticsearch,Helen-Zhao\/elasticsearch,Fsero\/elasticsearch,fekaputra\/elasticsearch,Charlesdong\/elasticsearch,polyfractal\/elasticsearch,awislowski\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,sarwarbhuiyan\/elasticsearch,luiseduardohdbackup\/elasticsearch,lzo\/elasticsearch-1,jaynblue\/elasticsearch,brandonkearby\/elasticsearch,brwe\/elasticsearch,djschny\/elasticsearch,sauravmondallive\/elasticsearch,karthikjaps\/elasticsearch,nomoa\/elasticsearch,raishiv\/elasticsearch,caengcjd\/elasticsearch,alexshadow007\/elasticsearch,iantruslove\/elasticsearch,marcuswr\/elasticsearch-dateline,glefloch\/elasticsearch,jprante\/elasticsearch,zhiqinghuang\/elasticsearch,chirilo\/elasticsearch,fooljohnny\/elasticsearch,kcompher\/elasticsearch,MetSystem\/elasticsearch,PhaedrusTheGreek\/elasticsearch,tsohil\/elasticsearch,dongjoon-hyun\/elasticsearch,JervyShi\/elasticsearch,andrestc\/elasticsearch,Widen\/elasticsearch,Asimov4\/elasticsearch,knight1128\/elasticsearch,nomoa\/elasticsearch,springning\/elasticsearch,tebriel\/elasticsearch,dataduke\/elasticsearch,mortonsykes\/elasticsearch,strapdata\/elassandra-test,strapdata\/elassandra-test,markwalkom\/elasticsearch,myelin\/elasticsearch,artnowo\/elasticsearch,camilojd\/elasticsearch,spiegela\/elasticsearch,bawse\/elasticsearch,mcku\/elasticsearch,episerver\/elasticsearch,sauravmondallive\/elasticsearch,gingerwizard\/elasticsearch,sarwarbhuiyan\/elasticsearch,vietlq\/elasticsearch,pranavraman\/elasticsearch,KimTaehee\/elasticsearch,easonC\/elasticsearch,sauravmondallive\/elasticsearch,ulkas\/elasticsearch,jeteve\/elasticsearch,GlenRSmith\/elasticsearch,zhiqinghuang\/elasticsearch,franklanganke\/elasticsearch,girirajsharma\/elasticsearch,anti-social\/elasticsearch,loconsolutions\/elasticsearch,elasticdog\/elasticsearch,loconsolutions\/elasticsearch,phani546\/elasticsearch,weipinghe\/elasticsearch,acchen97\/elasticsearch,dpursehouse\/elasticsearch,salyh\/elasticsearch,markwalkom\/elasticsearch,golubev\/elasticsearch,dataduke\/elasticsearch,jaynblue\/elasticsearch,TonyChai24\/ESSource,spiegela\/elasticsearch,kevinkluge\/elasticsearch,ulkas\/elasticsearch,Stacey-Gammon\/elasticsearch,hafkensite\/elasticsearch,spiegela\/elasticsearch,artnowo\/elasticsearch,rajanm\/elasticsearch,abibell\/elasticsearch,iamjakob\/elasticsearch,jbertouch\/elasticsearch,amaliujia\/elasticsearch,andrejserafim\/elasticsearch,hechunwen\/elasticsearch,kkirsche\/elasticsearch,fforbeck\/elasticsearch,MjAbuz\/elasticsearch,trangvh\/elasticsearch,kalburgimanjunath\/elasticsearch,sc0ttkclark\/elasticsearch,mnylen\/elasticsearch,mgalushka\/elasticsearch,acchen97\/elasticsearch,nezirus\/elasticsearch,alexkuk\/elasticsearch,beiske\/elasticsearch,ZTE-PaaS\/elasticsearch,luiseduardohdbackup\/elasticsearch,btiernay\/elasticsearch,dantuffery\/elasticsearch,KimTaehee\/elasticsearch,markllama\/elasticsearch,rmuir\/elasticsearch,kalburgimanjunath\/elasticsearch,alexshadow007\/elasticsearch,khiraiwa\/elasticsearch,wayeast\/elasticsearch,nknize\/elasticsearch,Kakakakakku\/elasticsearch,palecur\/elasticsearch,sarwarbhuiyan\/elasticsearch,jchampion\/elasticsearch,hafkensite\/elasticsearch,girirajsharma\/elasticsearch,MichaelLiZhou\/elasticsearch,AndreKR\/elasticsearch,caengcjd\/elasticsearch,myelin\/elasticsearch,koxa29\/elasticsearch,spiegela\/elasticsearch,Chhunlong\/elasticsearch,hechunwen\/elasticsearch,mbrukman\/elasticsearch,wayeast\/elasticsearch,mgalushka\/elasticsearch,onegambler\/elasticsearch,fooljohnny\/elasticsearch,abibell\/elasticsearch,gfyoung\/elasticsearch,elancom\/elasticsearch,ajhalani\/elasticsearch,Liziyao\/elasticsearch,masaruh\/elasticsearch,wangyuxue\/elasticsearch,vrkansagara\/elasticsearch,VukDukic\/elasticsearch,GlenRSmith\/elasticsearch,apepper\/elasticsearch,diendt\/elasticsearch,KimTaehee\/elasticsearch,rhoml\/elasticsearch,himanshuag\/elasticsearch,rento19962\/elasticsearch,sc0ttkclark\/elasticsearch,obourgain\/elasticsearch,zhaocloud\/elasticsearch,pranavraman\/elasticsearch,easonC\/elasticsearch,szroland\/elasticsearch,micpalmia\/elasticsearch,hanswang\/elasticsearch,hydro2k\/elasticsearch,skearns64\/elasticsearch,AleksKochev\/elasticsearch,JervyShi\/elasticsearch,AshishThakur\/elasticsearch,AshishThakur\/elasticsearch,ESamir\/elasticsearch,scorpionvicky\/elasticsearch,lightslife\/elasticsearch,zeroctu\/elasticsearch,nellicus\/elasticsearch,robin13\/elasticsearch,AshishThakur\/elasticsearch,bestwpw\/elasticsearch,YosuaMichael\/elasticsearch,rajanm\/elasticsearch,iacdingping\/elasticsearch,alexshadow007\/elasticsearch,gingerwizard\/elasticsearch,jimhooker2002\/elasticsearch,Brijeshrpatel9\/elasticsearch,sscarduzio\/elasticsearch,Fsero\/elasticsearch,MetSystem\/elasticsearch,yynil\/elasticsearch,tebriel\/elasticsearch,nellicus\/elasticsearch,HarishAtGitHub\/elasticsearch,jw0201\/elastic,henakamaMSFT\/elasticsearch,hirdesh2008\/elasticsearch,mkis-\/elasticsearch,ckclark\/elasticsearch,wimvds\/elasticsearch,wenpos\/elasticsearch,drewr\/elasticsearch,wangtuo\/elasticsearch,jchampion\/elasticsearch,obourgain\/elasticsearch,lzo\/elasticsearch-1,gingerwizard\/elasticsearch,hanswang\/elasticsearch,knight1128\/elasticsearch,rajanm\/elasticsearch,lydonchandra\/elasticsearch,strapdata\/elassandra5-rc,qwerty4030\/elasticsearch,tahaemin\/elasticsearch,jpountz\/elasticsearch,kubum\/elasticsearch,markllama\/elasticsearch,szroland\/elasticsearch,vietlq\/elasticsearch,himanshuag\/elasticsearch,winstonewert\/elasticsearch,rlugojr\/elasticsearch,sreeramjayan\/elasticsearch,amaliujia\/elasticsearch,hafkensite\/elasticsearch,pritishppai\/elasticsearch,luiseduardohdbackup\/elasticsearch,lks21c\/elasticsearch,LeoYao\/elasticsearch,mm0\/elasticsearch,winstonewert\/elasticsearch,ZTE-PaaS\/elasticsearch,wenpos\/elasticsearch,drewr\/elasticsearch,milodky\/elasticsearch,iacdingping\/elasticsearch,MichaelLiZhou\/elasticsearch,mute\/elasticsearch,kalburgimanjunath\/elasticsearch,AndreKR\/elasticsearch,markwalkom\/elasticsearch,dantuffery\/elasticsearch,rento19962\/elasticsearch,easonC\/elasticsearch,pablocastro\/elasticsearch,sposam\/elasticsearch,obourgain\/elasticsearch,infusionsoft\/elasticsearch,anti-social\/elasticsearch,wittyameta\/elasticsearch,zeroctu\/elasticsearch,zhaocloud\/elasticsearch,hafkensite\/elasticsearch,milodky\/elasticsearch,anti-social\/elasticsearch,a2lin\/elasticsearch,wimvds\/elasticsearch,jimhooker2002\/elasticsearch,vvcephei\/elasticsearch,mikemccand\/elasticsearch,robin13\/elasticsearch,markharwood\/elasticsearch,mute\/elasticsearch,kimimj\/elasticsearch,kalburgimanjunath\/elasticsearch,YosuaMichael\/elasticsearch,Rygbee\/elasticsearch,kaneshin\/elasticsearch,strapdata\/elassandra,masaruh\/elasticsearch,micpalmia\/elasticsearch,PhaedrusTheGreek\/elasticsearch,yongminxia\/elasticsearch,HarishAtGitHub\/elasticsearch,mgalushka\/elasticsearch,dongjoon-hyun\/elasticsearch,ricardocerq\/elasticsearch,zhaocloud\/elasticsearch,hafkensite\/elasticsearch,alexshadow007\/elasticsearch,Rygbee\/elasticsearch,mbrukman\/elasticsearch,mgalushka\/elasticsearch,knight1128\/elasticsearch,nazarewk\/elasticsearch,andrejserafim\/elasticsearch,jaynblue\/elasticsearch,nilabhsagar\/elasticsearch,rhoml\/elasticsearch,dylan8902\/elasticsearch,mortonsykes\/elasticsearch,sc0ttkclark\/elasticsearch,kevinkluge\/elasticsearch,Microsoft\/elasticsearch,njlawton\/elasticsearch,mohit\/elasticsearch,ckclark\/elasticsearch,jw0201\/elastic,diendt\/elasticsearch,JSCooke\/elasticsearch,zhaocloud\/elasticsearch,Clairebi\/ElasticsearchClone,iantruslove\/elasticsearch,Charlesdong\/elasticsearch,SergVro\/elasticsearch,hirdesh2008\/elasticsearch,MetSystem\/elasticsearch,sjohnr\/elasticsearch,bestwpw\/elasticsearch,yuy168\/elasticsearch,nazarewk\/elasticsearch,Stacey-Gammon\/elasticsearch,Siddartha07\/elasticsearch,queirozfcom\/elasticsearch,mikemccand\/elasticsearch,Asimov4\/elasticsearch,smflorentino\/elasticsearch,mmaracic\/elasticsearch,Brijeshrpatel9\/elasticsearch,henakamaMSFT\/elasticsearch,myelin\/elasticsearch,petabytedata\/elasticsearch,JSCooke\/elasticsearch,heng4fun\/elasticsearch,jw0201\/elastic,pozhidaevak\/elasticsearch,Brijeshrpatel9\/elasticsearch,mm0\/elasticsearch,MjAbuz\/elasticsearch,EasonYi\/elasticsearch,petmit\/elasticsearch,Flipkart\/elasticsearch,hanst\/elasticsearch,lightslife\/elasticsearch,mjason3\/elasticsearch,kaneshin\/elasticsearch,scottsom\/elasticsearch,Widen\/elasticsearch,HarishAtGitHub\/elasticsearch,dantuffery\/elasticsearch,lzo\/elasticsearch-1,boliza\/elasticsearch,MichaelLiZhou\/elasticsearch,smflorentino\/elasticsearch,nrkkalyan\/elasticsearch,jchampion\/elasticsearch,pranavraman\/elasticsearch,F0lha\/elasticsearch,Clairebi\/ElasticsearchClone,mbrukman\/elasticsearch,rajanm\/elasticsearch,golubev\/elasticsearch,rlugojr\/elasticsearch,sjohnr\/elasticsearch,hanswang\/elasticsearch,Helen-Zhao\/elasticsearch,avikurapati\/elasticsearch,socialrank\/elasticsearch,LewayneNaidoo\/elasticsearch,cnfire\/elasticsearch-1,btiernay\/elasticsearch,sposam\/elasticsearch,rhoml\/elasticsearch,mm0\/elasticsearch,pritishppai\/elasticsearch,koxa29\/elasticsearch,JackyMai\/elasticsearch,diendt\/elasticsearch,EasonYi\/elasticsearch,wangtuo\/elasticsearch,likaiwalkman\/elasticsearch,VukDukic\/elasticsearch,kalburgimanjunath\/elasticsearch,Collaborne\/elasticsearch,scorpionvicky\/elasticsearch,rmuir\/elasticsearch,PhaedrusTheGreek\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,nknize\/elasticsearch,areek\/elasticsearch,tsohil\/elasticsearch,i-am-Nathan\/elasticsearch,Liziyao\/elasticsearch,Ansh90\/elasticsearch,wenpos\/elasticsearch,karthikjaps\/elasticsearch,acchen97\/elasticsearch,MetSystem\/elasticsearch,AleksKochev\/elasticsearch,mrorii\/elasticsearch,iantruslove\/elasticsearch,dpursehouse\/elasticsearch,combinatorist\/elasticsearch,mapr\/elasticsearch,markharwood\/elasticsearch,huanzhong\/elasticsearch,Brijeshrpatel9\/elasticsearch,njlawton\/elasticsearch,tebriel\/elasticsearch,jimczi\/elasticsearch,s1monw\/elasticsearch,codebunt\/elasticsearch,lchennup\/elasticsearch,huypx1292\/elasticsearch,jbertouch\/elasticsearch,hydro2k\/elasticsearch,ckclark\/elasticsearch,LeoYao\/elasticsearch,mnylen\/elasticsearch,wayeast\/elasticsearch,vroyer\/elasticassandra,spiegela\/elasticsearch,fernandozhu\/elasticsearch,himanshuag\/elasticsearch,truemped\/elasticsearch,alexbrasetvik\/elasticsearch,andrestc\/elasticsearch,kingaj\/elasticsearch,petabytedata\/elasticsearch,nrkkalyan\/elasticsearch,C-Bish\/elasticsearch,Kakakakakku\/elasticsearch,sarwarbhuiyan\/elasticsearch,szroland\/elasticsearch,strapdata\/elassandra,Helen-Zhao\/elasticsearch,Chhunlong\/elasticsearch,nellicus\/elasticsearch,linglaiyao1314\/elasticsearch,HarishAtGitHub\/elasticsearch,umeshdangat\/elasticsearch,18098924759\/elasticsearch,rajanm\/elasticsearch,jeteve\/elasticsearch,sc0ttkclark\/elasticsearch,ImpressTV\/elasticsearch,NBSW\/elasticsearch,gfyoung\/elasticsearch,JackyMai\/elasticsearch,liweinan0423\/elasticsearch,Charlesdong\/elasticsearch,mapr\/elasticsearch,cwurm\/elasticsearch,tahaemin\/elasticsearch,brwe\/elasticsearch,heng4fun\/elasticsearch,humandb\/elasticsearch,geidies\/elasticsearch,iacdingping\/elasticsearch,mjason3\/elasticsearch,jprante\/elasticsearch,alexbrasetvik\/elasticsearch,nilabhsagar\/elasticsearch,queirozfcom\/elasticsearch,ivansun1010\/elasticsearch,mkis-\/elasticsearch,truemped\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,kcompher\/elasticsearch,MjAbuz\/elasticsearch,djschny\/elasticsearch,springning\/elasticsearch,nezirus\/elasticsearch,ulkas\/elasticsearch,brwe\/elasticsearch,wbowling\/elasticsearch,yongminxia\/elasticsearch,lmtwga\/elasticsearch,GlenRSmith\/elasticsearch,kaneshin\/elasticsearch,lightslife\/elasticsearch,mmaracic\/elasticsearch,hirdesh2008\/elasticsearch,aglne\/elasticsearch,scottsom\/elasticsearch,javachengwc\/elasticsearch,kenshin233\/elasticsearch,acchen97\/elasticsearch,chrismwendt\/elasticsearch,anti-social\/elasticsearch,cnfire\/elasticsearch-1,Charlesdong\/elasticsearch,franklanganke\/elasticsearch,nrkkalyan\/elasticsearch,F0lha\/elasticsearch,gmarz\/elasticsearch,yynil\/elasticsearch,Collaborne\/elasticsearch,Ansh90\/elasticsearch,karthikjaps\/elasticsearch,yuy168\/elasticsearch,cwurm\/elasticsearch,Helen-Zhao\/elasticsearch,wittyameta\/elasticsearch,zkidkid\/elasticsearch,linglaiyao1314\/elasticsearch,socialrank\/elasticsearch,sneivandt\/elasticsearch,Ansh90\/elasticsearch,mgalushka\/elasticsearch,drewr\/elasticsearch,koxa29\/elasticsearch,btiernay\/elasticsearch,kunallimaye\/elasticsearch,HarishAtGitHub\/elasticsearch,franklanganke\/elasticsearch,davidvgalbraith\/elasticsearch,EasonYi\/elasticsearch,linglaiyao1314\/elasticsearch,amit-shar\/elasticsearch,mrorii\/elasticsearch,zkidkid\/elasticsearch,Uiho\/elasticsearch,amit-shar\/elasticsearch,a2lin\/elasticsearch,ESamir\/elasticsearch,mkis-\/elasticsearch,jw0201\/elastic,mute\/elasticsearch,alexkuk\/elasticsearch,chirilo\/elasticsearch,ThalaivaStars\/OrgRepo1,Liziyao\/elasticsearch,Fsero\/elasticsearch,drewr\/elasticsearch,Liziyao\/elasticsearch,mbrukman\/elasticsearch,qwerty4030\/elasticsearch,strapdata\/elassandra,Stacey-Gammon\/elasticsearch,aglne\/elasticsearch,Ansh90\/elasticsearch,hechunwen\/elasticsearch,socialrank\/elasticsearch,scottsom\/elasticsearch,Charlesdong\/elasticsearch,nellicus\/elasticsearch,jango2015\/elasticsearch,jsgao0\/elasticsearch,SergVro\/elasticsearch,vroyer\/elassandra,nrkkalyan\/elasticsearch,ZTE-PaaS\/elasticsearch,pritishppai\/elasticsearch,iacdingping\/elasticsearch,kcompher\/elasticsearch,iamjakob\/elasticsearch,VukDukic\/elasticsearch,mmaracic\/elasticsearch,NBSW\/elasticsearch,slavau\/elasticsearch,Helen-Zhao\/elasticsearch,tkssharma\/elasticsearch,mnylen\/elasticsearch,abhijitiitr\/es,rlugojr\/elasticsearch,btiernay\/elasticsearch,caengcjd\/elasticsearch,ckclark\/elasticsearch,nezirus\/elasticsearch,chirilo\/elasticsearch,combinatorist\/elasticsearch,pablocastro\/elasticsearch,kkirsche\/elasticsearch,apepper\/elasticsearch,beiske\/elasticsearch,robin13\/elasticsearch,davidvgalbraith\/elasticsearch,clintongormley\/elasticsearch,a2lin\/elasticsearch,smflorentino\/elasticsearch,adrianbk\/elasticsearch,LeoYao\/elasticsearch,Ansh90\/elasticsearch,kunallimaye\/elasticsearch,Shekharrajak\/elasticsearch,wimvds\/elasticsearch,beiske\/elasticsearch,lydonchandra\/elasticsearch,alexshadow007\/elasticsearch,trangvh\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,MetSystem\/elasticsearch,pozhidaevak\/elasticsearch,bawse\/elasticsearch,hirdesh2008\/elasticsearch,infusionsoft\/elasticsearch,humandb\/elasticsearch,thecocce\/elasticsearch,micpalmia\/elasticsearch,infusionsoft\/elasticsearch,girirajsharma\/elasticsearch,markwalkom\/elasticsearch,queirozfcom\/elasticsearch,tahaemin\/elasticsearch,palecur\/elasticsearch,mortonsykes\/elasticsearch,polyfractal\/elasticsearch,lchennup\/elasticsearch,strapdata\/elassandra5-rc,yongminxia\/elasticsearch,Fsero\/elasticsearch,elancom\/elasticsearch,rento19962\/elasticsearch,NBSW\/elasticsearch,fred84\/elasticsearch,markllama\/elasticsearch,huypx1292\/elasticsearch,areek\/elasticsearch,liweinan0423\/elasticsearch,robin13\/elasticsearch,xpandan\/elasticsearch,SergVro\/elasticsearch,Widen\/elasticsearch,easonC\/elasticsearch,pritishppai\/elasticsearch,Asimov4\/elasticsearch,ivansun1010\/elasticsearch,vingupta3\/elasticsearch,AleksKochev\/elasticsearch,cnfire\/elasticsearch-1,vrkansagara\/elasticsearch,mcku\/elasticsearch,beiske\/elasticsearch,vroyer\/elassandra,Clairebi\/ElasticsearchClone,yanjunh\/elasticsearch,Siddartha07\/elasticsearch,overcome\/elasticsearch,queirozfcom\/elasticsearch,khiraiwa\/elasticsearch,szroland\/elasticsearch,markwalkom\/elasticsearch,vietlq\/elasticsearch,Uiho\/elasticsearch,codebunt\/elasticsearch,avikurapati\/elasticsearch,amaliujia\/elasticsearch,slavau\/elasticsearch,umeshdangat\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo"} {"commit":"8b6a040227db507980d5968d2067b12c583f20e3","old_file":"src\/docs\/asciidoc\/index.adoc","new_file":"src\/docs\/asciidoc\/index.adoc","old_contents":"= JoinFaces Documentation\nMarcelo Fernandes ; Lars Grefer \n:toc: left\n\n\n== Using JoinFaces\n\n=== System Requirements\n\n=== Maven Integration\n\n=== Gradle Integration","new_contents":"= JoinFaces Documentation\nMarcelo Fernandes ; Lars Grefer \n:toc: left\n:sectnums:\n:sectanchors:\n\n== Using JoinFaces\n\n.Official example projects\n|===\n|Build tool \\ packaing |`jar` |`war`\n\n|https:\/\/maven.apache.org\/[Maven]\n|https:\/\/github.com\/joinfaces\/joinfaces-maven-jar-example[maven-jar-example]\n|https:\/\/github.com\/joinfaces\/joinfaces-maven-war-example[maven-war-example]\n\n|https:\/\/gradle.org\/[Gradle]\n|https:\/\/github.com\/joinfaces\/joinfaces-gradle-jar-example[gradle-jar-example]\n|https:\/\/github.com\/joinfaces\/joinfaces-gradle-war-example[gradle-war-example]\n\n|===\n\n=== System Requirements\n\n.System Requirements\n|===\n|Joinfaces |Java |Spring Boot |JSF\n\n|3.3 |1.8 to 11 |2.1 |2.0 to 2.3\n|3.0 to 3.2 |1.8 |2.0 |2.0 to 2.3\n|2.x |1.6 to 1.8 |1.x |2.0 to 2.2\n\n|===\n\nThis are the combinations we have tested and expect to work, but depending on the features you are using, other combinations might work, too.\n\n\n=== Maven Integration\n\n=== Gradle Integration\n\n== Features","subject":"Add Example projects and compatibility matrix","message":"Add Example projects and compatibility matrix\n","lang":"AsciiDoc","license":"apache-2.0","repos":"larsgrefer\/joinfaces,joinfaces\/joinfaces,joinfaces\/joinfaces,larsgrefer\/joinfaces"} {"commit":"96a7bcc485acd18bd89af98ec04c2a25a477af42","old_file":"workshop\/src\/asciidoc\/installation.adoc","new_file":"workshop\/src\/asciidoc\/installation.adoc","old_contents":"= Instructions\n\nFollow these steps to setup Docker on your machine.\n\n* Go to https:\/\/www.docker.com\/products\/overview#\/install_the_platform\n* Download the distributable for your system type\n* Follow the installation instructions\n\nAfter installation continue with Exercise 1 to verify that your setup is running correctly.\n\n= Troubleshooting during installation\n*Windows Home Edition*\n\nIf you run Windows Home Edition and\/or get a message about Hyper-V being disabled, you have to install https:\/\/www.docker.com\/products\/docker-toolbox[Docker Toolbox] instead because your version of Windows does not support the \"Docker for Windows\"-product.\n\n*Hardware Virtualization disabled*\n\nIf you encounter the message \"VT-x\/AMD-v has to be enabled\", please enable \"Intel Virtualization\" in the BIOS of your system. This is required for running virtual machines. Detailed instructions can be found http:\/\/www.howtogeek.com\/213795\/how-to-enable-intel-vt-x-in-your-computers-bios-or-uefi-firmware\/[here] under \"Access the BIOS or UEFI Firmware\".\n\n","new_contents":"= Instructions\n\nFollow these steps to setup Docker on your machine.\n\n* Go to https:\/\/www.docker.com\/products\/overview#\/install_the_platform\n* Download the distributable for your system type\n* Follow the installation instructions\n\nAfter installation continue with Exercise 1 to verify that your setup is running correctly.\n\n[NOTE]\n*Windows Home Edition* +\nIf you run Windows Home Edition and\/or get a message about Hyper-V being disabled, you have to install https:\/\/www.docker.com\/products\/docker-toolbox[Docker Toolbox] instead because your version of Windows does not support the \"Docker for Windows\"-product. +\n*Hardware Virtualization disabled* +\nIf you encounter the message \"VT-x\/AMD-v has to be enabled\", please enable \"Intel Virtualization\" in the BIOS of your system. This is required for running virtual machines. Detailed instructions can be found http:\/\/www.howtogeek.com\/213795\/how-to-enable-intel-vt-x-in-your-computers-bios-or-uefi-firmware\/[here] under \"Access the BIOS or UEFI Firmware\".\n\n","subject":"Make windows caveats a note","message":"Make windows caveats a note\n","lang":"AsciiDoc","license":"apache-2.0","repos":"bolcom\/docker-for-testers,bolcom\/docker-for-testers,bolcom\/docker-for-testers"} {"commit":"3815f5297d3df610705589d402a2fdbf2ca9f5bc","old_file":"opennms-doc\/guide-install\/src\/asciidoc\/text\/monitor-location-minion\/rhel\/step-2-install-minion.adoc","new_file":"opennms-doc\/guide-install\/src\/asciidoc\/text\/monitor-location-minion\/rhel\/step-2-install-minion.adoc","old_contents":"\n==== Step 2: Install the repository and Minion package\n\nConnect with _SSH_ to your remote _RHEL_ system where you need a _Minion_ to be installed.\n\n.Install the Yum repository\n[source, shell]\n----\nyum -y https:\/\/yum.opennms.org\/repofiles\/opennms-repo-stable-rhel7.noarch.rpm\nrpm --import https:\/\/yum.opennms.org\/OPENNMS-GPG-KEY\n----\n\n.Install the Minion package\n[source, bash]\n----\nyum -y install opennms-minion\n----\n\nThe following packages will be automatically installed:\n\n* _opennms-minion_: The Minion meta package\n* _opennms-minion-container_: The _Karaf_ OSGi container with _Minion_ branding and additional management extensions\n* _opennms-minion-features-core_: Core utilities and services required by the _Minion_ features\n* _opennms-minion-features-default_: Service-specific features\n\nWith the successful installed packages the _Minion_ is installed in the following directory structure:\n\n[source, shell]\n----\n[root@localhost \/opt\/minion]# $ tree -L 1\n.\n├── bin\n├── deploy\n├── etc\n├── lib\n├── repositories\n└── system\n----\n\nThe Minion's startup configuration can be changed by editing the `\/etc\/sysconfig\/minion` file.\nIt allows to override the defaults used at startup including:\n\n* Location of the JDK\n* Memory usage\n* User to run as","new_contents":"\n==== Step 2: Install the repository and Minion package\n\nConnect with _SSH_ to your remote _RHEL_ system where you need a _Minion_ to be installed.\n\n.Install the Yum repository\n[source, shell]\n----\nyum -y install https:\/\/yum.opennms.org\/repofiles\/opennms-repo-stable-rhel7.noarch.rpm\nrpm --import https:\/\/yum.opennms.org\/OPENNMS-GPG-KEY\n----\n\n.Install the Minion package\n[source, bash]\n----\nyum -y install opennms-minion\n----\n\nThe following packages will be automatically installed:\n\n* _opennms-minion_: The Minion meta package\n* _opennms-minion-container_: The _Karaf_ OSGi container with _Minion_ branding and additional management extensions\n* _opennms-minion-features-core_: Core utilities and services required by the _Minion_ features\n* _opennms-minion-features-default_: Service-specific features\n\nWith the successful installed packages the _Minion_ is installed in the following directory structure:\n\n[source, shell]\n----\n[root@localhost \/opt\/minion]# $ tree -L 1\n.\n├── bin\n├── deploy\n├── etc\n├── lib\n├── repositories\n└── system\n----\n\nThe Minion's startup configuration can be changed by editing the `\/etc\/sysconfig\/minion` file.\nIt allows to override the defaults used at startup including:\n\n* Location of the JDK\n* Memory usage\n* User to run as\n","subject":"Fix missing yum install when installing the repo","message":"Fix missing yum install when installing the repo","lang":"AsciiDoc","license":"agpl-3.0","repos":"aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms"} {"commit":"6163de841cd2d2441b0e80f136b72b09090a0b8b","old_file":"docs\/index.asciidoc","new_file":"docs\/index.asciidoc","old_contents":"= Beats Platform\n\ninclude::.\/overview.asciidoc[]\n\ninclude::.\/gettingstarted.asciidoc[]\n\ninclude::.\/configuration.asciidoc[]\n\ninclude::.\/https.asciidoc[]\n\ninclude::.\/newbeat.asciidoc[]\n","new_contents":"= Beats Platform Reference\n\ninclude::.\/overview.asciidoc[]\n\ninclude::.\/gettingstarted.asciidoc[]\n\ninclude::.\/configuration.asciidoc[]\n\ninclude::.\/https.asciidoc[]\n\ninclude::.\/newbeat.asciidoc[]\n","subject":"Use Beats Platform Reference as title","message":"Use Beats Platform Reference as title\n","lang":"AsciiDoc","license":"mit","repos":"yapdns\/yapdnsbeat,yapdns\/yapdnsbeat"} {"commit":"9b8b87009cbe064d577ed53e0bae519770197eee","old_file":"spring-boot-project\/spring-boot-docs\/src\/docs\/asciidoc\/getting-started\/system-requirements.adoc","new_file":"spring-boot-project\/spring-boot-docs\/src\/docs\/asciidoc\/getting-started\/system-requirements.adoc","old_contents":"[[getting-started.system-requirements]]\n== System Requirements\nSpring Boot {spring-boot-version} requires https:\/\/www.java.com[Java 8] and is compatible up to and including Java 17.\n{spring-framework-docs}\/[Spring Framework {spring-framework-version}] or above is also required.\n\nExplicit build support is provided for the following build tools:\n\n|===\n| Build Tool | Version\n\n| Maven\n| 3.5+\n\n| Gradle\n| 6.8.x, 6.9.x, and 7.x\n|===\n\n\n\n[[getting-started.system-requirements.servlet-containers]]\n=== Servlet Containers\nSpring Boot supports the following embedded servlet containers:\n\n|===\n| Name | Servlet Version\n\n| Tomcat 9.0\n| 4.0\n\n| Jetty 9.4\n| 3.1\n\n| Jetty 10.0\n| 4.0\n\n| Undertow 2.0\n| 4.0\n|===\n\nYou can also deploy Spring Boot applications to any Servlet 3.1+ compatible container.\n","new_contents":"[[getting-started.system-requirements]]\n== System Requirements\nSpring Boot {spring-boot-version} requires https:\/\/www.java.com[Java 8] and is compatible up to and including Java 18.\n{spring-framework-docs}\/[Spring Framework {spring-framework-version}] or above is also required.\n\nExplicit build support is provided for the following build tools:\n\n|===\n| Build Tool | Version\n\n| Maven\n| 3.5+\n\n| Gradle\n| 6.8.x, 6.9.x, and 7.x\n|===\n\n\n\n[[getting-started.system-requirements.servlet-containers]]\n=== Servlet Containers\nSpring Boot supports the following embedded servlet containers:\n\n|===\n| Name | Servlet Version\n\n| Tomcat 9.0\n| 4.0\n\n| Jetty 9.4\n| 3.1\n\n| Jetty 10.0\n| 4.0\n\n| Undertow 2.0\n| 4.0\n|===\n\nYou can also deploy Spring Boot applications to any Servlet 3.1+ compatible container.\n","subject":"Document support for Java 18","message":"Document support for Java 18\n\nCloses gh-30548\n","lang":"AsciiDoc","license":"apache-2.0","repos":"michael-simons\/spring-boot,htynkn\/spring-boot,vpavic\/spring-boot,mdeinum\/spring-boot,chrylis\/spring-boot,scottfrederick\/spring-boot,htynkn\/spring-boot,dreis2211\/spring-boot,dreis2211\/spring-boot,mdeinum\/spring-boot,scottfrederick\/spring-boot,spring-projects\/spring-boot,scottfrederick\/spring-boot,aahlenst\/spring-boot,dreis2211\/spring-boot,spring-projects\/spring-boot,vpavic\/spring-boot,wilkinsona\/spring-boot,chrylis\/spring-boot,scottfrederick\/spring-boot,michael-simons\/spring-boot,aahlenst\/spring-boot,aahlenst\/spring-boot,vpavic\/spring-boot,chrylis\/spring-boot,mdeinum\/spring-boot,wilkinsona\/spring-boot,dreis2211\/spring-boot,chrylis\/spring-boot,wilkinsona\/spring-boot,michael-simons\/spring-boot,vpavic\/spring-boot,michael-simons\/spring-boot,vpavic\/spring-boot,wilkinsona\/spring-boot,aahlenst\/spring-boot,chrylis\/spring-boot,mdeinum\/spring-boot,scottfrederick\/spring-boot,htynkn\/spring-boot,aahlenst\/spring-boot,wilkinsona\/spring-boot,spring-projects\/spring-boot,htynkn\/spring-boot,chrylis\/spring-boot,scottfrederick\/spring-boot,dreis2211\/spring-boot,michael-simons\/spring-boot,spring-projects\/spring-boot,mdeinum\/spring-boot,spring-projects\/spring-boot,dreis2211\/spring-boot,htynkn\/spring-boot,michael-simons\/spring-boot,vpavic\/spring-boot,spring-projects\/spring-boot,htynkn\/spring-boot,aahlenst\/spring-boot,mdeinum\/spring-boot,wilkinsona\/spring-boot"} {"commit":"fa03fb01d9d34ebb07ddd8c6c978d59e60b68d9e","old_file":"src\/main\/asciidoc\/installation.adoc","new_file":"src\/main\/asciidoc\/installation.adoc","old_contents":"[[installation]]\n== Installation\n\n=== Dependency\n\n```xml\n\n net.ttddyy<\/groupId>\n datasource-assert<\/artifactId>\n [LATEST_VERSION]<\/version>\n<\/dependency>\n```\n\n{datasource-proxy}[datasource-proxy] is the only transitive dependency library. +\n{assertj}[AssertJ] and {hamcrest}[Hamcrest] are optional. If you need to use their assertions, you need to explicitly specify dependency\nin your project.\n\n\n==== Snapshot\n\nSnapshot is available via {oss-snapshot-repository}[oss sonatype snapshot repository].\n\nTo download snapshot jars, enable sonatype snapshot repository:\n\n```xml\n\n \n sonatype-snapshots-repo<\/id>\n https:\/\/oss.sonatype.org\/content\/repositories\/snapshots<\/url>\n \n false<\/enabled>\n <\/releases>\n \n true<\/enabled>\n <\/snapshots>\n <\/repository>\n<\/repositories>\n```\n\n=== Supported Java Versions\n\n`datasource-assert` works with java 1.7+.\n\n","new_contents":"[[installation]]\n== Installation\n\n=== Dependency\n\n```xml\n\n net.ttddyy<\/groupId>\n datasource-assert<\/artifactId>\n [LATEST_VERSION]<\/version>\n<\/dependency>\n```\n\n{datasource-proxy}[datasource-proxy] is the only transitive dependency library. +\n{assertj}[AssertJ] and {hamcrest}[Hamcrest] are optional. If you need to use their assertions, you need to explicitly specify dependency\nin your project.\n\n\n==== Snapshot (via Sonatype OSSRH)\n\nSnapshot is available via {oss-snapshot-repository}[oss sonatype snapshot repository].\n\nTo download snapshot jars, enable sonatype snapshot repository:\n\n```xml\n\n \n sonatype-snapshots-repo<\/id>\n https:\/\/oss.sonatype.org\/content\/repositories\/snapshots<\/url>\n \n false<\/enabled>\n <\/releases>\n \n true<\/enabled>\n <\/snapshots>\n <\/repository>\n<\/repositories>\n```\n\n==== Snapshot (via JitPack)\n\n```xml\n\n \n jitpack.io<\/id>\n https:\/\/jitpack.io<\/url>\n <\/repository>\n<\/repositories>\n```\n\n```xml\n\n om.github.ttddyy<\/groupId>\n datasource-assert<\/artifactId>\n master-SNAPSHOT<\/version>\n<\/dependency>\n```\n\n=== Supported Java Versions\n\n`datasource-assert` works with java 1.7+.\n\n","subject":"Document snapshot download from JitPack","message":"Document snapshot download from JitPack\n","lang":"AsciiDoc","license":"apache-2.0","repos":"ttddyy\/datasource-assert,ttddyy\/datasource-assert,ttddyy\/datasource-assert"} {"commit":"21f9876d879aefaad125c269a52d9b137c2b70e0","old_file":"docs\/manual\/src\/docs\/asciidoc\/_includes\/about\/whats-new.adoc","new_file":"docs\/manual\/src\/docs\/asciidoc\/_includes\/about\/whats-new.adoc","old_contents":"[[new]]\n== What's New in Spring Security 5.5\n\nSpring Security 5.5 provides a number of new features.\nBelow are the highlights of the release.\n\n[[whats-new-servlet]]\n=== Servlet\n* OAuth 2.0 Client\n\n** Added support for https:\/\/github.com\/spring-projects\/spring-security\/pull\/9520[Jwt Client Authentication] `private_key_jwt` and `client_secret_jwt`\n** Added https:\/\/github.com\/spring-projects\/spring-security\/pull\/9535[Jwt Bearer Authorization Grant] support\n** Added https:\/\/github.com\/spring-projects\/spring-security\/pull\/8765[R2DBC implementation] of `ReactiveOAuth2AuthorizedClientService`\n\n* Configuration\n\n** Introduced https:\/\/github.com\/spring-projects\/spring-security\/issues\/9205[DispatcherType request matcher]\n\n* Kotlin DSL\n\n** Added https:\/\/github.com\/spring-projects\/spring-security\/issues\/9319[rememberMe support]\n","new_contents":"[[new]]\n== What's New in Spring Security 5.5\n\nSpring Security 5.5 provides a number of new features.\nBelow are the highlights of the release.\n\n[[whats-new-servlet]]\n=== Servlet\n* OAuth 2.0 Client\n\n** Added support for https:\/\/github.com\/spring-projects\/spring-security\/pull\/9520[Jwt Client Authentication] `private_key_jwt` and `client_secret_jwt`\n** Added https:\/\/github.com\/spring-projects\/spring-security\/pull\/9535[Jwt Bearer Authorization Grant] support\n** Added https:\/\/github.com\/spring-projects\/spring-security\/pull\/8765[R2DBC implementation] of `ReactiveOAuth2AuthorizedClientService`\n\n* Configuration\n\n** Introduced https:\/\/github.com\/spring-projects\/spring-security\/issues\/9205[DispatcherType request matcher]\n\n* Kotlin DSL\n\n** Added https:\/\/github.com\/spring-projects\/spring-security\/issues\/9319[rememberMe support]\n\n[[whats-new-webflux]]\n=== WebFlux\n\n** Added https:\/\/github.com\/spring-projects\/spring-security\/issues\/8143[Kotlin coroutine support] for `EnableReactiveMethodSecurity`\n","subject":"Add WebFlux section to What's New","message":"Add WebFlux section to What's New\n\nCloses gh-9590\n","lang":"AsciiDoc","license":"apache-2.0","repos":"djechelon\/spring-security,spring-projects\/spring-security,jgrandja\/spring-security,rwinch\/spring-security,rwinch\/spring-security,djechelon\/spring-security,spring-projects\/spring-security,rwinch\/spring-security,djechelon\/spring-security,jgrandja\/spring-security,jgrandja\/spring-security,rwinch\/spring-security,jgrandja\/spring-security,djechelon\/spring-security,rwinch\/spring-security,djechelon\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,jgrandja\/spring-security,spring-projects\/spring-security,rwinch\/spring-security,spring-projects\/spring-security,jgrandja\/spring-security"} {"commit":"48b554c95aaf4c4554981152227880603a5e2933","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= rhq-metrics\n\nProject to implement a MaaS and CaaS\n\n* MaaS: Metrics as a Service\n* CaaS: Charts as a Service\n","new_contents":"= rhq-metrics\n\nProject to implement a MaaS and CaaS\n\n* MaaS: Metrics as a Service\n* ChaaS: Charts as a Service\n","subject":"Change Charting as a Service from CaaS to ChaaS. Pronounced Chaz. More unique chan CaaS and sounds better.","message":"Change Charting as a Service from CaaS to ChaaS. Pronounced Chaz. More unique chan CaaS and sounds better.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"jshaughn\/hawkular-metrics,jshaughn\/hawkular-metrics,spadgett\/hawkular-metrics,vrockai\/hawkular-metrics,Jiri-Kremser\/hawkular-metrics,hawkular\/hawkular-metrics,140293816\/Hawkular-fork,tsegismont\/hawkular-metrics,ppalaga\/hawkular-metrics,mwringe\/hawkular-metrics,pilhuhn\/rhq-metrics,hawkular\/hawkular-metrics,jshaughn\/hawkular-metrics,burmanm\/hawkular-metrics,tsegismont\/hawkular-metrics,jsanda\/hawkular-metrics,mwringe\/hawkular-metrics,burmanm\/hawkular-metrics,spadgett\/hawkular-metrics,jshaughn\/hawkular-metrics,jsanda\/hawkular-metrics,mwringe\/hawkular-metrics,spadgett\/hawkular-metrics,pilhuhn\/rhq-metrics,140293816\/Hawkular-fork,ppalaga\/hawkular-metrics,ppalaga\/hawkular-metrics,tsegismont\/hawkular-metrics,jsanda\/hawkular-metrics,tsegismont\/hawkular-metrics,vrockai\/hawkular-metrics,Jiri-Kremser\/hawkular-metrics,vrockai\/hawkular-metrics,Jiri-Kremser\/hawkular-metrics,jotak\/hawkular-metrics,pilhuhn\/rhq-metrics,vrockai\/hawkular-metrics,jotak\/hawkular-metrics,burmanm\/hawkular-metrics,vrockai\/hawkular-metrics,140293816\/Hawkular-fork,Jiri-Kremser\/hawkular-metrics,pilhuhn\/rhq-metrics,jsanda\/hawkular-metrics,spadgett\/hawkular-metrics,jsanda\/hawkular-metrics,ppalaga\/hawkular-metrics,jotak\/hawkular-metrics,jotak\/hawkular-metrics,hawkular\/hawkular-metrics,hawkular\/hawkular-metrics,burmanm\/hawkular-metrics,140293816\/Hawkular-fork,spadgett\/hawkular-metrics,Jiri-Kremser\/hawkular-metrics,mwringe\/hawkular-metrics"} {"commit":"d2a407f93fe7f6db2ea387c6322aa34ca2d8fefd","old_file":"docs\/src\/docs\/asciidoc\/json\/installation.adoc","new_file":"docs\/src\/docs\/asciidoc\/json\/installation.adoc","old_contents":"To activate JSON views, add the following dependency to the `dependencies` block of your `build.gradle` where `VERSION` is the version of the plugin you plan to use:\n\n[source,groovy]\ncompile \"org.grails.plugins:views-json:VERSION\"\n\n\nTo enable Gradle compilation of JSON views for production environment add the following to the `buildscript` `dependencies` block:\n\n[source,groovy]\nbuildscript {\n ...\n dependencies {\n ...\n classpath \"org.grails.plugins:views-gradle:VERSION\"\n }\n}\n\nThen apply the `org.grails.plugins.views-json` Gradle plugin after any Grails core gradle plugins:\n\n[source,groovy]\n...\napply plugin: \"org.grails.grails-web\"\napply plugin: \"org.grails.plugins.views-json\"\n\nThis will add a `compileGsonViews` task to Gradle that is executed when producing a JAR or WAR file.","new_contents":"To activate JSON views, add the following dependency to the `dependencies` block of your `build.gradle`:\n\n[source,groovy,subs=\"attributes\"]\ncompile \"org.grails.plugins:views-json:{version}\"\n\n\nTo enable Gradle compilation of JSON views for production environment add the following to the `buildscript` `dependencies` block:\n\n[source,groovy,subs=\"attributes\"]\nbuildscript {\n ...\n dependencies {\n ...\n classpath \"org.grails.plugins:views-gradle:{version}\"\n }\n}\n\nThen apply the `org.grails.plugins.views-json` Gradle plugin after any Grails core gradle plugins:\n\n[source,groovy]\n...\napply plugin: \"org.grails.grails-web\"\napply plugin: \"org.grails.plugins.views-json\"\n\nThis will add a `compileGsonViews` task to Gradle that is executed when producing a JAR or WAR file.\n","subject":"Use project version number in docs","message":"Use project version number in docs\n","lang":"AsciiDoc","license":"apache-2.0","repos":"grails\/grails-views"} {"commit":"f011a404f6b261af2579fcb8bb7c434924265aef","old_file":"subprojects\/docs\/src\/docs\/userguide\/licenses.adoc","new_file":"subprojects\/docs\/src\/docs\/userguide\/licenses.adoc","old_contents":"\/\/ Copyright 2017 the original author or authors.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\n[[licenses]]\n= License Information\n\n\n[[sec:gradle_documentation]]\n== Gradle Documentation\n\n_Copyright © 2007-2018 Gradle, Inc._\n\nGradle build tool source code is open-source and licensed under the link:https:\/\/github.com\/gradle\/gradle\/blob\/master\/LICENSE[Apache License 2.0].\n\n\nGradle user manual and DSL references are licensed under link:http:\/\/creativecommons.org\/licenses\/by-nc-sa\/4.0\/[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License].\n\n\n[[licenses:build_scan_plugin]]\n== Gradle Build Scan Plugin\n\nUse of the link:https:\/\/scans.gradle.com\/plugin\/[build scan plugin] is subject to link:https:\/\/gradle.com\/legal\/terms-of-service\/[Gradle's Terms of Service].\n","new_contents":"\/\/ Copyright 2017 the original author or authors.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\n[[licenses]]\n= License Information\n\n\n[[sec:gradle_documentation]]\n== Gradle Documentation\n\n_Copyright © 2007-2019 Gradle, Inc._\n\nGradle build tool source code is open-source and licensed under the link:https:\/\/github.com\/gradle\/gradle\/blob\/master\/LICENSE[Apache License 2.0].\n\n\nGradle user manual and DSL references are licensed under link:http:\/\/creativecommons.org\/licenses\/by-nc-sa\/4.0\/[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License].\n\n\n[[licenses:build_scan_plugin]]\n== Gradle Build Scan Plugin\n\nUse of the link:https:\/\/scans.gradle.com\/plugin\/[build scan plugin] is subject to link:https:\/\/gradle.com\/legal\/terms-of-service\/[Gradle's Terms of Service].\n","subject":"Adjust year in copyright notice","message":"Adjust year in copyright notice\n","lang":"AsciiDoc","license":"apache-2.0","repos":"gradle\/gradle,blindpirate\/gradle,blindpirate\/gradle,blindpirate\/gradle,gradle\/gradle,blindpirate\/gradle,gradle\/gradle,blindpirate\/gradle,blindpirate\/gradle,gradle\/gradle,blindpirate\/gradle,gradle\/gradle,blindpirate\/gradle,gradle\/gradle,gradle\/gradle,gradle\/gradle,gradle\/gradle,blindpirate\/gradle,gradle\/gradle,blindpirate\/gradle"} {"commit":"0e121b6123cfbea21fdab0cbd903ef1b1b9228a7","old_file":"docs\/index.adoc","new_file":"docs\/index.adoc","old_contents":"= tick\nMalcolm Sparks ; Henry Widd; Johanna Antonelli \n0.4.10-alpha, 2019-03-27\n:toc: left\n:toclevels: 4\n:docinfo: shared\n:sectnums: true\n:sectnumlevels: 2\n:xrefstyle: short\n:nofooter:\n\n:leveloffset: +1\n\ninclude::intro.adoc[]\n\ninclude::setup.adoc[]\n\ninclude::api.adoc[]\n\ninclude::dates.adoc[]\n\ninclude::durations.adoc[]\n\ninclude::clocks.adoc[]\n\ninclude::intervals.adoc[]\n\ninclude::calendars.adoc[]\n\ninclude::schedules.adoc[]\n\ninclude::formatting.adoc[]\n\ninclude::cookbook\/index.adoc[]\n\ninclude::bibliography.adoc[]\n","new_contents":"= tick\nMalcolm Sparks ; Henry Widd; Johanna Antonelli \n0.4.25-alpha, 2020-10-01\n:toc: left\n:toclevels: 4\n:docinfo: shared\n:sectnums: true\n:sectnumlevels: 2\n:xrefstyle: short\n:nofooter:\n\n:leveloffset: +1\n\ninclude::intro.adoc[]\n\ninclude::setup.adoc[]\n\ninclude::api.adoc[]\n\ninclude::dates.adoc[]\n\ninclude::durations.adoc[]\n\ninclude::clocks.adoc[]\n\ninclude::intervals.adoc[]\n\ninclude::calendars.adoc[]\n\ninclude::schedules.adoc[]\n\ninclude::formatting.adoc[]\n\ninclude::cookbook\/index.adoc[]\n\ninclude::bibliography.adoc[]\n","subject":"Increment docs version to align with current code tag","message":"Increment docs version to align with current code tag\n","lang":"AsciiDoc","license":"mit","repos":"juxt\/tick,juxt\/tick"} {"commit":"ca07dd2e5856933a2f5711f37de8193e087e40c3","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= SpringBoot WebApp Demo\n\nhttps:\/\/projects.spring.io\/spring-boot[Spring Boot]\nlooks like a nice way to get started.\nThis is a trivial webapp created using SpringBoot.\n\n== HowTo\n\n\tmvn spring-boot:run\n\nOr, in Eclipse with Spring plugin (or \"Spring Tool Suite\"), \nright-click Application.java, then RunAs->Spring Boot Application\n\nthen connect to \n\n\thttp:\/\/localhost:8000\/\n\nNote: that is port 8000, _not_ the usual 8080 to avoid conflicts.\nChange this in application.properties if you don't like it.\n\nFill in the form and click Submit.\n\n== War Deployment\n\nIt seems that you can't have both the instant-deployment convenience of\nSpring Boot AND the security of a full WAR deployment in the same POM file.\nYou will need to make several changes to deploy as a WAR file. See the\nsection entitled \"Traditional Deployment\"--\"Create a deployable war file\" in\nthe spring-boot reference manual (Section 73.1 in the current snapshot as of\nthis writing).\n","new_contents":"= SpringBoot WebApp Demo\n\nhttps:\/\/projects.spring.io\/spring-boot[Spring Boot]\nlooks like a nice way to get started.\nThis is a trivial webapp created using SpringBoot.\n\n== HowTo\n\n\tmvn spring-boot:run\n\nOr, in Eclipse with Spring plugin (or \"Spring Tool Suite\"), \nright-click Application.java, then RunAs->Spring Boot Application\n\nthen connect to \n\nhttp:\/\/localhost:8000\/\n\nNote: that is port 8000, _not_ the usual 8080 to avoid conflicts.\nChange this in application.properties if you don't like it.\n\nFill in the form and click Submit.\n\n== War Deployment\n\nIt seems that you can't have both the instant-deployment convenience of\nSpring Boot AND the security of a full WAR deployment in the same POM file.\nYou will need to make several changes to deploy as a WAR file. See the\nsection entitled \"Traditional Deployment\"--\"Create a deployable war file\" in\nthe spring-boot reference manual (Section 73.1 in the current snapshot as of\nthis writing).\n","subject":"Revert indent of link, formatting failure","message":"Revert indent of link, formatting failure\n","lang":"AsciiDoc","license":"bsd-2-clause","repos":"IanDarwin\/springbootdemo,IanDarwin\/springbootdemo"} {"commit":"ccc0dd800fc561a8edbfa33bc748527fcb694a7d","old_file":"docs\/reference\/migration\/index.asciidoc","new_file":"docs\/reference\/migration\/index.asciidoc","old_contents":"[[breaking-changes]]\n= Breaking changes\n\n[partintro]\n--\nThis section discusses the changes that you need to be aware of when migrating\nyour application from one version of Elasticsearch to another.\n\nAs a general rule:\n\n* Migration between minor versions -- e.g. `5.x` to `5.y` -- can be\n performed by <>.\n\n* Migration between consecutive major versions -- e.g. `2.x` to `5.x` --\n requires a <>.\n\n* Migration between non-consecutive major versions -- e.g. `1.x` to `5.x` --\n is not supported.\n\nSee <> for more info.\n--\ninclude::migrate_5_0.asciidoc[]\n","new_contents":"[[breaking-changes]]\n= Breaking changes\n\n[partintro]\n--\nThis section discusses the changes that you need to be aware of when migrating\nyour application from one version of Elasticsearch to another.\n\nAs a general rule:\n\n* Migration between minor versions -- e.g. `5.x` to `5.y` -- can be\n performed by <>.\n\n* Migration between consecutive major versions -- e.g. `2.x` to `5.x` --\n requires a <>.\n\n* Migration between non-consecutive major versions -- e.g. `1.x` to `5.x` --\n is not supported.\n\nSee <> for more info.\n--\n\ninclude::migrate_5_1.asciidoc[]\n\ninclude::migrate_5_0.asciidoc[]\n","subject":"Include 5.1 migration docs in migration docs","message":"Include 5.1 migration docs in migration docs\n\nThe migration docs need to include a copy of the migration docs for all\nversions.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc"} {"commit":"0891b3c927aaf8e690c9be59204d4daa6cd71025","old_file":"docs\/java-api\/query-dsl\/script-query.asciidoc","new_file":"docs\/java-api\/query-dsl\/script-query.asciidoc","old_contents":"[[java-query-dsl-script-query]]\n==== Script Query\n\nSee {ref}\/query-dsl-script-query.html[Script Query]\n\n[source,java]\n--------------------------------------------------\nQueryBuilder qb = scriptQuery(\n new Script(\"doc['num1'].value > 1\") <1>\n);\n--------------------------------------------------\n<1> inlined script\n\n\nIf you have stored on each data node a script named `myscript.painless` with:\n\n[source,painless]\n--------------------------------------------------\ndoc['num1'].value > params.param1\n--------------------------------------------------\n\nYou can use it then with:\n\n[source,java]\n--------------------------------------------------\nQueryBuilder qb = scriptQuery(\n new Script(\n \"myscript\", <1>\n ScriptType.FILE, <2>\n \"painless\", <3>\n Collections.singletonMap(\"param1\", 5)) <4>\n);\n--------------------------------------------------\n<1> Script name\n<2> Script type: either `ScriptType.FILE`, `ScriptType.INLINE` or `ScriptType.INDEXED`\n<3> Scripting engine\n<4> Parameters as a `Map` of ``\n","new_contents":"[[java-query-dsl-script-query]]\n==== Script Query\n\nSee {ref}\/query-dsl-script-query.html[Script Query]\n\n[source,java]\n--------------------------------------------------\nQueryBuilder qb = scriptQuery(\n new Script(\"doc['num1'].value > 1\") <1>\n);\n--------------------------------------------------\n<1> inlined script\n\n\nIf you have stored on each data node a script named `myscript.painless` with:\n\n[source,painless]\n--------------------------------------------------\ndoc['num1'].value > params.param1\n--------------------------------------------------\n\nYou can use it then with:\n\n[source,java]\n--------------------------------------------------\nQueryBuilder qb = scriptQuery(\n new Script(\n ScriptType.FILE, <1>\n \"painless\", <2>\n \"myscript\", <3>\n Collections.singletonMap(\"param1\", 5)) <4>\n);\n--------------------------------------------------\n<1> Script type: either `ScriptType.FILE`, `ScriptType.INLINE` or `ScriptType.INDEXED`\n<2> Scripting engine\n<3> Script name\n<4> Parameters as a `Map` of ``\n","subject":"Update script query doc for 5.1","message":"Update script query doc for 5.1\n\nFrom 5.1, we changed the order of Script class ctor.\n\nRelated to https:\/\/github.com\/elastic\/elasticsearch\/pull\/21321#issuecomment-266432519\n\nBackport of #22161 in 5.x branch\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc"} {"commit":"cba2424eccb8dd02f0a7ebe9d920a49fd7e75d20","old_file":"HACKING.asciidoc","new_file":"HACKING.asciidoc","old_contents":"HACKING\n=======\n\nHOMEPAGE\n--------\n\nThe master source code repository, bug tracking, etc for _pvpn_ is\nhttps:\/\/www.github.com\/halhen\/pvpn. Please report issues here, or to\nhenrik@k2h.se.\n\n\nCONTRIBUTING\n------------\n* To contribute, send a patch as a github pull request or using\n +git format-patch+ to henrik@k2h.se.\n* Keep your patches atomic and complete. Remember documentation.\n* Add yourself to _AUTHORS_.\n* Unless you have a good reason to, rebase your changes to the latest\n master before submitting.\n* Spend an extra minute to write a proper commit message\n** Describe the effect of the patch, rather than the contents.\n** Use imperative form (e.g. +Change foo+ rather than +Changed foo+)\n** Reference the issue (+#NNN+ or, if fixed, +fixes #NNN+) if\n applicable.\n** Max 50 characters in the title.\n** Max 72 characters wide lines.\n\nDon't be discouraged or annoyed if I ask you to change your patch before\nI accept it. The reason is probably that I have not been specific enough\nabout how I would like patches to be.\n\n\nCHECKLISTS\n----------\n\nCreate a new version\n~~~~~~~~~~~~~~~~~~~~\n\n* Update +VERSION+ in +Makefile+\n* Describe changes +NEWS.asciidoc+\n* Commit with version bump commit message\n* +git tag +\n","new_contents":"HACKING\n=======\n\nHOMEPAGE\n--------\n\nThe master source code repository, bug tracking, etc for _pvpn_ is\nhttps:\/\/www.github.com\/halhen\/pvpn. Please report issues here, or to\nhenrik@k2h.se.\n\n\nCONTRIBUTING\n------------\n* To contribute, send a patch as a github pull request or using\n +git format-patch+ to henrik@k2h.se.\n* Keep your patches atomic and complete. Remember documentation.\n* Add yourself to _AUTHORS_.\n* Unless you have a good reason to, rebase your changes to the latest\n master before submitting.\n* Spend an extra minute to write a proper commit message\n** Describe the effect of the patch, rather than the contents.\n** Use imperative form (e.g. +Change foo+ rather than +Changed foo+)\n** Reference the issue (+#NNN+ or, if fixed, +fixes #NNN+) if\n applicable.\n** Max 50 characters in the title.\n** Max 72 characters wide lines.\n\nDon't be discouraged or annoyed if I ask you to change your patch before\nI accept it. The reason is probably that I have not been specific enough\nabout how I would like patches to be.\n\n\nCHECKLISTS\n----------\n\nCreate a new version\n~~~~~~~~~~~~~~~~~~~~\n\n* Update +VERSION+ in +Makefile+\n* Describe changes +NEWS.asciidoc+\n* Commit with version bump commit message\n* +git tag +\n* +git push+\n* +git push --tags+\n* make and upload new PKGBUILD to AUR\n","subject":"Document more steps to do when bumbing version","message":"Document more steps to do when bumbing version\n","lang":"AsciiDoc","license":"bsd-3-clause","repos":"halhen\/pvpn,halhen\/pvpn"} {"commit":"4e7f0bf9b169a8cee2ddf8a87f38d7fe4c111529","old_file":"docs\/Development-i18n.adoc","new_file":"docs\/Development-i18n.adoc","old_contents":"\n\n== Internationalization (i18n)\n\n","new_contents":"\n= Internationalization (i18n)\n\n== Intro\n\nTranslation messages for Beavy core, as well as Beavy apps and modules, use the\n[ICU syntax](http:\/\/userguide.icu-project.org\/formatparse\/messages).\n\nThe translation messages themselves are managed with the\n[transifex](http:\/\/docs.transifex.com\/introduction\/)\nlocalization platform, using English as the default language. Please see\nBeavyHQ's transifex dashboard here:\n\n[www.transifex.com\/beavy\/beavy\/](https:\/\/www.transifex.com\/beavy\/beavy\/)\n\nIf you would like to help us translate Beavy, please let us know or click the\n\"Help Translate Beavy\" button on the link above.\n\n== Python Translations\n\nBackend translations in python are accomplished using the following functions\n(supported by [Flask-ICU](https:\/\/github.com\/beavyHQ\/flask-icu)):\n\n * `format()`\n * `format_date()`\n * `format_time()`\n * `format_datetime()`\n * `format_number()`\n * `format_decimal()`\n * `format_currency()`\n * `format_scientific()`\n * `format_percent()`\n\n== How to use it in Javascript\n\n== Working with translations files\n\n== Extracting & pushing to transifex\n\nTo extract messages \n\n== Updating from transifex\n\n== Shipping your own translations (for your app)\n\n","subject":"Add draft of i18n docs","message":"Add draft of i18n docs\n","lang":"AsciiDoc","license":"mpl-2.0","repos":"beavyHQ\/beavy,beavyHQ\/beavy,beavyHQ\/beavy,beavyHQ\/beavy"} {"commit":"b64ce82800eb50fcff700a59c705fa701b6353df","old_file":"docs\/guide\/developer\/index.adoc","new_file":"docs\/guide\/developer\/index.adoc","old_contents":"## Developer Info\n\n[discrete]\n### Source\n\nhttps:\/\/github.com\/wildfly-extras\/wildfly-camel\n\n[discrete]\n### Issues\n\nhttps:\/\/github.com\/wildfly-extras\/wildfly-camel\/issues\n\n[discrete]\n### Jenkins\n\nhttps:\/\/ci.fabric8.io\/job\/wildfly-camel\n\n[discrete]\n### Downloads\n\nhttps:\/\/github.com\/wildfly-extras\/wildfly-camel\/releases\n\n[discrete]\n### Forums, Lists, IRC\n\n#wildfly-camel channel on irc.freenode.net\n","new_contents":"## Developer Info\n\n[discrete]\n### Source\n\nhttps:\/\/github.com\/wildfly-extras\/wildfly-camel\n\n[discrete]\n### Issues\n\nhttps:\/\/github.com\/wildfly-extras\/wildfly-camel\/issues\n\n[discrete]\n### CI Build\n\nhttps:\/\/github.com\/wildfly-extras\/wildfly-camel\/actions\n\n[discrete]\n### Downloads\n\nhttps:\/\/github.com\/wildfly-extras\/wildfly-camel\/releases\n\n[discrete]\n### Forums, Lists, IRC\n\n#wildfly-camel channel on irc.freenode.net\n","subject":"Update link to CI build","message":"Update link to CI build\n","lang":"AsciiDoc","license":"apache-2.0","repos":"wildfly-extras\/wildfly-camel,wildfly-extras\/wildfly-camel,wildfly-extras\/wildfly-camel,wildfly-extras\/wildfly-camel"} {"commit":"704a84d00cf8390f7ad603e988614a8426229953","old_file":"mock-mission.adoc","new_file":"mock-mission.adoc","old_contents":"= How to Run a Mock Mission\n\n1. Start MavProxy at the location of the first sample waypoint.\n\n $ cd \/APMrover2\n $ sim_vehicle.py -l 37.659984,-121.8874624,0,45\n\n2. Start the simulation. Zoom and center the waypoints, if you like.\nMouse wheel or 2-finger scroll zooms, control-shift-drag moves the\nmap around.\n\n $ roslaunch robo_magellan mock_mission.launch\n\n3. In MavProxy, load the waypoint sample.\n\n rosrun mavros mavwp load data\/sample.qgc-wpl.txt\n\n4. Start the mission by arming the throttle and going into AUTO mode.\n\n $ rosservice call \/mavros\/cmd\/arming \"value: true\"\n success: True\n result: 0\n $ rosservice call \/mavros\/set_mode \"{custom_mode: 'AUTO'}\"\n mode_sent: True\n\nIn rviz, you should see the rover follow the waypoints. When a cone is visible,\nthe heading to the cone is shown with a red arrow.\n\nYou can move the robot back to the starting point (approximately) using the command:\n\n $ rosservice call \/mavros\/set_mode \"{custom_mode: 'RTL'}\"\n \nThen you can restart the mock mission by setting the mode to AUTO again, in step 4.\n","new_contents":"= How to Run a Mock Mission\n\n1. Start MavProxy at the location of the first sample waypoint.\n\n $ cd \/APMrover2\n $ sim_vehicle.py -l 37.659984,-121.8874624,0,45\n\n2. Start the simulation. Zoom and center the waypoints, if you like.\nMouse wheel or 2-finger scroll zooms, control-shift-drag moves the\nmap around.\n\n $ roslaunch robo_magellan mock_mission.launch\n\n3. In MavProxy, load the waypoint sample. You should then see the robot and the waypoints\nin rviz. If you don't, try it again after a few seconds. (MavProxy can still be waiting\nfor SITL to start up.)\n\n rosrun mavros mavwp load data\/sample.qgc-wpl.txt\n\n4. Start the mission by arming the throttle and going into AUTO mode.\n\n $ rosservice call \/mavros\/cmd\/arming \"value: true\"\n success: True\n result: 0\n $ rosservice call \/mavros\/set_mode \"{custom_mode: 'AUTO'}\"\n mode_sent: True\n\nIn rviz, you should see the rover follow the waypoints. When a cone is visible,\nthe heading to the cone is shown with a red arrow.\n\nYou can move the robot back to the starting point (approximately) using the command:\n\n $ rosservice call \/mavros\/set_mode \"{custom_mode: 'RTL'}\"\n \nThen you can restart the mock mission by setting the mode to AUTO again, in step 4.\n","subject":"Add information about failure to load waypoints","message":"Add information about failure to load waypoints","lang":"AsciiDoc","license":"apache-2.0","repos":"ProgrammingRobotsStudyGroup\/robo_magellan,ProgrammingRobotsStudyGroup\/robo_magellan,ProgrammingRobotsStudyGroup\/robo_magellan,ProgrammingRobotsStudyGroup\/robo_magellan"} {"commit":"57e55bfd2c7fb7ca970a664176341673c81595e7","old_file":"docs\/reference\/analysis\/tokenfilters\/truncate-tokenfilter.asciidoc","new_file":"docs\/reference\/analysis\/tokenfilters\/truncate-tokenfilter.asciidoc","old_contents":"[[analysis-truncate-tokenfilter]]\n=== Truncate Token Filter\n\nThe `truncate` token filter can be used to truncate tokens into a\nspecific length. This can come in handy with keyword (single token)\nbased mapped fields that are used for sorting in order to reduce memory\nusage.\n\nIt accepts a `length` parameter which control the number of characters\nto truncate to, defaults to `10`.\n","new_contents":"[[analysis-truncate-tokenfilter]]\n=== Truncate Token Filter\n\nThe `truncate` token filter can be used to truncate tokens into a\nspecific length.\n\nIt accepts a `length` parameter which control the number of characters\nto truncate to, defaults to `10`.\n","subject":"Update truncate token filter to not mention the keyword tokenizer","message":"Update truncate token filter to not mention the keyword tokenizer\n\nThe advice predates the existence of the keyword field\n\nCloses #22650\n","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc,strapdata\/elassandra5-rc"} {"commit":"76bc85b61fa26e235aeb5190cc5ed84de4a07247","old_file":"opennms-doc\/guide-admin\/src\/asciidoc\/text\/operation\/daemon-config-files\/notifd.adoc","new_file":"opennms-doc\/guide-admin\/src\/asciidoc\/text\/operation\/daemon-config-files\/notifd.adoc","old_contents":"\n\/\/ Allow GitHub image rendering\n:imagesdir: ..\/..\/..\/images\n\n[[ga-opennms-operation-daemon-config-files-pollerd]]\n==== Notifd\n\n[options=\"header, autowidth\"]\n|===\n| Internal Daemon Name | Reload Event\n| _Notifd_ | `uei.opennms.org\/internal\/reloadDaemonConfig -p 'daemonName Notifd'`\n|===\n\n.Notifd configuration file overview\n[options=\"header, autowidth\"]\n|===\n| File | Restart Required | Reload Event | Description\n| `notifd-configuration.xml` | no | yes | Describes auto-acknowledge prefix, e.g. prefix \"RESOLVED: \" for nodeUp\/nodeDown events.\n| `notificationCommands.xml` | no | no | Configuration for notification media, e.g. scripts, XMPP or HTTP Post, immediately applied.\n| `notifications.xml` | no | no | Event notification definitions and changes are immediately applied.\n| `destinationPaths.xml` | no | no | Contains paths for notification targets, e.g. JavaMail, XMPP or external scripts.\n| `users.xml` | no | no | Contain pager and address information for notification destination paths.\n| `groups.xml` | no | no | Groups can be used as target for notifications.\n| `javamail-configuration.properties` | no | no | Configuration to send notification mails via specific mail servers.\n|===\n","new_contents":"\n\/\/ Allow GitHub image rendering\n:imagesdir: ..\/..\/..\/images\n\n[[ga-opennms-operation-daemon-config-files-notifd]]\n==== Notifd\n\n[options=\"header, autowidth\"]\n|===\n| Internal Daemon Name | Reload Event\n| _Notifd_ | `uei.opennms.org\/internal\/reloadDaemonConfig -p 'daemonName Notifd'`\n|===\n\n.Notifd configuration file overview\n[options=\"header, autowidth\"]\n|===\n| File | Restart Required | Reload Event | Description\n| `notifd-configuration.xml` | no | yes | Describes auto-acknowledge prefix, e.g. prefix \"RESOLVED: \" for nodeUp\/nodeDown events.\n| `notificationCommands.xml` | no | no | Configuration for notification media, e.g. scripts, XMPP or HTTP Post, immediately applied.\n| `notifications.xml` | no | no | Event notification definitions and changes are immediately applied.\n| `destinationPaths.xml` | no | no | Contains paths for notification targets, e.g. JavaMail, XMPP or external scripts.\n| `users.xml` | no | no | Contain pager and address information for notification destination paths.\n| `groups.xml` | no | no | Groups can be used as target for notifications.\n| `javamail-configuration.properties` | no | no | Configuration to send notification mails via specific mail servers.\n|===\n","subject":"Fix copy & paste error","message":"Fix copy & paste error","lang":"AsciiDoc","license":"agpl-3.0","repos":"aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms,aihua\/opennms"} {"commit":"1fde128c40b115a95d006e919e091f9c2f11c842","old_file":"docs\/reference\/snapshot-restore\/apis\/snapshot-restore-apis.asciidoc","new_file":"docs\/reference\/snapshot-restore\/apis\/snapshot-restore-apis.asciidoc","old_contents":"[[snapshot-restore-apis]]\n== Snapshot and restore APIs\n\nYou can use the following APIs to set up snapshot repositories, manage snapshot\nbackups, and restore snapshots to a running cluster.\n\nFor more information, see <>.\n\n[NOTE]\n====\nWe are working on including more snapshot and restore APIs in this section. Some\ncontent may not be included yet.\n====\n\n[discrete]\n[[snapshot-restore-repo-apis]]\n=== Snapshot repository management APIs\n\n* <>\n* <>\n* <>\n\n\ninclude::clean-up-repo-api.asciidoc[]\ninclude::delete-repo-api.asciidoc[]\ninclude::get-repo-api.asciidoc[]\ninclude::put-repo-api.asciidoc[]","new_contents":"[[snapshot-restore-apis]]\n== Snapshot and restore APIs\n\nYou can use the following APIs to set up snapshot repositories, manage snapshot\nbackups, and restore snapshots to a running cluster.\n\nFor more information, see <>.\n\n[NOTE]\n====\nWe are working on including more snapshot and restore APIs in this section. Some\ncontent may not be included yet.\n====\n\n[discrete]\n[[snapshot-restore-repo-apis]]\n=== Snapshot repository management APIs\n\n* <>\n* <>\n* <>\n* <>\n\n\ninclude::clean-up-repo-api.asciidoc[]\ninclude::delete-repo-api.asciidoc[]\ninclude::get-repo-api.asciidoc[]\ninclude::put-repo-api.asciidoc[]","subject":"Fix snapshot repo API jump list","message":"[DOCS] Fix snapshot repo API jump list\n","lang":"AsciiDoc","license":"apache-2.0","repos":"gingerwizard\/elasticsearch,robin13\/elasticsearch,GlenRSmith\/elasticsearch,nknize\/elasticsearch,gingerwizard\/elasticsearch,robin13\/elasticsearch,uschindler\/elasticsearch,gingerwizard\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,uschindler\/elasticsearch,uschindler\/elasticsearch,GlenRSmith\/elasticsearch,GlenRSmith\/elasticsearch,scorpionvicky\/elasticsearch,gingerwizard\/elasticsearch,robin13\/elasticsearch,gingerwizard\/elasticsearch,nknize\/elasticsearch,uschindler\/elasticsearch,scorpionvicky\/elasticsearch,uschindler\/elasticsearch,robin13\/elasticsearch,nknize\/elasticsearch,nknize\/elasticsearch,GlenRSmith\/elasticsearch,robin13\/elasticsearch,gingerwizard\/elasticsearch,scorpionvicky\/elasticsearch,scorpionvicky\/elasticsearch,GlenRSmith\/elasticsearch,nknize\/elasticsearch"} {"commit":"15cf55c4c6814c5ba9c0ad4d5faa433ec1035e9a","old_file":"docs\/reference\/index.asciidoc","new_file":"docs\/reference\/index.asciidoc","old_contents":"[[elasticsearch-reference]]\n= Reference\n\n:version: 1.5.2\n:branch: 1.5\n:jdk: 1.8.0_25\n:defguide: https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/guide\/current\n\ninclude::getting-started.asciidoc[]\n\ninclude::setup.asciidoc[]\n\ninclude::migration\/index.asciidoc[]\n\ninclude::api-conventions.asciidoc[]\n\ninclude::docs.asciidoc[]\n\ninclude::search.asciidoc[]\n\ninclude::indices.asciidoc[]\n\ninclude::cat.asciidoc[]\n\ninclude::cluster.asciidoc[]\n\ninclude::query-dsl.asciidoc[]\n\ninclude::mapping.asciidoc[]\n\ninclude::analysis.asciidoc[]\n\ninclude::modules.asciidoc[]\n\ninclude::index-modules.asciidoc[]\n\ninclude::testing.asciidoc[]\n\ninclude::glossary.asciidoc[]\n\n\n\n","new_contents":"[[elasticsearch-reference]]\n= Elasticsearch Reference\n\n:version: 1.5.2\n:branch: 1.5\n:jdk: 1.8.0_25\n:defguide: https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/guide\/current\n\ninclude::getting-started.asciidoc[]\n\ninclude::setup.asciidoc[]\n\ninclude::migration\/index.asciidoc[]\n\ninclude::api-conventions.asciidoc[]\n\ninclude::docs.asciidoc[]\n\ninclude::search.asciidoc[]\n\ninclude::indices.asciidoc[]\n\ninclude::cat.asciidoc[]\n\ninclude::cluster.asciidoc[]\n\ninclude::query-dsl.asciidoc[]\n\ninclude::mapping.asciidoc[]\n\ninclude::analysis.asciidoc[]\n\ninclude::modules.asciidoc[]\n\ninclude::index-modules.asciidoc[]\n\ninclude::testing.asciidoc[]\n\ninclude::glossary.asciidoc[]\n\n\n\n","subject":"Rename reference docs to Elasticsearch Reference","message":"Docs: Rename reference docs to Elasticsearch Reference\n","lang":"AsciiDoc","license":"apache-2.0","repos":"fubuki\/elasticsearch,fubuki\/elasticsearch,fubuki\/elasticsearch,fubuki\/elasticsearch,fubuki\/elasticsearch,fubuki\/elasticsearch"} {"commit":"a27e28b7a4e0059c69d811e01583790abd60252a","old_file":"docs\/include.adoc","new_file":"docs\/include.adoc","old_contents":":author: Peter Niederwieser, The Spock Framework Team\n:revnumber: X-replaced-by-gradle\n:sourcedir: ..\/spock-specs\/src\/test\/groovy\/org\/spockframework\/docs\n:sourcedir-spring: ..\/spock-spring\/src\/test\/groovy\/org\/spockframework\/spring\/docs\n:resourcedir-spring: ..\/spock-spring\/src\/test\/resources\/org\/spockframework\/spring\/docs\n:sourcedir-spring-boot: ..\/spock-spring\/boot-test\/src\/test\/groovy\/org\/spockframework\/boot\n","new_contents":":author: Peter Niederwieser, The Spock Framework Team\n:revnumber: X-replaced-by-gradle\n:sourcedir: ..\/spock-specs\/src\/test\/groovy\/org\/spockframework\/docs\n:sourcedir-spring: ..\/spock-spring\/src\/test\/groovy\/org\/spockframework\/spring\/docs\n:resourcedir-spring: ..\/spock-spring\/src\/test\/resources\/org\/spockframework\/spring\/docs\n:sourcedir-spring-boot: ..\/spock-spring\/boot-test\/src\/test\/groovy\/org\/spockframework\/boot\n:sectlinks: true\n","subject":"Use `sectlinks` in docs to make linking to sections easier","message":"Use `sectlinks` in docs to make linking to sections easier\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spockframework\/spock,leonard84\/spock"} {"commit":"176e6b60003f14179dfecd8ff96fe5294676807a","old_file":"docs\/modules\/ROOT\/pages\/index.adoc","new_file":"docs\/modules\/ROOT\/pages\/index.adoc","old_contents":"= Overview\n\nSpring Security is a framework that provides authentication, authorization, and protection against common attacks.\nWith first class support for both imperative and reactive applications, it is the de-facto standard for securing Spring-based applications.\n\n","new_contents":"= Spring Security\n\nSpring Security is a framework that provides xref:features\/authentication\/index.adoc[authentication], xref:features\/authorization\/index.adoc[authorization], and xref:features\/exploits\/index.adoc[protection against common attacks].\nWith first class support for securing both xref:servlet\/index.adoc[imperative] and xref:reactive\/index.adoc[reactive] applications, it is the de-facto standard for securing Spring-based applications.\n\nFor a complete list of features, see the xref:features\/index.adoc[Features] section of the reference.\n\n== Getting Started\n\nIf you are ready to start securing an application see the Getting Started sections for xref:servlet\/getting-started.adoc[servlet] and xref:reactive\/getting-started.adoc[reactive]. These sections will walk you through creating your first Spring Security applications.\n\nIf you want to understand how Spring Security works, you can refer to the xref:servlet\/architecture.adoc[Architecture] section.\n\/\/ FIXME add link to reactive architecture\n\nIf you have any questions, there is a wonderful xref:community.adoc[community] that would love to help you!\n","subject":"Add additional info to overview","message":"Add additional info to overview\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,rwinch\/spring-security,rwinch\/spring-security,rwinch\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,rwinch\/spring-security,spring-projects\/spring-security,rwinch\/spring-security,rwinch\/spring-security"} {"commit":"c0cc9719d2d3deee9e114b96cf9797e4eb191d8a","old_file":"learn\/rhpds\/index.adoc","new_file":"learn\/rhpds\/index.adoc","old_contents":"= RHPDS instructions for OptaPlanner demos\n:awestruct-description: How to demo OptaPlanner with RHPDS\n:awestruct-layout: normalBase\n:awestruct-priority: 0.1\n:showtitle:\n\n== Visit RHPDS\n\nhttps:\/\/rhpds.redhat.com\/[Visit RHPDS]\n\n== Available demos on RHPDS\n\n* link:optaweb-vehicle-routing.adoc[OptaWeb Vehicle Routing]\n* link:optaweb-employee-rostering.adoc[OptaWeb Employee Rostering]\n","new_contents":"= RHPDS instructions for OptaPlanner demos\n:awestruct-description: How to demo OptaPlanner with RHPDS\n:awestruct-layout: normalBase\n:awestruct-priority: 0.1\n:showtitle:\n\n== Visit RHPDS\n\nhttps:\/\/rhpds.redhat.com\/[Visit RHPDS]\n\n== Available demos on RHPDS\n\n* link:optaweb-vehicle-routing.html[OptaWeb Vehicle Routing]\n* link:optaweb-employee-rostering.html[OptaWeb Employee Rostering]\n","subject":"Fix links to RHPDS demo guides","message":"Fix links to RHPDS demo guides\n","lang":"AsciiDoc","license":"apache-2.0","repos":"droolsjbpm\/optaplanner-website,droolsjbpm\/optaplanner-website,droolsjbpm\/optaplanner-website"} {"commit":"5fb10412dd97335bdd33424d81f758281e1fbd4a","old_file":"modules\/installation-osp-enabling-swift.adoc","new_file":"modules\/installation-osp-enabling-swift.adoc","old_contents":"\/\/Module included in the following assemblies:\n\/\/\n\/\/ * installing\/installing_openstack\/installing-openstack-installer.adoc\n\/\/ * installing\/installing_openstack\/installing-openstack-installer-custom.adoc\n\/\/ * installing\/installing_openstack\/installing-openstack-installer-kuryr.adoc\n\n[id=\"installation-osp-enabling-swift_{context}\"]\n= Enabling Swift on OpenStack\n\n{product-title} on {rh-openstack-first} uses https:\/\/docs.openstack.org\/security-guide\/object-storage.html[OpenStack Object Storage (Swift)] to store and serve user configuration files.\n\nSwift is operated by a user account with the `swiftoperator` role and `temp-url` support.\n\n.Prerequisites\n\n* A {rh-openstack} administrator account on the target environment\n* On Ceph RGW, https:\/\/docs.ceph.com\/docs\/master\/radosgw\/config-ref\/#swift-settings[the `account in url` option must be enabled]\n\n.Procedure\n\nTo enable Swift on {rh-openstack}:\n\n. As an administrator in the {rh-openstack} CLI, add the `swiftoperator` role to the account that will access Swift:\n+\n----\n$ openstack role add --user --project swiftoperator\n----\n. As the account with the `swiftoperator` role, set a temporary URL property for the account:\n+\n----\n$ openstack object store account set --property Temp-URL-Key=superkey\n----\n\nYour {rh-openstack} deployment can now use Swift to store and serve files.\n","new_contents":"\/\/Module included in the following assemblies:\n\/\/\n\/\/ * installing\/installing_openstack\/installing-openstack-installer.adoc\n\/\/ * installing\/installing_openstack\/installing-openstack-installer-custom.adoc\n\/\/ * installing\/installing_openstack\/installing-openstack-installer-kuryr.adoc\n\n[id=\"installation-osp-enabling-swift_{context}\"]\n= Enabling Swift on OpenStack\n\n{product-title} on {rh-openstack-first} uses https:\/\/docs.openstack.org\/security-guide\/object-storage.html[OpenStack Object Storage (Swift)] to store and serve user configuration files.\n\nSwift is operated by a user account with the `swiftoperator` role.\n\n.Prerequisites\n\n* A {rh-openstack} administrator account on the target environment\n* On Ceph RGW, https:\/\/docs.ceph.com\/docs\/master\/radosgw\/config-ref\/#swift-settings[the `account in url` option must be enabled]\n\n.Procedure\n\nTo enable Swift on {rh-openstack}:\n\n. As an administrator in the {rh-openstack} CLI, add the `swiftoperator` role to the account that will access Swift:\n+\n----\n$ openstack role add --user --project swiftoperator\n----\n\nYour {rh-openstack} deployment can now use Swift to store and serve files.\n","subject":"Remove Temp-URL step from Swift procedure - BZ 1805176","message":"Remove Temp-URL step from Swift procedure - BZ 1805176\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"33eca477df6f1e887c559b0bd6b399460b6e62bf","old_file":"modules\/identity-provider-registering-github.adoc","new_file":"modules\/identity-provider-registering-github.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * authentication\/identity_providers\/configuring-github-identity-provider.adoc\n\n[id=\"identity-provider-registering-github_{context}\"]\n= Registering a GitHub application\n\nTo use GitHub or GitHub Enterprise as an identity provider, you must register\nan application to use.\n\n.Procedure\n\n. Register an application on GitHub:\n** For GitHub, click https:\/\/github.com\/settings\/profile[Settings] ->\nhttps:\/\/github.com\/settings\/developers[Developer settings] ->\nhttps:\/\/github.com\/settings\/applications\/new[Register a new OAuth application].\n** For GitHub Enterprise, go to your GitHub Enterprise home page and then click\n*Settings -> Developer settings -> Register a new application*.\n. Enter an application name, for example `My OpenShift Install`.\n. Enter a homepage URL, such as\n`\\https:\/\/oauth-openshift.apps..`.\n. Optional: Enter an application description.\n. Enter the authorization callback URL, where the end of the URL contains the\nidentity provider `name`:\n+\n----\nhttps:\/\/oauth-openshift.apps..\/oauth2callback\/\n----\n+\nFor example:\n+\n----\nhttps:\/\/oauth-openshift.apps.example-openshift-cluster.com\/oauth2callback\/github\/\n----\n. Click *Register application*. GitHub provides a Client ID and a Client Secret.\nYou need these values to complete the identity provider configuration.\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * authentication\/identity_providers\/configuring-github-identity-provider.adoc\n\n[id=\"identity-provider-registering-github_{context}\"]\n= Registering a GitHub application\n\nTo use GitHub or GitHub Enterprise as an identity provider, you must register\nan application to use.\n\n.Procedure\n\n. Register an application on GitHub:\n** For GitHub, click https:\/\/github.com\/settings\/profile[Settings] ->\nhttps:\/\/github.com\/settings\/apps[Developer settings] ->\nhttps:\/\/github.com\/settings\/developers[OAuth Apps] ->\nhttps:\/\/github.com\/settings\/applications\/new[Register a new OAuth application].\n** For GitHub Enterprise, go to your GitHub Enterprise home page and then click\n*Settings -> Developer settings -> Register a new application*.\n. Enter an application name, for example `My OpenShift Install`.\n. Enter a homepage URL, such as\n`\\https:\/\/oauth-openshift.apps..`.\n. Optional: Enter an application description.\n. Enter the authorization callback URL, where the end of the URL contains the\nidentity provider `name`:\n+\n----\nhttps:\/\/oauth-openshift.apps..\/oauth2callback\/\n----\n+\nFor example:\n+\n----\nhttps:\/\/oauth-openshift.apps.example-openshift-cluster.com\/oauth2callback\/github\/\n----\n. Click *Register application*. GitHub provides a Client ID and a Client Secret.\nYou need these values to complete the identity provider configuration.\n","subject":"Add oauth apps section to path, in case users are reading the text and not clicking the links. Choosing the Developer settings optiion on GitHub brings users to the GitHub Apps section (settings\/apps) and not the OAuth Apps section (\/settings\/developers)","message":"Add oauth apps section to path, in case users are reading the text and not clicking the links.\nChoosing the Developer settings optiion on GitHub brings users to the GitHub Apps\nsection (settings\/apps) and not the OAuth Apps section (\/settings\/developers)\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"d9a24961c55b80d64a10f12ea1ad97d04d9d9e16","old_file":"docs\/reference\/analysis\/tokenfilters\/delimited-payload-tokenfilter.asciidoc","new_file":"docs\/reference\/analysis\/tokenfilters\/delimited-payload-tokenfilter.asciidoc","old_contents":"[[analysis-delimited-payload-tokenfilter]]\n=== Delimited Payload Token Filter\n\nNamed `delimited_payload_filter`. Splits tokens into tokens and payload whenever a delimiter character is found.\n\nExample: \"the|1 quick|2 fox|3\" is split per default int to tokens `fox`, `quick` and `the` with payloads `1`, `2` and `3` respectively.\n\n\n\nParameters:\n\n`delimiter`:: \n Character used for splitting the tokens. Default is `|`. \n\n`encoding`:: \n The type of the payload. `int` for integer, `float` for float and `identity` for characters. Default is `float`.","new_contents":"[[analysis-delimited-payload-tokenfilter]]\n=== Delimited Payload Token Filter\n\nNamed `delimited_payload_filter`. Splits tokens into tokens and payload whenever a delimiter character is found.\n\nExample: \"the|1 quick|2 fox|3\" is split by default into tokens `the`, `quick`, and `fox` with payloads `1`, `2`, and `3` respectively.\n\nParameters:\n\n`delimiter`:: \n Character used for splitting the tokens. Default is `|`. \n\n`encoding`:: \n The type of the payload. `int` for integer, `float` for float and `identity` for characters. Default is `float`.","subject":"Fix minor issues in delimited payload token filter docs","message":"Fix minor issues in delimited payload token filter docs\n\nThis commit addresses a few minor issues in the delimited payload token\nfilter docs:\n - the provided example reversed the payloads associated with the\n tokens \"the\" and \"fox\"\n - two additional typos in the same sentence\n - \"per default\" -> \"by default\"\n - \"default int to\" -> \"default into\"\n - adds two serial commas\n","lang":"AsciiDoc","license":"apache-2.0","repos":"ThiagoGarciaAlves\/elasticsearch,davidvgalbraith\/elasticsearch,camilojd\/elasticsearch,winstonewert\/elasticsearch,mohit\/elasticsearch,clintongormley\/elasticsearch,jimczi\/elasticsearch,nezirus\/elasticsearch,polyfractal\/elasticsearch,JervyShi\/elasticsearch,spiegela\/elasticsearch,markwalkom\/elasticsearch,henakamaMSFT\/elasticsearch,martinstuga\/elasticsearch,gfyoung\/elasticsearch,sreeramjayan\/elasticsearch,kalimatas\/elasticsearch,naveenhooda2000\/elasticsearch,elasticdog\/elasticsearch,markharwood\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,HonzaKral\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,umeshdangat\/elasticsearch,HonzaKral\/elasticsearch,JervyShi\/elasticsearch,fernandozhu\/elasticsearch,vroyer\/elassandra,nazarewk\/elasticsearch,nomoa\/elasticsearch,nazarewk\/elasticsearch,episerver\/elasticsearch,ricardocerq\/elasticsearch,cwurm\/elasticsearch,LewayneNaidoo\/elasticsearch,camilojd\/elasticsearch,camilojd\/elasticsearch,naveenhooda2000\/elasticsearch,scottsom\/elasticsearch,nknize\/elasticsearch,kalimatas\/elasticsearch,fred84\/elasticsearch,rajanm\/elasticsearch,vroyer\/elassandra,dpursehouse\/elasticsearch,a2lin\/elasticsearch,jchampion\/elasticsearch,rajanm\/elasticsearch,geidies\/elasticsearch,ricardocerq\/elasticsearch,awislowski\/elasticsearch,s1monw\/elasticsearch,artnowo\/elasticsearch,dongjoon-hyun\/elasticsearch,uschindler\/elasticsearch,xuzha\/elasticsearch,jpountz\/elasticsearch,jbertouch\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mapr\/elasticsearch,GlenRSmith\/elasticsearch,yanjunh\/elasticsearch,girirajsharma\/elasticsearch,sreeramjayan\/elasticsearch,uschindler\/elasticsearch,glefloch\/elasticsearch,ivansun1010\/elasticsearch,C-Bish\/elasticsearch,naveenhooda2000\/elasticsearch,StefanGor\/elasticsearch,fred84\/elasticsearch,coding0011\/elasticsearch,LeoYao\/elasticsearch,ZTE-PaaS\/elasticsearch,strapdata\/elassandra5-rc,maddin2016\/elasticsearch,lks21c\/elasticsearch,myelin\/elasticsearch,mortonsykes\/elasticsearch,awislowski\/elasticsearch,mjason3\/elasticsearch,gfyoung\/elasticsearch,markwalkom\/elasticsearch,JackyMai\/elasticsearch,gmarz\/elasticsearch,jprante\/elasticsearch,jbertouch\/elasticsearch,qwerty4030\/elasticsearch,wangtuo\/elasticsearch,nilabhsagar\/elasticsearch,diendt\/elasticsearch,strapdata\/elassandra,gmarz\/elasticsearch,mapr\/elasticsearch,wangtuo\/elasticsearch,fforbeck\/elasticsearch,HonzaKral\/elasticsearch,vroyer\/elassandra,Helen-Zhao\/elasticsearch,sreeramjayan\/elasticsearch,zkidkid\/elasticsearch,mmaracic\/elasticsearch,s1monw\/elasticsearch,winstonewert\/elasticsearch,dongjoon-hyun\/elasticsearch,polyfractal\/elasticsearch,liweinan0423\/elasticsearch,i-am-Nathan\/elasticsearch,qwerty4030\/elasticsearch,martinstuga\/elasticsearch,avikurapati\/elasticsearch,elasticdog\/elasticsearch,i-am-Nathan\/elasticsearch,pozhidaevak\/elasticsearch,gmarz\/elasticsearch,wuranbo\/elasticsearch,yanjunh\/elasticsearch,lks21c\/elasticsearch,ESamir\/elasticsearch,cwurm\/elasticsearch,myelin\/elasticsearch,vroyer\/elasticassandra,kalimatas\/elasticsearch,trangvh\/elasticsearch,martinstuga\/elasticsearch,liweinan0423\/elasticsearch,gingerwizard\/elasticsearch,obourgain\/elasticsearch,mjason3\/elasticsearch,avikurapati\/elasticsearch,episerver\/elasticsearch,ESamir\/elasticsearch,sreeramjayan\/elasticsearch,nilabhsagar\/elasticsearch,Stacey-Gammon\/elasticsearch,JervyShi\/elasticsearch,nilabhsagar\/elasticsearch,yanjunh\/elasticsearch,JSCooke\/elasticsearch,nezirus\/elasticsearch,diendt\/elasticsearch,IanvsPoplicola\/elasticsearch,umeshdangat\/elasticsearch,liweinan0423\/elasticsearch,robin13\/elasticsearch,coding0011\/elasticsearch,fforbeck\/elasticsearch,LeoYao\/elasticsearch,nazarewk\/elasticsearch,zkidkid\/elasticsearch,geidies\/elasticsearch,wuranbo\/elasticsearch,markharwood\/elasticsearch,Shepard1212\/elasticsearch,mapr\/elasticsearch,markwalkom\/elasticsearch,brandonkearby\/elasticsearch,mapr\/elasticsearch,C-Bish\/elasticsearch,nezirus\/elasticsearch,bawse\/elasticsearch,JervyShi\/elasticsearch,xuzha\/elasticsearch,ricardocerq\/elasticsearch,lks21c\/elasticsearch,diendt\/elasticsearch,strapdata\/elassandra5-rc,i-am-Nathan\/elasticsearch,LewayneNaidoo\/elasticsearch,myelin\/elasticsearch,jchampion\/elasticsearch,mjason3\/elasticsearch,masaruh\/elasticsearch,IanvsPoplicola\/elasticsearch,GlenRSmith\/elasticsearch,i-am-Nathan\/elasticsearch,jbertouch\/elasticsearch,jchampion\/elasticsearch,mohit\/elasticsearch,LewayneNaidoo\/elasticsearch,shreejay\/elasticsearch,martinstuga\/elasticsearch,IanvsPoplicola\/elasticsearch,ivansun1010\/elasticsearch,jpountz\/elasticsearch,yynil\/elasticsearch,Stacey-Gammon\/elasticsearch,avikurapati\/elasticsearch,markharwood\/elasticsearch,strapdata\/elassandra5-rc,scottsom\/elasticsearch,wangtuo\/elasticsearch,coding0011\/elasticsearch,nknize\/elasticsearch,palecur\/elasticsearch,winstonewert\/elasticsearch,naveenhooda2000\/elasticsearch,dpursehouse\/elasticsearch,camilojd\/elasticsearch,xuzha\/elasticsearch,cwurm\/elasticsearch,gingerwizard\/elasticsearch,mohit\/elasticsearch,nezirus\/elasticsearch,ESamir\/elasticsearch,bawse\/elasticsearch,scottsom\/elasticsearch,fernandozhu\/elasticsearch,wuranbo\/elasticsearch,maddin2016\/elasticsearch,JSCooke\/elasticsearch,wenpos\/elasticsearch,Helen-Zhao\/elasticsearch,wenpos\/elasticsearch,sneivandt\/elasticsearch,masaruh\/elasticsearch,umeshdangat\/elasticsearch,fforbeck\/elasticsearch,MaineC\/elasticsearch,JSCooke\/elasticsearch,awislowski\/elasticsearch,mikemccand\/elasticsearch,clintongormley\/elasticsearch,spiegela\/elasticsearch,C-Bish\/elasticsearch,GlenRSmith\/elasticsearch,polyfractal\/elasticsearch,henakamaMSFT\/elasticsearch,tebriel\/elasticsearch,strapdata\/elassandra,IanvsPoplicola\/elasticsearch,spiegela\/elasticsearch,nomoa\/elasticsearch,rajanm\/elasticsearch,nomoa\/elasticsearch,tebriel\/elasticsearch,Helen-Zhao\/elasticsearch,sneivandt\/elasticsearch,nazarewk\/elasticsearch,gfyoung\/elasticsearch,camilojd\/elasticsearch,winstonewert\/elasticsearch,jpountz\/elasticsearch,nknize\/elasticsearch,JackyMai\/elasticsearch,palecur\/elasticsearch,artnowo\/elasticsearch,dongjoon-hyun\/elasticsearch,rlugojr\/elasticsearch,nknize\/elasticsearch,robin13\/elasticsearch,clintongormley\/elasticsearch,gingerwizard\/elasticsearch,MaineC\/elasticsearch,LeoYao\/elasticsearch,JSCooke\/elasticsearch,alexshadow007\/elasticsearch,ZTE-PaaS\/elasticsearch,mjason3\/elasticsearch,bawse\/elasticsearch,mmaracic\/elasticsearch,MisterAndersen\/elasticsearch,girirajsharma\/elasticsearch,obourgain\/elasticsearch,fforbeck\/elasticsearch,davidvgalbraith\/elasticsearch,ZTE-PaaS\/elasticsearch,davidvgalbraith\/elasticsearch,trangvh\/elasticsearch,a2lin\/elasticsearch,alexshadow007\/elasticsearch,gmarz\/elasticsearch,ESamir\/elasticsearch,xuzha\/elasticsearch,maddin2016\/elasticsearch,jimczi\/elasticsearch,masaruh\/elasticsearch,gmarz\/elasticsearch,dpursehouse\/elasticsearch,zkidkid\/elasticsearch,StefanGor\/elasticsearch,awislowski\/elasticsearch,ivansun1010\/elasticsearch,mikemccand\/elasticsearch,wangtuo\/elasticsearch,sneivandt\/elasticsearch,mmaracic\/elasticsearch,sneivandt\/elasticsearch,LeoYao\/elasticsearch,palecur\/elasticsearch,zkidkid\/elasticsearch,brandonkearby\/elasticsearch,davidvgalbraith\/elasticsearch,tebriel\/elasticsearch,tebriel\/elasticsearch,nknize\/elasticsearch,mohit\/elasticsearch,geidies\/elasticsearch,rajanm\/elasticsearch,ESamir\/elasticsearch,alexshadow007\/elasticsearch,maddin2016\/elasticsearch,strapdata\/elassandra,mjason3\/elasticsearch,trangvh\/elasticsearch,jprante\/elasticsearch,pozhidaevak\/elasticsearch,markharwood\/elasticsearch,C-Bish\/elasticsearch,rajanm\/elasticsearch,bawse\/elasticsearch,davidvgalbraith\/elasticsearch,StefanGor\/elasticsearch,Stacey-Gammon\/elasticsearch,mmaracic\/elasticsearch,njlawton\/elasticsearch,qwerty4030\/elasticsearch,strapdata\/elassandra5-rc,Stacey-Gammon\/elasticsearch,HonzaKral\/elasticsearch,maddin2016\/elasticsearch,nazarewk\/elasticsearch,vroyer\/elasticassandra,njlawton\/elasticsearch,fernandozhu\/elasticsearch,jprante\/elasticsearch,mikemccand\/elasticsearch,nomoa\/elasticsearch,palecur\/elasticsearch,shreejay\/elasticsearch,s1monw\/elasticsearch,wuranbo\/elasticsearch,njlawton\/elasticsearch,naveenhooda2000\/elasticsearch,gfyoung\/elasticsearch,wangtuo\/elasticsearch,gingerwizard\/elasticsearch,LeoYao\/elasticsearch,GlenRSmith\/elasticsearch,GlenRSmith\/elasticsearch,uschindler\/elasticsearch,nilabhsagar\/elasticsearch,strapdata\/elassandra5-rc,elasticdog\/elasticsearch,elasticdog\/elasticsearch,polyfractal\/elasticsearch,njlawton\/elasticsearch,LeoYao\/elasticsearch,xuzha\/elasticsearch,JackyMai\/elasticsearch,rlugojr\/elasticsearch,JSCooke\/elasticsearch,JackyMai\/elasticsearch,yanjunh\/elasticsearch,sneivandt\/elasticsearch,sreeramjayan\/elasticsearch,artnowo\/elasticsearch,ZTE-PaaS\/elasticsearch,bawse\/elasticsearch,robin13\/elasticsearch,brandonkearby\/elasticsearch,uschindler\/elasticsearch,dongjoon-hyun\/elasticsearch,ESamir\/elasticsearch,glefloch\/elasticsearch,brandonkearby\/elasticsearch,henakamaMSFT\/elasticsearch,trangvh\/elasticsearch,shreejay\/elasticsearch,jimczi\/elasticsearch,JervyShi\/elasticsearch,Shepard1212\/elasticsearch,dpursehouse\/elasticsearch,pozhidaevak\/elasticsearch,girirajsharma\/elasticsearch,wenpos\/elasticsearch,diendt\/elasticsearch,ricardocerq\/elasticsearch,girirajsharma\/elasticsearch,mikemccand\/elasticsearch,rlugojr\/elasticsearch,coding0011\/elasticsearch,yynil\/elasticsearch,polyfractal\/elasticsearch,girirajsharma\/elasticsearch,mohit\/elasticsearch,obourgain\/elasticsearch,wuranbo\/elasticsearch,girirajsharma\/elasticsearch,tebriel\/elasticsearch,ricardocerq\/elasticsearch,jchampion\/elasticsearch,shreejay\/elasticsearch,tebriel\/elasticsearch,camilojd\/elasticsearch,yynil\/elasticsearch,mapr\/elasticsearch,Helen-Zhao\/elasticsearch,pozhidaevak\/elasticsearch,gingerwizard\/elasticsearch,MisterAndersen\/elasticsearch,scottsom\/elasticsearch,henakamaMSFT\/elasticsearch,ivansun1010\/elasticsearch,StefanGor\/elasticsearch,yynil\/elasticsearch,a2lin\/elasticsearch,qwerty4030\/elasticsearch,jbertouch\/elasticsearch,trangvh\/elasticsearch,vroyer\/elasticassandra,LewayneNaidoo\/elasticsearch,strapdata\/elassandra,Helen-Zhao\/elasticsearch,markharwood\/elasticsearch,geidies\/elasticsearch,markwalkom\/elasticsearch,umeshdangat\/elasticsearch,jchampion\/elasticsearch,awislowski\/elasticsearch,myelin\/elasticsearch,MisterAndersen\/elasticsearch,artnowo\/elasticsearch,mortonsykes\/elasticsearch,obourgain\/elasticsearch,episerver\/elasticsearch,ivansun1010\/elasticsearch,gingerwizard\/elasticsearch,IanvsPoplicola\/elasticsearch,fernandozhu\/elasticsearch,dpursehouse\/elasticsearch,uschindler\/elasticsearch,jimczi\/elasticsearch,wenpos\/elasticsearch,gingerwizard\/elasticsearch,njlawton\/elasticsearch,spiegela\/elasticsearch,scottsom\/elasticsearch,geidies\/elasticsearch,wenpos\/elasticsearch,qwerty4030\/elasticsearch,rlugojr\/elasticsearch,lks21c\/elasticsearch,fforbeck\/elasticsearch,kalimatas\/elasticsearch,Shepard1212\/elasticsearch,ivansun1010\/elasticsearch,clintongormley\/elasticsearch,fred84\/elasticsearch,liweinan0423\/elasticsearch,glefloch\/elasticsearch,episerver\/elasticsearch,elasticdog\/elasticsearch,ZTE-PaaS\/elasticsearch,davidvgalbraith\/elasticsearch,winstonewert\/elasticsearch,markwalkom\/elasticsearch,JackyMai\/elasticsearch,i-am-Nathan\/elasticsearch,LewayneNaidoo\/elasticsearch,umeshdangat\/elasticsearch,scorpionvicky\/elasticsearch,mmaracic\/elasticsearch,yynil\/elasticsearch,diendt\/elasticsearch,s1monw\/elasticsearch,alexshadow007\/elasticsearch,nezirus\/elasticsearch,mortonsykes\/elasticsearch,glefloch\/elasticsearch,jpountz\/elasticsearch,jbertouch\/elasticsearch,cwurm\/elasticsearch,jpountz\/elasticsearch,kalimatas\/elasticsearch,alexshadow007\/elasticsearch,martinstuga\/elasticsearch,episerver\/elasticsearch,scorpionvicky\/elasticsearch,MisterAndersen\/elasticsearch,Shepard1212\/elasticsearch,masaruh\/elasticsearch,martinstuga\/elasticsearch,avikurapati\/elasticsearch,jbertouch\/elasticsearch,robin13\/elasticsearch,lks21c\/elasticsearch,mortonsykes\/elasticsearch,shreejay\/elasticsearch,robin13\/elasticsearch,yanjunh\/elasticsearch,Shepard1212\/elasticsearch,fred84\/elasticsearch,artnowo\/elasticsearch,C-Bish\/elasticsearch,jimczi\/elasticsearch,scorpionvicky\/elasticsearch,xuzha\/elasticsearch,myelin\/elasticsearch,coding0011\/elasticsearch,sreeramjayan\/elasticsearch,a2lin\/elasticsearch,cwurm\/elasticsearch,mmaracic\/elasticsearch,MaineC\/elasticsearch,nomoa\/elasticsearch,rlugojr\/elasticsearch,jpountz\/elasticsearch,zkidkid\/elasticsearch,jprante\/elasticsearch,markwalkom\/elasticsearch,jprante\/elasticsearch,fred84\/elasticsearch,yynil\/elasticsearch,diendt\/elasticsearch,nilabhsagar\/elasticsearch,StefanGor\/elasticsearch,scorpionvicky\/elasticsearch,gfyoung\/elasticsearch,mikemccand\/elasticsearch,masaruh\/elasticsearch,rajanm\/elasticsearch,MaineC\/elasticsearch,obourgain\/elasticsearch,MisterAndersen\/elasticsearch,JervyShi\/elasticsearch,scorpionvicky\/elasticsearch,clintongormley\/elasticsearch,markharwood\/elasticsearch,clintongormley\/elasticsearch,Stacey-Gammon\/elasticsearch,palecur\/elasticsearch,spiegela\/elasticsearch,LeoYao\/elasticsearch,a2lin\/elasticsearch,fernandozhu\/elasticsearch,henakamaMSFT\/elasticsearch,s1monw\/elasticsearch,mapr\/elasticsearch,glefloch\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,liweinan0423\/elasticsearch,strapdata\/elassandra,polyfractal\/elasticsearch,MaineC\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,jchampion\/elasticsearch,geidies\/elasticsearch,brandonkearby\/elasticsearch,mortonsykes\/elasticsearch,dongjoon-hyun\/elasticsearch,avikurapati\/elasticsearch,pozhidaevak\/elasticsearch"} {"commit":"63f5c50f30595dcbc8c82333e4cddd1033ea1439","old_file":"labs\/05-start-with-data\/README.adoc","new_file":"labs\/05-start-with-data\/README.adoc","old_contents":"= Running your database with data included\n*Having to insert the data everytime you start a container can become a hassle. In this exercise we will put the data inside the Postgres image, so that it will be available on startup.*\n\nThe https:\/\/hub.docker.com\/_\/postgres\/[Postgres] image provides a convenient way to execute scripts on startup of your database. All we have to do is add a .sh script to the docker-entrypoint-initdb.d-folder as per the documentation of the image.\n\n== Steps to prepare the database\n. Create the .sh script on your harddisk\n. Create a Dockerfile that\n.. Is build https:\/\/docs.docker.com\/engine\/reference\/builder\/#\/from[from] postgres:9\n.. https:\/\/docs.docker.com\/engine\/reference\/builder\/#\/add[Adds] the .sh file to the docker-entrypoint-initdb.d folder in the container\n. Build the image, run it and link it with the testnetapp container\n\n\n.The script to add to the Dockerfile\n----\n#!\/bin\/bash\nset -e\n\npsql -v ON_ERROR_STOP=1 --username \"$POSTGRES_USER\" <<-EOSQL\n CREATE DATABASE testnet;\n \\c testnet\n CREATE TABLE kv (key varchar(100) PRIMARY KEY, value varchar(100));\n INSERT INTO kv VALUES ('provider','postgres database');\nEOSQL\n----","new_contents":"= Running your database with data included\n*Having to insert the data everytime you start a container can become a hassle. In this exercise we will put the data inside the Postgres image, so that it will be available on startup.*\n\nThe https:\/\/hub.docker.com\/_\/postgres\/[Postgres] image provides a convenient way to execute scripts on startup of your database. All we have to do is add a .sh script to the docker-entrypoint-initdb.d-folder as per the documentation of the image.\n\n== Steps to prepare the database\n. Create an empty folder\n. Put the .sh script from below in that folder\n. Create a Dockerfile in the folder that\n.. Is build https:\/\/docs.docker.com\/engine\/reference\/builder\/#\/from[from] postgres:9\n.. https:\/\/docs.docker.com\/engine\/reference\/builder\/#\/add[Adds] the .sh file to the docker-entrypoint-initdb.d folder in the container\n. Build the image, run it and link it with the testnetapp container\n\n\n.The script to add to the Dockerfile\n----\n#!\/bin\/bash\nset -e\n\npsql -v ON_ERROR_STOP=1 --username \"$POSTGRES_USER\" <<-EOSQL\n CREATE DATABASE testnet;\n \\c testnet\n CREATE TABLE kv (key varchar(100) PRIMARY KEY, value varchar(100));\n INSERT INTO kv VALUES ('provider','postgres database');\nEOSQL\n----","subject":"Create Dockerfile in empty folder","message":"Create Dockerfile in empty folder\n","lang":"AsciiDoc","license":"apache-2.0","repos":"bolcom\/docker-for-testers,bolcom\/docker-for-testers,bolcom\/docker-for-testers"} {"commit":"28dd7dabfb94e37c3378fc0653b9096b3f9afb6e","old_file":"docs\/modules\/ROOT\/pages\/whats-new.adoc","new_file":"docs\/modules\/ROOT\/pages\/whats-new.adoc","old_contents":"[[new]]\n= What's New in Spring Security 5.7\n\nSpring Security 5.7 provides a number of new features.\nBelow are the highlights of the release.\n\n[[whats-new-servlet]]\n== Servlet\n\n* Web\n\n** Introduced xref:servlet\/authentication\/persistence.adoc#requestattributesecuritycontextrepository[`RequestAttributeSecurityContextRepository`]\n** Introduced xref:servlet\/authentication\/persistence.adoc#securitycontextholderfilter[`SecurityContextHolderFilter`] - Ability to require explicit saving of the `SecurityContext`\n\n* OAuth 2.0 Client\n\n** Allow configuring https:\/\/github.com\/spring-projects\/spring-security\/issues\/6548[PKCE for confidential clients]\n** Allow configuring a https:\/\/github.com\/spring-projects\/spring-security\/issues\/9812[JWT assertion resolver] in `JwtBearerOAuth2AuthorizedClientProvider`\n** Allow customizing claims on https:\/\/github.com\/spring-projects\/spring-security\/issues\/9855[JWT client assertions]\n\n[[whats-new-webflux]]\n== WebFlux\n\n* OAuth 2.0 Client\n\n** Allow configuring https:\/\/github.com\/spring-projects\/spring-security\/issues\/6548[PKCE for confidential clients]\n** Allow configuring a https:\/\/github.com\/spring-projects\/spring-security\/issues\/9812[JWT assertion resolver] in `JwtBearerReactiveOAuth2AuthorizedClientProvider`\n","new_contents":"[[new]]\n= What's New in Spring Security 5.7\n\nSpring Security 5.7 provides a number of new features.\nBelow are the highlights of the release.\n\n[[whats-new-servlet]]\n== Servlet\n\n* Web\n\n** Introduced xref:servlet\/authentication\/persistence.adoc#requestattributesecuritycontextrepository[`RequestAttributeSecurityContextRepository`]\n** Introduced xref:servlet\/authentication\/persistence.adoc#securitycontextholderfilter[`SecurityContextHolderFilter`] - Ability to require explicit saving of the `SecurityContext`\n\n* OAuth 2.0 Client\n\n** Allow configuring https:\/\/github.com\/spring-projects\/spring-security\/issues\/6548[PKCE for confidential clients]\n** Allow configuring a https:\/\/github.com\/spring-projects\/spring-security\/issues\/9812[JWT assertion resolver] in `JwtBearerOAuth2AuthorizedClientProvider`\n** Allow customizing claims on https:\/\/github.com\/spring-projects\/spring-security\/issues\/9855[JWT client assertions]\n\n[[whats-new-webflux]]\n== WebFlux\n\n* Web\n\n** Allow customizing https:\/\/github.com\/spring-projects\/spring-security\/issues\/10903[charset] in `ServerHttpBasicAuthenticationConverter`\n\n* OAuth 2.0 Client\n\n** Allow configuring https:\/\/github.com\/spring-projects\/spring-security\/issues\/6548[PKCE for confidential clients]\n** Allow configuring a https:\/\/github.com\/spring-projects\/spring-security\/issues\/9812[JWT assertion resolver] in `JwtBearerReactiveOAuth2AuthorizedClientProvider`\n","subject":"Update What's New for 5.7","message":"Update What's New for 5.7\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security"} {"commit":"c0e784b16deb36340de38b375389348d2a17d711","old_file":"docs\/modules\/ROOT\/pages\/whats-new.adoc","new_file":"docs\/modules\/ROOT\/pages\/whats-new.adoc","old_contents":"[[new]]\n= What's New in Spring Security 6.0\n\nSpring Security 6.0 provides a number of new features.\nBelow are the highlights of the release.\n\n== Breaking Changes\n\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/10556[gh-10556] - Remove EOL OpenSaml 3 Support.\nUse the OpenSaml 4 Support instead.\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/8980[gh-8980] - Remove unsafe\/deprecated `Encryptors.querableText(CharSequence,CharSequence)`.\nInstead use data storage to encrypt values.\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11520[gh-11520] - Remember Me uses SHA256 by default\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/8819 - Move filters to web package\nReorganize imports\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/7349 - Move filter and token to appropriate packages\nReorganize imports\n","new_contents":"[[new]]\n= What's New in Spring Security 6.0\n\nSpring Security 6.0 provides a number of new features.\nBelow are the highlights of the release.\n\n== Breaking Changes\n\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/10556[gh-10556] - Remove EOL OpenSaml 3 Support.\nUse the OpenSaml 4 Support instead.\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/8980[gh-8980] - Remove unsafe\/deprecated `Encryptors.querableText(CharSequence,CharSequence)`.\nInstead use data storage to encrypt values.\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11520[gh-11520] - Remember Me uses SHA256 by default\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/8819 - Move filters to web package\nReorganize imports\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/7349 - Move filter and token to appropriate packages\nReorganize imports\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11026[gh-11026] - Use `RequestAttributeSecurityContextRepository` instead of `NullSecurityContextRepository`\n","subject":"Update What's New for 6.0","message":"Update What's New for 6.0\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security"} {"commit":"91f655e6b47740d0919a92a3acac99f2323a9ae0","old_file":"docs\/quick-start-guide\/src\/rhel-7\/listitem_repo_config_datastax.adoc","new_file":"docs\/quick-start-guide\/src\/rhel-7\/listitem_repo_config_datastax.adoc","old_contents":". *Enable DataStax repository*\n+\n====\nCreate the `\/etc\/yum.repos.d\/datastax.repo` file and edit it to contain the\nfollowing:\n\n[source]\n----\n# DataStax (Apache Cassandra)\n[datastax]\nname = DataStax Repo for Apache Cassandra\nbaseurl = http:\/\/rpm.datastax.com\/community\nenabled = 1\ngpgcheck = 1\ngpgkey = https:\/\/rpm.datastax.com\/rpm\/repo_key\n----\n====\n","new_contents":". *Enable DataStax repository*\n+\n====\nCreate the `\/etc\/yum.repos.d\/datastax.repo` file and edit it to contain the\nfollowing:\n\n[source]\n----\n# DataStax (Apache Cassandra)\n[datastax]\nname = DataStax Repo for Apache Cassandra\nbaseurl = http:\/\/rpm.datastax.com\/community\nenabled = 1\ngpgcheck = 0\ngpgkey = https:\/\/rpm.datastax.com\/rpm\/repo_key\n----\n====\n","subject":"Disable GPG check for DataStax repo on RHEL 7.","message":"Disable GPG check for DataStax repo on RHEL 7.\n\nChange-Id: I1c9c1bfddfff7847374563aedaa3130132100f13\nFixes: MND-19\nSigned-off-by: Jan Hilberath <14e793d896ddc8ca6911747228e86464cf420065@midokura.com>\n","lang":"AsciiDoc","license":"apache-2.0","repos":"midonet\/midonet-docs,midonet\/midonet-docs,midonet\/midonet-docs,yantarou\/midonet-docs,midonet\/midonet-docs,yantarou\/midonet-docs,yantarou\/midonet-docs"} {"commit":"acb5491b796018d2f8a174d51402e739b16f855d","old_file":"spring-boot-project\/spring-boot-docs\/src\/docs\/asciidoc\/features.adoc","new_file":"spring-boot-project\/spring-boot-docs\/src\/docs\/asciidoc\/features.adoc","old_contents":"[[features]]\n= Core Features\ninclude::attributes.adoc[]\n\n\n\nThis section dives into the details of Spring Boot.\nHere you can learn about the key features that you may want to use and customize.\nIf you have not already done so, you might want to read the \"<>\" and \"<>\" sections, so that you have a good grounding of the basics.\n\n\n\ninclude::features\/spring-application.adoc[]\n\ninclude::features\/external-config.adoc[]\n\ninclude::features\/profiles.adoc[]\n\ninclude::features\/logging.adoc[]\n\ninclude::features\/internationalization.adoc[]\n\ninclude::features\/json.adoc[]\n\ninclude::features\/task-execution-and-scheduling.adoc[]\n\ninclude::features\/testing.adoc[]\n\ninclude::features\/developing-auto-configuration.adoc[]\n\ninclude::features\/kotlin.adoc[]\n\ninclude::features\/whats-next.adoc[]\n","new_contents":"[[features]]\n= Core Features\ninclude::attributes.adoc[]\n\n\n\nThis section dives into the details of Spring Boot.\nHere you can learn about the key features that you may want to use and customize.\nIf you have not already done so, you might want to read the \"<>\" and \"<>\" sections, so that you have a good grounding of the basics.\n\n\n\ninclude::features\/spring-application.adoc[]\n\ninclude::features\/external-config.adoc[]\n\ninclude::features\/profiles.adoc[]\n\ninclude::features\/logging.adoc[]\n\ninclude::features\/internationalization.adoc[]\n\ninclude::features\/json.adoc[]\n\ninclude::features\/task-execution-and-scheduling.adoc[]\n\ninclude::features\/testing.adoc[]\n\ninclude::features\/developing-auto-configuration.adoc[]\n\ninclude::features\/kotlin.adoc[]\n\ninclude::features\/whats-next.adoc[]\n","subject":"Fix section links to not include .html suffix","message":"Fix section links to not include .html suffix\n\nCloses gh-33206\n","lang":"AsciiDoc","license":"apache-2.0","repos":"htynkn\/spring-boot,htynkn\/spring-boot,spring-projects\/spring-boot,htynkn\/spring-boot,htynkn\/spring-boot,spring-projects\/spring-boot,vpavic\/spring-boot,spring-projects\/spring-boot,vpavic\/spring-boot,vpavic\/spring-boot,spring-projects\/spring-boot,vpavic\/spring-boot,htynkn\/spring-boot,spring-projects\/spring-boot,spring-projects\/spring-boot,htynkn\/spring-boot,vpavic\/spring-boot,vpavic\/spring-boot"} {"commit":"481fb1c395cc3e5b27b8c708b06dc8cd707e68c1","old_file":"modules\/nw-multus-delete-network.adoc","new_file":"modules\/nw-multus-delete-network.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * networking\/multiple_networks\/remove-additional-network.adoc\n\n[id=\"nw-multus-delete-network_{context}\"]\n= Removing an additional network attachment definition\n\nAs a cluster administrator, you can remove an additional network from your\n{product-title} cluster. The additional network is not removed from any Pods it\nis attached to.\n\n.Prerequisites\n\n* Install the OpenShift Command-line Interface (CLI), commonly known as `oc`.\n* Log in as a user with `cluster-admin` privileges.\n\n.Procedure\n\nTo remove an additional network from your cluster, complete the following steps:\n\n. Edit the Cluster Network Operator (CNO) in your default text editor by running\nthe following command:\n+\n----\n$ oc edit networks.operator.openshift.io cluster\n----\n\n. Modify the CR by removing the configuration from the `additionalNetworks`\ncollection for the network attachment definition you are removing.\n+\n[source,yaml]\n----\napiVersion: operator.openshift.io\/v1\nkind: Network\nmetadata:\n name: cluster\nspec:\n additionalNetworks: [] <1>\n----\n<1> If you are removing the configuration mapping for the only additional\nnetwork attachment definition in the `additionalNetworks` collection, you must\nspecify an empty collection.\n\n. Save your changes and quit the text editor to commit your changes.\n\n. Delete the NetworkAttachmentDefinition CR for the additional network by running the following command. Replace `` with the name of the additional network to remove.\n+\n----\n$ oc delete network-attachment-definition \n----\n\n. Optional: Confirm that the additional network CR was deleted by running the following command:\n+\n----\n$ oc get network-attachment-definition --all-namespaces\n----\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * networking\/multiple_networks\/remove-additional-network.adoc\n\n[id=\"nw-multus-delete-network_{context}\"]\n= Removing an additional network attachment definition\n\nAs a cluster administrator, you can remove an additional network from your\n{product-title} cluster. The additional network is not removed from any Pods it\nis attached to.\n\n.Prerequisites\n\n* Install the OpenShift Command-line Interface (CLI), commonly known as `oc`.\n* Log in as a user with `cluster-admin` privileges.\n\n.Procedure\n\nTo remove an additional network from your cluster, complete the following steps:\n\n. Edit the Cluster Network Operator (CNO) in your default text editor by running\nthe following command:\n+\n----\n$ oc edit networks.operator.openshift.io cluster\n----\n\n. Modify the CR by removing the configuration from the `additionalNetworks`\ncollection for the network attachment definition you are removing.\n+\n[source,yaml]\n----\napiVersion: operator.openshift.io\/v1\nkind: Network\nmetadata:\n name: cluster\nspec:\n additionalNetworks: [] <1>\n----\n<1> If you are removing the configuration mapping for the only additional\nnetwork attachment definition in the `additionalNetworks` collection, you must\nspecify an empty collection.\n\n. Save your changes and quit the text editor to commit your changes.\n\n. Optional: Confirm that the additional network CR was deleted by running the following command:\n+\n----\n$ oc get network-attachment-definition --all-namespaces\n----\n","subject":"Remove extra step for removing an additional network","message":"Remove extra step for removing an additional network\n\n- https:\/\/issues.redhat.com\/browse\/OSDOCS-872\n- https:\/\/bugzilla.redhat.com\/show_bug.cgi?id=1755908\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"1151d4fc21b00c393ddc778bcb7947822d05771d","old_file":"modules\/olm-creating-index-image.adoc","new_file":"modules\/olm-creating-index-image.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * operators\/olm-managing-custom-catalogs.adoc\n\n[id=\"olm-creating-index-image_{context}\"]\n= Creating an index image\n\nYou can create an index image using the `opm` CLI.\n\n.Prerequisites\n\n* `opm` version 1.12.3+\n* `podman` version 1.4.4+\n* A bundle image built and pushed to a registry.\n\n.Procedure\n\n. Start a new index:\n+\n----\n$ opm index add \\\n --bundles quay.io\/\/test-operator:v0.1.0 \\\/\/<1>\n --tag quay.io\/\/test-catalog:latest <2>\n----\n<1> The bundle image to add to the index.\n<2> The image tag that you want the index image to have.\n\n. Push the index image to a registry:\n+\n----\n$ podman push quay.io\/\/test-catalog:latest\n----\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * operators\/olm-managing-custom-catalogs.adoc\n\n[id=\"olm-creating-index-image_{context}\"]\n= Creating an index image\n\nYou can create an index image using the `opm` CLI.\n\n.Prerequisites\n\n* `opm` version 1.12.3+\n* `podman` version 1.4.4+\n* A bundle image built and pushed to a registry.\n\n.Procedure\n\n. Start a new index:\n+\n----\n$ opm index add \\\n --bundles quay.io\/\/test-operator:v0.1.0 \\\/\/<1>\n --tag quay.io\/\/test-catalog:latest \\\/\/<2>\n [--binary-image ] <3>\n----\n<1> Comma-separated list of bundle images to add to the index.\n<2> The image tag that you want the index image to have.\n<3> Optional: An alternative registry base image to use for serving the catalog.\n\n. Push the index image to a registry:\n+\n----\n$ podman push quay.io\/\/test-catalog:latest\n----\n","subject":"Add --binary-image to opm docs","message":"Add --binary-image to opm docs\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"846e46773a8ab6e848923663db840f3e10147958","old_file":"docs\/index.asciidoc","new_file":"docs\/index.asciidoc","old_contents":"= Topbeat reference\n:libbeat: http:\/\/www.elastic.co\/guide\/en\/beats\/libbeat\/1.0.0-rc1\n:version: 1.0.0-rc1\n\n\ninclude::.\/overview.asciidoc[]\n\ninclude::.\/gettingstarted.asciidoc[]\n\ninclude::.\/fields.asciidoc[]\n\n\/\/ include::.\/configuration.asciidoc[]\n\ninclude::.\/command-line.asciidoc[]\n\ninclude::.\/windows.asciidoc[]\n\n\/\/ include::.\/troubleshooting.asciidoc[]\n","new_contents":"= Topbeat reference\n:libbeat: http:\/\/www.elastic.co\/guide\/en\/beats\/libbeat\/master\n:version: master\n\n\ninclude::.\/overview.asciidoc[]\n\ninclude::.\/gettingstarted.asciidoc[]\n\ninclude::.\/fields.asciidoc[]\n\n\/\/ include::.\/configuration.asciidoc[]\n\ninclude::.\/command-line.asciidoc[]\n\ninclude::.\/windows.asciidoc[]\n\n\/\/ include::.\/troubleshooting.asciidoc[]\n","subject":"Use master version in docs","message":"Use master version in docs\n","lang":"AsciiDoc","license":"mit","repos":"andrewkroh\/topbeat,yapdns\/yapdnsbeat,yapdns\/yapdnsbeat,andrewkroh\/topbeat"} {"commit":"983ca6ea277a89ed8340c4650992821b56eda4ab","old_file":"docs\/modules\/ROOT\/pages\/whats-new.adoc","new_file":"docs\/modules\/ROOT\/pages\/whats-new.adoc","old_contents":"[[new]]\n= What's New in Spring Security 5.8\n\nSpring Security 5.8 provides a number of new features.\nBelow are the highlights of the release.\n\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11638[gh-11638] - Refresh remote JWK when unknown KID error occurs\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11782[gh-11782] - @WithMockUser Supported as Merged Annotation\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11661[gh-11661] - Configurable authentication converter for resource-servers with token introspection\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11771[gh-11771] - `HttpSecurityDsl` should support `apply` method\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11232[gh-11232] - `ClientRegistrations#rest` defines 30s connect and read timeouts\n","new_contents":"[[new]]\n= What's New in Spring Security 5.8\n\nSpring Security 5.8 provides a number of new features.\nBelow are the highlights of the release.\n\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11638[gh-11638] - Refresh remote JWK when unknown KID error occurs\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11782[gh-11782] - @WithMockUser Supported as Merged Annotation\n* https:\/\/github.com\/spring-projects\/spring-security\/issues\/11661[gh-11661] - Configurable authentication converter for resource-servers with token introspection\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11771[gh-11771] - `HttpSecurityDsl` should support `apply` method\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11232[gh-11232] - `ClientRegistrations#rest` defines 30s connect and read timeouts\n* https:\/\/github.com\/spring-projects\/spring-security\/pull\/11464[gh-11464] - Remember Me supports SHA256 algorithm\n","subject":"Update What's New for 5.8","message":"Update What's New for 5.8\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security,spring-projects\/spring-security"} {"commit":"da0659a853ef7bf34bd5aa579696dd144bcd2665","old_file":"doc\/eventsystem.adoc","new_file":"doc\/eventsystem.adoc","old_contents":"\n= Event Data\n\n=== Event Sourcing\n\nTODO, link core event sourcing docs.\n\nApart from the recommended event store, Photon, Muon Java provides an in memory, simplified event store that only implements\n the core ingest and stream functionality of a muon compatible event store. You can read more about it link:InMemEventStore.html[here]\n\nThis is most useful during building tests.\n\n=== Event Based Testing\n\nIf you adopt the Event system (which requires an event store such as _Photon_), then you will design your system domains\nas a set of _Events_, and your business processes as a set of causal relationships between them.\n","new_contents":"\n== Event Based Systems\n\n\n\n=== Event Sourcing\n\nTODO, link core event sourcing docs.\n\nApart from the recommended event store, Photon, Muon Java provides an in memory, simplified event store that only implements\n the core ingest and stream functionality of a muon compatible event store. You can read more about it link:InMemEventStore.html[here]\n\nThis is most useful during building tests.\n\n=== Event Based Testing\n\nIf you adopt the Event system (which requires an event store such as _Photon_), then you will design your system domains\nas a set of _Events_, and your business processes as a set of causal relationships between them.\n\n","subject":"Update doc structure. ignore multicast on TC","message":"Update doc structure. ignore multicast on TC\n","lang":"AsciiDoc","license":"apache-2.0","repos":"microserviceux\/muon-java,microserviceux\/muon-java"} {"commit":"4f92ff73d78d8865a891f38ced7cc4f7db75b031","old_file":"docs\/src\/main\/asciidoc\/sagan-index.adoc","new_file":"docs\/src\/main\/asciidoc\/sagan-index.adoc","old_contents":"\ninclude::_attributes.adoc[]\n\nSpring Cloud Zookeeper provides http:\/\/zookeeper.apache.org\/[Apache Zookeeper] integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms. With a few simple annotations you can quickly enable and configure the common patterns inside your application and build large distributed systems with Zookeeper. The patterns provided include Service Discovery and Distributed Configuration.\n\n## Features\n\n* Service Discovery: instances can be registered with Zookeeper and clients can discover the instances using Spring-managed beans\n * Supports Ribbon, the client side load-balancer via Spring Cloud Netflix\n * Supports Zuul, a dynamic router and filter via Spring Cloud Netflix\n* Distributed Configuration: using Zookeeper as a data store\n\n## Quick Start\n\nAs long as Spring Cloud Zookeeper, http:\/\/curator.apache.org\/[Apache Curator] and the Zookeeper Java Client are on the\nclasspath any Spring Boot application with `@EnableDiscoveryClient` will try to contact a Zookeeper\nagent on `localhost:2181` (the default value of\n`zookeeper.connectString`).\n\n```java\n@Configuration\n@EnableAutoConfiguration\n@EnableDiscoveryClient\n@RestController\npublic class Application {\n\n @RequestMapping(\"\/\")\n public String home() {\n return \"Hello World\";\n }\n\n public static void main(String[] args) {\n SpringApplication.run(Application.class, args);\n }\n\n}\n```\n\nA local Zookeeper server must be running. See the http:\/\/zookeeper.apache.org\/doc\/trunk\/zookeeperStarted.html[Zookeeper documentation] on how to run a Zookeeper server.\n","new_contents":"\ninclude::_attributes.adoc[]\n\nSpring Cloud Zookeeper provides http:\/\/zookeeper.apache.org\/[Apache Zookeeper] integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms. With a few simple annotations you can quickly enable and configure the common patterns inside your application and build large distributed systems with Zookeeper. The patterns provided include Service Discovery and Distributed Configuration.\n\n## Features\n\n* Service Discovery: instances can be registered with Zookeeper and clients can discover the instances using Spring-managed beans\n * Supports Ribbon, the client side load-balancer via Spring Cloud Netflix\n * Supports Zuul, a dynamic router and filter via Spring Cloud Netflix\n* Distributed Configuration: using Zookeeper as a data store\n\n## Quick Start\n\nAs long as Spring Cloud Zookeeper, http:\/\/curator.apache.org\/[Apache Curator] and the Zookeeper Java Client are on the\nclasspath any Spring Boot application with `@EnableDiscoveryClient` will try to contact a Zookeeper\nagent on `localhost:2181` (the default value of\n`zookeeper.connectString`).\n\n```java\n@Configuration\n@EnableAutoConfiguration\n@EnableDiscoveryClient\n@RestController\npublic class Application {\n\n @RequestMapping(\"\/\")\n public String home() {\n return \"Hello World\";\n }\n\n public static void main(String[] args) {\n SpringApplication.run(Application.class, args);\n }\n\n}\n```\n\nA local Zookeeper server must be running. See the http:\/\/zookeeper.apache.org\/[Zookeeper documentation] on how to run a Zookeeper server.\n","subject":"Fix Zookeeper link in documentation","message":"Fix Zookeeper link in documentation\n\nFixes gh-238\nFixes gh-246\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spring-cloud\/spring-cloud-zookeeper,spring-cloud\/spring-cloud-zookeeper"} {"commit":"5a8910a844856109b279bd4364276a4fb7719285","old_file":"pages\/apim\/3.x\/user-guide\/publisher\/sme\/using-kafka-controller.adoc","new_file":"pages\/apim\/3.x\/user-guide\/publisher\/sme\/using-kafka-controller.adoc","old_contents":"= Using the Kafka controller\n:page-sidebar: apim_3_x_sidebar\n:page-permalink: apim\/3.x\/apim_publishersme_using_kafka.html\n:page-folder: apim\/user-guide\/publisher\n:page-layout: apim3x\n\n== Overview\n\nThis section describes the basic usage of the Kafka controller - producing and consuming messages.\n\n=== Producing messages\n\nUsing the HTTP `POST` command to the example endpoint `https:\/\/apim-3-x-x-gateway.cloud.gravitee.io\/kafka\/messages`, you can send a message with the followig structure:\n\n[source,json]\n----\nhttps:\/\/apim-3-13-x-gateway.cloud.gravitee.io\/kafka\/messages\n{\n \"messages\": [\n {\n \"key\": \"key\",\n \"value\": {\n \"val1\": \"hello\"\n }\n }\n ]\n}\n----\n\n=== Consuming messages\n\nUsing the HTTP `GET` command to the example endpoint `https:\/\/apim-3-x-x-gateway.cloud.gravitee.io\/kafka\/messages`, you can receive any available messages.","new_contents":"= Using the Kafka controller\n:page-sidebar: apim_3_x_sidebar\n:page-permalink: apim\/3.x\/apim_publisherguide_using_kafka.html\n:page-folder: apim\/user-guide\/publisher\n:page-layout: apim3x\n\n== Overview\n\nThis section describes the basic usage of the Kafka controller - producing and consuming messages.\n\n=== Producing messages\n\nUsing the HTTP `POST` command to the example endpoint `https:\/\/api.company.com\/kafka\/messages`, you can send a message with the followig structure:\n\n[source,json]\n----\nhttps:\/\/api.company.com\/kafka\/messages\n{\n \"messages\": [\n {\n \"key\": \"key\",\n \"value\": {\n \"val1\": \"hello\"\n }\n }\n ]\n}\n----\n\n=== Consuming messages\n\nUsing the HTTP `GET` command to the example endpoint `https:\/\/api.company.com\/kafka\/messages`, you can receive any available messages.","subject":"Fix link and snippet url","message":"Fix link and snippet url\n","lang":"AsciiDoc","license":"apache-2.0","repos":"gravitee-io\/gravitee-docs,gravitee-io\/gravitee-docs,gravitee-io\/gravitee-docs"} {"commit":"5ddebb6a2806f3db4fc371711ebcf67ddc36165d","old_file":"src\/docs\/asciidoc\/index.adoc","new_file":"src\/docs\/asciidoc\/index.adoc","old_contents":"= EB4J\n:doctype: article\n:docinfo:\n:toc:\n:toclevels: 2\n\ninclude::about.adoc[]\n\ninclude::links.adoc[]\n\ninclude::reports.adoc[]\n","new_contents":"= EB4J\n:doctype: article\n:docinfo:\n:toc:\n:toclevels: 2\n\nIMPORTANT: link:https:\/\/github.com\/eb4j\/eb4j[View on GitHub]\n | link:https:\/\/eb4j.github.io\/[Top project page]\n\ninclude::about.adoc[]\n\ninclude::links.adoc[]\n\ninclude::reports.adoc[]\n","subject":"Add link to top project page.","message":"Add link to top project page.\n","lang":"AsciiDoc","license":"lgpl-2.1","repos":"eb4j\/eb4j"} {"commit":"fe83d2af14cce34b6310c0f64fbb630ffa957a8d","old_file":"src\/main\/asciidoc\/inc\/_vertx-setup.adoc","new_file":"src\/main\/asciidoc\/inc\/_vertx-setup.adoc","old_contents":"\n[[vertx:setup]]\n== *vertx:setup*\n\nThis goal adds the Vert.x Maven Plugin to your `pom.xml` file. The plugin is configured with a default configuration.\n\n=== Example\n\n[source,subs=\"attributes\"]\n----\nmvn io.fabric8:vertx-maven-plugin:{version}:setup\n----\n\nThe setup goal by default uses the plugin property _vertx-core-version_\nfrom the plugin properties file vertx-maven-plugin.properties as the vert.x version of the project,\nif you wish to override the vertx version, then you can run the same command as above with `-DvertxVersion=`\n\ne.g.\n[source,subs=\"attributes-with-version\"]\n----\nmvn io.fabric8:vertx-maven-plugin:{version}:setup -DvertxVersion=3.4.0-SNAPSHOT\n----\n\nThis will configure the vert.x and its dependencies to `3.4.0-SNAPSHOT` i.e. Maven project property `vertx.version`\nset to `3.4.0-SNAPSHOT`\n\n","new_contents":"\n[[vertx:setup]]\n== *vertx:setup*\n\nThis goal adds the Vert.x Maven Plugin to your `pom.xml` file. The plugin is configured with a default configuration.\n\n=== Example\n\n[source,subs=\"attributes\"]\n----\nmvn io.fabric8:vertx-maven-plugin:{version}:setup\n----\n\nThe setup goal by default uses the plugin property _vertx-core-version_\nfrom the plugin properties file vertx-maven-plugin.properties as the vert.x version of the project,\nif you wish to override the vertx version, then you can run the same command as above with `-DvertxVersion=`\n\ne.g.\n[source,subs=\"attributes-with-version\"]\n----\nmvn io.fabric8:vertx-maven-plugin:{version}:setup -DvertxVersion=3.4.0-SNAPSHOT\n----\n\nThis will configure the vert.x and its dependencies to `3.4.0-SNAPSHOT` i.e. Maven project property `vertx.version`\nset to `3.4.0-SNAPSHOT`\n\nYou can also generate a project if you don't have a `pom.xml` file:\n\n[source,subs=\"attributes\"]\n----\nmvn io.fabric8:vertx-maven-plugin:{version}:setup \\\n -DprojectGroupId=org.acme \\\n -DprojectArtifactId=acme-project \\\n -DprojectVersion=1.0-SNAPSHOT \\ # default to 1.0-SNAPSHOT\n -Dverticle=org.acme.Foo \\\n -Ddependencies=web,jmx,mongo\n----\n\n\nThe `verticle` parameter creates a new verticle class file.\nThe `dependencies` parameters specifies the Vert.x dependencies you need.\n","subject":"Extend documentaiton about the setup goal","message":"Extend documentaiton about the setup goal\n","lang":"AsciiDoc","license":"apache-2.0","repos":"kameshsampath\/vertx-maven-plugin"} {"commit":"dd95849b620194f9d2dbb0a1157c4a59553e7e25","old_file":"docs\/reference\/setup\/sysconfig\/file-descriptors.asciidoc","new_file":"docs\/reference\/setup\/sysconfig\/file-descriptors.asciidoc","old_contents":"[[file-descriptors]]\n=== File Descriptors\n\n[NOTE]\nThis is only relevant for Linux and macOS and can be safely ignored if running\nElasticsearch on Windows. On Windows that JVM uses an\nhttps:\/\/msdn.microsoft.com\/en-us\/library\/windows\/desktop\/aa363858(v=vs.85).aspx[API]\nlimited only by available resources.\n\nElasticsearch uses a lot of file descriptors or file handles. Running out of\nfile descriptors can be disastrous and will most probably lead to data loss.\nMake sure to increase the limit on the number of open files descriptors for\nthe user running Elasticsearch to 65,536 or higher.\n\nFor the `.zip` and `.tar.gz` packages, set <> as\nroot before starting Elasticsearch, or set `nofile` to `65536` in\n<>.\n\nRPM and Debian packages already default the maximum number of file\ndescriptors to 65536 and do not require further configuration.\n\nYou can check the `max_file_descriptors` configured for each node\nusing the <> API, with:\n\n[source,js]\n--------------------------------------------------\nGET _nodes\/stats\/process?filter_path=**.max_file_descriptors\n--------------------------------------------------\n\/\/ CONSOLE\n","new_contents":"[[file-descriptors]]\n=== File Descriptors\n\n[NOTE]\nThis is only relevant for Linux and macOS and can be safely ignored if running\nElasticsearch on Windows. On Windows that JVM uses an\nhttps:\/\/msdn.microsoft.com\/en-us\/library\/windows\/desktop\/aa363858(v=vs.85).aspx[API]\nlimited only by available resources.\n\nElasticsearch uses a lot of file descriptors or file handles. Running out of\nfile descriptors can be disastrous and will most probably lead to data loss.\nMake sure to increase the limit on the number of open files descriptors for\nthe user running Elasticsearch to 65,536 or higher.\n\nFor the `.zip` and `.tar.gz` packages, set <> as\nroot before starting Elasticsearch, or set `nofile` to `65536` in\n<>.\n\nOn macOS, you must also pass the JVM option `-XX:-MaxFDLimit`\nto Elasticsearch in order for it to make use of the higher file descriptor limit.\n\nRPM and Debian packages already default the maximum number of file\ndescriptors to 65536 and do not require further configuration.\n\nYou can check the `max_file_descriptors` configured for each node\nusing the <> API, with:\n\n[source,js]\n--------------------------------------------------\nGET _nodes\/stats\/process?filter_path=**.max_file_descriptors\n--------------------------------------------------\n\/\/ CONSOLE\n","subject":"Document JVM option MaxFDLimit for macOS ()","message":"Document JVM option MaxFDLimit for macOS ()\n\nThis commit documents a JVM option that is needed on macOS when raising\r\nfile descriptor limits there.\r\n\r\nRelates #26900\r\n","lang":"AsciiDoc","license":"apache-2.0","repos":"rajanm\/elasticsearch,fred84\/elasticsearch,pozhidaevak\/elasticsearch,gfyoung\/elasticsearch,mjason3\/elasticsearch,coding0011\/elasticsearch,gingerwizard\/elasticsearch,GlenRSmith\/elasticsearch,scottsom\/elasticsearch,wenpos\/elasticsearch,wangtuo\/elasticsearch,kalimatas\/elasticsearch,rajanm\/elasticsearch,wangtuo\/elasticsearch,s1monw\/elasticsearch,wangtuo\/elasticsearch,robin13\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,kalimatas\/elasticsearch,fred84\/elasticsearch,scorpionvicky\/elasticsearch,scottsom\/elasticsearch,gfyoung\/elasticsearch,fred84\/elasticsearch,mjason3\/elasticsearch,maddin2016\/elasticsearch,rajanm\/elasticsearch,scorpionvicky\/elasticsearch,GlenRSmith\/elasticsearch,markwalkom\/elasticsearch,maddin2016\/elasticsearch,fred84\/elasticsearch,masaruh\/elasticsearch,gingerwizard\/elasticsearch,wenpos\/elasticsearch,gingerwizard\/elasticsearch,coding0011\/elasticsearch,GlenRSmith\/elasticsearch,s1monw\/elasticsearch,kalimatas\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,GlenRSmith\/elasticsearch,nknize\/elasticsearch,wangtuo\/elasticsearch,markwalkom\/elasticsearch,GlenRSmith\/elasticsearch,mjason3\/elasticsearch,scottsom\/elasticsearch,gingerwizard\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,gingerwizard\/elasticsearch,qwerty4030\/elasticsearch,robin13\/elasticsearch,nknize\/elasticsearch,mjason3\/elasticsearch,markwalkom\/elasticsearch,qwerty4030\/elasticsearch,nknize\/elasticsearch,wangtuo\/elasticsearch,scottsom\/elasticsearch,wenpos\/elasticsearch,robin13\/elasticsearch,markwalkom\/elasticsearch,scottsom\/elasticsearch,HonzaKral\/elasticsearch,scorpionvicky\/elasticsearch,fred84\/elasticsearch,gfyoung\/elasticsearch,masaruh\/elasticsearch,s1monw\/elasticsearch,markwalkom\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,gingerwizard\/elasticsearch,pozhidaevak\/elasticsearch,robin13\/elasticsearch,uschindler\/elasticsearch,s1monw\/elasticsearch,kalimatas\/elasticsearch,wenpos\/elasticsearch,pozhidaevak\/elasticsearch,masaruh\/elasticsearch,coding0011\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,qwerty4030\/elasticsearch,HonzaKral\/elasticsearch,maddin2016\/elasticsearch,scorpionvicky\/elasticsearch,kalimatas\/elasticsearch,maddin2016\/elasticsearch,coding0011\/elasticsearch,uschindler\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,pozhidaevak\/elasticsearch,uschindler\/elasticsearch,maddin2016\/elasticsearch,HonzaKral\/elasticsearch,s1monw\/elasticsearch,rajanm\/elasticsearch,uschindler\/elasticsearch,gfyoung\/elasticsearch,pozhidaevak\/elasticsearch,nknize\/elasticsearch,markwalkom\/elasticsearch,qwerty4030\/elasticsearch,wenpos\/elasticsearch,gfyoung\/elasticsearch,robin13\/elasticsearch,gingerwizard\/elasticsearch,coding0011\/elasticsearch,qwerty4030\/elasticsearch,mjason3\/elasticsearch,scorpionvicky\/elasticsearch,rajanm\/elasticsearch,masaruh\/elasticsearch,uschindler\/elasticsearch,rajanm\/elasticsearch,masaruh\/elasticsearch,HonzaKral\/elasticsearch,nknize\/elasticsearch"} {"commit":"8190328e235c5a4dc2c3f99f36676b0b4918780e","old_file":"storage\/container_storage_interface\/persistent-storage-csi-snapshots.adoc","new_file":"storage\/container_storage_interface\/persistent-storage-csi-snapshots.adoc","old_contents":"[id=\"persistent-storage-csi-snapshots\"]\n= CSI volume snapshots\ninclude::modules\/common-attributes.adoc[]\n:context: persistent-storage-csi-snapshots\n\ntoc::[]\n\nThis document describes how to use volume snapshots with supported Container Storage Interface (CSI) drivers to help protect against data loss in {product-title}. Familiarity with xref:..\/..\/storage\/understanding-persistent-storage.adoc#persistent-volumes_understanding-persistent-storage[persistent volumes] is suggested.\n\n:FeatureName: CSI volume snapshot\n\ninclude::modules\/technology-preview.adoc[leveloffset=+0]\n\ninclude::modules\/persistent-storage-csi-snapshots-overview.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-controller-sidecar.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-operator.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-provision.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-create.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-delete.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-restore.adoc[leveloffset=+1]\n","new_contents":"[id=\"persistent-storage-csi-snapshots\"]\n= CSI volume snapshots\ninclude::modules\/common-attributes.adoc[]\n:context: persistent-storage-csi-snapshots\n\ntoc::[]\n\nThis document describes how to use volume snapshots with supported Container Storage Interface (CSI) drivers to help protect against data loss in {product-title}. Familiarity with xref:..\/..\/storage\/understanding-persistent-storage.adoc#persistent-volumes_understanding-persistent-storage[persistent volumes] is suggested.\n\ninclude::modules\/persistent-storage-csi-snapshots-overview.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-controller-sidecar.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-operator.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-provision.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-create.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-delete.adoc[leveloffset=+1]\n\ninclude::modules\/persistent-storage-csi-snapshots-restore.adoc[leveloffset=+1]\n","subject":"Remove TP note in CSI snapshots","message":"Remove TP note in CSI snapshots\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"d8bc2ec33d029a94e3eea61d1b21468cb8294eab","old_file":"compatibility\/springBoot.adoc","new_file":"compatibility\/springBoot.adoc","old_contents":"= Artificial Intelligence for Spring Boot\n:awestruct-description: Learn how to use OptaPlanner (open source, java) for Artificial Intelligence planning optimization on Spring Boot.\n:awestruct-layout: compatibilityBase\n:awestruct-priority: 1.0\n:awestruct-related_tag: spring\n:showtitle:\n\nOptaPlanner has a Spring Boot Starter to get up and running quickly.\n\nUsage is similar to the link:quarkus.html[Quarkus] extension, but without the performance benefits.\n\nvideo::U2N02ReT9CI[youtube]\n\n== Guide\n\n**https:\/\/github.com\/ge0ffrey\/getting-started-guides\/blob\/gs-constraint-solving-ai-optaplanner\/README.adoc[Read the OptaPlanner on Spring Boot guide.]**\n\n== Quick start\n\nRun the quick start yourself:\n\n. Download https:\/\/github.com\/ge0ffrey\/gs-constraint-solving-ai-optaplanner-backup\/tree\/master\/complete[the source code].\n. Run `.\/mvnw clean install`\n. Open http:\/\/localhost:8080 in your browser\n","new_contents":"= Artificial Intelligence for Spring Boot\n:awestruct-description: Learn how to use OptaPlanner (open source, java) for Artificial Intelligence planning optimization on Spring Boot.\n:awestruct-layout: compatibilityBase\n:awestruct-priority: 1.0\n:awestruct-related_tag: spring\n:showtitle:\n\nOptaPlanner has a Spring Boot Starter to get up and running quickly.\n\nUsage is similar to the link:quarkus.html[Quarkus] extension, but without the performance benefits.\n\nvideo::U2N02ReT9CI[youtube]\n\n== Guide\n\n**https:\/\/github.com\/ge0ffrey\/getting-started-guides\/blob\/gs-constraint-solving-ai-optaplanner\/README.adoc[Read the OptaPlanner on Spring Boot guide.]**\n\n== Quick start\n\nRun the quick start yourself:\n\n. Download https:\/\/github.com\/ge0ffrey\/getting-started-guides\/tree\/gs-constraint-solving-ai-optaplanner\/complete[the source code].\n. Run `.\/mvnw clean install`\n. Open http:\/\/localhost:8080 in your browser\n","subject":"Fix wrong link (even if it's temporally)","message":"Fix wrong link (even if it's temporally)\n","lang":"AsciiDoc","license":"apache-2.0","repos":"droolsjbpm\/optaplanner-website,droolsjbpm\/optaplanner-website,droolsjbpm\/optaplanner-website"} {"commit":"a625e5317bfcdebc7d7f99a5d4e972008031f1ec","old_file":"CONTRIBUTING.adoc","new_file":"CONTRIBUTING.adoc","old_contents":"= Contributing to Hawkular Metrics\n\nBefore contributing to Hawkular Metrics, it might be useful to read the\nhttp:\/\/www.hawkular.org\/docs\/dev\/development.html[How to develop on Hawkular] page on Hawkular website.\n\n== Code style\n\nHawkular Metrics is a Hawkular component, so project level conventions apply here. That said, there are some\nMetrics specific ones.\n\n=== Logging\n\nWhen working with the JBoss Logging API:\n\n* Group all `INFO` level and above messages http:\/\/git.io\/vnDW4[in one interface] per logical module for maintainability\n* Instead of creating a logger instance in the message logger interface, use a http:\/\/git.io\/vnDWr[helper class] to get\na logger instance with proper category\n* Use existing message logger instance to log trace\/debug messages instead of creating a separate logger instance\n\nThe logging `projectCode` is `HAWKMETRICS`.\n\nNote that until we no longer need to support EAP 6.4,\nhttp:\/\/lists.jboss.org\/pipermail\/hawkular-dev\/2015-March\/000378.html[we must not use primitive arguments in logging interfaces].\n\nLogback is the logging backend for tests. It allows to http:\/\/git.io\/vnDlr[set log level with a system property]\nwhile still having a default value. No Maven filtering\/replace dance involved.\n","new_contents":"= Contributing to Hawkular Metrics\n\nBefore contributing to Hawkular Metrics, it might be useful to read the\nhttp:\/\/www.hawkular.org\/docs\/dev\/development.html[How to develop on Hawkular] page on Hawkular website.\n\n== Code style\n\nHawkular Metrics is a Hawkular subproject, so top level conventions apply here. That said, there are some\nMetrics specific ones.\n\n=== Logging\n\nWhen working with the JBoss Logging API:\n\n* Group all `INFO` level and above messages http:\/\/git.io\/vnDW4[in one interface] per logical module for maintainability\n* Instead of creating a logger instance in the message logger interface, use a http:\/\/git.io\/vnDWr[helper class] to get\na logger instance with proper category\n* Use existing message logger instance to log trace\/debug messages instead of creating a separate logger instance\n\nThe logging `projectCode` is `HAWKMETRICS`.\n\nNote that until we no longer need to support EAP 6.4,\nhttp:\/\/lists.jboss.org\/pipermail\/hawkular-dev\/2015-March\/000378.html[we must not use primitive arguments in logging interfaces].\n\nLogback is the logging backend for tests. It allows to http:\/\/git.io\/vnDlr[set log level with a system property]\nwhile still having a default value. No Maven filtering\/replace dance involved.\n","subject":"Rephrase Metrics presentation a bit","message":"Rephrase Metrics presentation a bit\n","lang":"AsciiDoc","license":"apache-2.0","repos":"spadgett\/hawkular-metrics,hawkular\/hawkular-metrics,mwringe\/hawkular-metrics,jotak\/hawkular-metrics,pilhuhn\/rhq-metrics,tsegismont\/hawkular-metrics,burmanm\/hawkular-metrics,tsegismont\/hawkular-metrics,burmanm\/hawkular-metrics,hawkular\/hawkular-metrics,ppalaga\/hawkular-metrics,mwringe\/hawkular-metrics,burmanm\/hawkular-metrics,ppalaga\/hawkular-metrics,hawkular\/hawkular-metrics,ppalaga\/hawkular-metrics,tsegismont\/hawkular-metrics,spadgett\/hawkular-metrics,pilhuhn\/rhq-metrics,mwringe\/hawkular-metrics,spadgett\/hawkular-metrics,tsegismont\/hawkular-metrics,mwringe\/hawkular-metrics,jotak\/hawkular-metrics,jotak\/hawkular-metrics,spadgett\/hawkular-metrics,pilhuhn\/rhq-metrics,hawkular\/hawkular-metrics,pilhuhn\/rhq-metrics,ppalaga\/hawkular-metrics,jotak\/hawkular-metrics,burmanm\/hawkular-metrics,spadgett\/hawkular-metrics"} {"commit":"73bac1614e044603dd6b1da16113a47a26f1d14f","old_file":"README.adoc","new_file":"README.adoc","old_contents":"== License\n\nThe gem is available as open source under the terms of the\nhttp:\/\/opensource.org\/licenses\/MIT[MIT License].\n\nThe gem includes \"Iliad\", a classical masterpiece by Homer, translated to\nEnglish by Samuel Butler. A work is in\nhttps:\/\/wiki.creativecommons.org\/wiki\/Public_domain[public domain] in USA and\nin almost whole world (if not whole world) as the translator has died over\n100 years ago (not to mention the original author). It has been downloaded from\nProject Gutenberg, more details about the work can be found\nhttp:\/\/www.gutenberg.org\/ebooks\/2199[there].\n","new_contents":"Well Read Faker\n===============\n:homepage: https:\/\/github.com\/skalee\/well_read_faker\n\nimage:https:\/\/img.shields.io\/gem\/v\/well_read_faker.svg[\nVersion, link=\"https:\/\/rubygems.org\/gems\/well_read_faker\"]\nimage:https:\/\/img.shields.io\/travis\/skalee\/well_read_faker\/master.svg[\nBuild Status, link=\"https:\/\/travis-ci.org\/skalee\/well_read_faker\/branches\"]\nimage:https:\/\/img.shields.io\/gemnasium\/skalee\/well_read_faker.svg[\nDependencies, link=\"https:\/\/gemnasium.com\/skalee\/well_read_faker\"]\nimage:https:\/\/img.shields.io\/codeclimate\/github\/skalee\/well_read_faker.svg[\nCode Climate, link=\"https:\/\/codeclimate.com\/github\/skalee\/well_read_faker\"]\nimage:http:\/\/img.shields.io\/coveralls\/skalee\/well_read_faker.svg[\nTest Coverage, link=\"https:\/\/coveralls.io\/r\/skalee\/well_read_faker\"]\n\n:toc:\n\n== License\n\nThe gem is available as open source under the terms of the\nhttp:\/\/opensource.org\/licenses\/MIT[MIT License].\n\nThe gem includes \"Iliad\", a classical masterpiece by Homer, translated to\nEnglish by Samuel Butler. A work is in\nhttps:\/\/wiki.creativecommons.org\/wiki\/Public_domain[public domain] in USA and\nin almost whole world (if not whole world) as the translator has died over\n100 years ago (not to mention the original author). It has been downloaded from\nProject Gutenberg, more details about the work can be found\nhttp:\/\/www.gutenberg.org\/ebooks\/2199[there].\n","subject":"Add metadata and badges to the Readme","message":"Add metadata and badges to the Readme\n","lang":"AsciiDoc","license":"mit","repos":"skalee\/well_read_faker,skalee\/well_read_faker"} {"commit":"42fb07fda965ac564a734eeb18f6d31bdd823e0c","old_file":"README.adoc","new_file":"README.adoc","old_contents":":title: scribble.github.io\n\n== Scribble Website\n\nimage:https:\/\/travis-ci.org\/scribble\/scribble.github.io.svg?branch=pages[\"Build Status\", link=\"https:\/\/travis-ci.org\/scribble\/scribble.github.io\"]\n\n=== Description\nWhen pushing a commit into this branch, the site is automatically built and published to http:\/\/www.scribble.org\nMost likely the content of the website you are looking for is link:src\/main\/jbake\/content\/[here].\n\n=== Building the site on localhost\n. `git clone https:\/\/github.com\/scribble\/scribble.github.io`\n. `git checkout pages`\n. Provided Maven is installed, run one of following commands:\n\n* `mvn jbake:generate` Simply runs jbake and generate the site into `target\/website` dir.\n* `mvn jbake:watch` Polls a folder and run jbake whenever changes happen.\n* `mvn jbake:inline` Same as watch, but also launches an embedded winstone container that by default listens on http:\/\/localhost:8080. Additionally you may want to use `-Djbake.port=X` `-Djbake.listenAddress=Y`.\n\nNOTE: `mvn install` will most likely fail on localhost, because it needs the OAuth token for GitHub.\n\n","new_contents":":title: scribble.github.io\n\n== Scribble Website\n\nimage:https:\/\/travis-ci.org\/scribble\/scribble.github.io.svg?branch=pages[\"Build Status\", link=\"https:\/\/travis-ci.org\/scribble\/scribble.github.io\"]\n\n=== Description\nWhen pushing a commit into this branch, the site is automatically built and published to http:\/\/www.scribble.org\nMost likely the content of the website you are looking for is link:src\/main\/jbake\/content\/[here].\n\n=== Building the site on localhost\n. `git clone https:\/\/github.com\/scribble\/scribble.github.io`\n. `git checkout pages`\n. Provided Maven is installed, run one of following commands:\n\n* `mvn jbake:generate` Simply runs jbake and generate the site into `target\/website` dir.\n* `mvn jbake:watch` Polls a folder and run jbake whenever changes happen.\n* `mvn jbake:inline` Same as watch, but also launches an embedded winstone container that by default listens on http:\/\/localhost:8080. Additionally you may want to use `-Djbake.port=X` `-Djbake.listenAddress=Y`.\n\nNOTE: `mvn install` will most likely fail on localhost, because it needs the OAuth token for GitHub.\n\n\n","subject":"Test update to check publication of website","message":"Test update to check publication of website\n","lang":"AsciiDoc","license":"apache-2.0","repos":"scribble\/scribble.github.io,scribble\/scribble.github.io,scribble\/scribble.github.io,scribble\/scribble.github.io,scribble\/scribble.github.io"} {"commit":"8440f05ee0332eec50dfa82094538f9be911c8d8","old_file":"docs\/index.adoc","new_file":"docs\/index.adoc","old_contents":"= RecordTrac Documentation\n\n{% macro link(underscore_name) %}\nlink:{{ underscore_name }}.html[{{titleize(underscore_name)}}]\n{% endmacro %}\n\n== Welcome\n\nThis is the home page for documentation for RecordTrac app.\n\nNOTE: For help contact ...\n\n== What This Is\n\n* {{ link('overview-of-app') }}\n* {{ link('why-it-was-built') }}\n* {{ link('research-and-references') }}\n* {{ link('principles') }}\n\n== How Is This Built\n\nLearn about the technical details of implementation so you can see what's involved.\n\n\n== API Documentation\n\n* {{ link('api-documentation') }}\n\n== Developer Documentation\n\nHow to modify and develop the app's source code.\n\n=== Source Code\n\n* https:\/\/github.com\/codeforamerica\/public-records[Source Code (Github)]\n* https:\/\/github.com\/codeforamerica\/public-records\/issues[Issue Tracker (Github)]\n\n=== Developer Docs\n\n* {{ link('db-helpers') }}\n\n","new_contents":"= RecordTrac Documentation\n\n{% macro link(underscore_name) -%}\nlink:{{ underscore_name }}.html[{{titleize(underscore_name)}}]\n{% endmacro -%}\n\n== Welcome\n\nThis is the home page for documentation for RecordTrac app.\n\nNOTE: For help contact ...\n\n== What This Is\n\n* {{ link('overview-of-app') }}\n* {{ link('why-it-was-built') }}\n* {{ link('research-and-references') }}\n* {{ link('principles') }}\n\n== How Is This Built\n\nLearn about the technical details of implementation so you can see what's involved.\n\n\n== API Documentation\n\n* {{ link('api-documentation') }}\n\n== Developer Documentation\n\nHow to modify and develop the app's source code.\n\n=== Source Code\n\n* https:\/\/github.com\/codeforamerica\/public-records[Source Code (Github)]\n* https:\/\/github.com\/codeforamerica\/public-records\/issues[Issue Tracker (Github)]\n\n=== Developer Docs\n\n* {{ link('db-helpers') }}\n\n","subject":"Fix issue with bulleted lists.","message":"Fix issue with bulleted lists.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"CityOfNewYork\/NYCOpenRecords,CityOfNewYork\/NYCOpenRecords,CityOfNewYork\/NYCOpenRecords,CityOfNewYork\/NYCOpenRecords,CityOfNewYork\/NYCOpenRecords"} {"commit":"ac741fc514ecf286bab893794e14aae73a1ecddf","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= CrashBurnFree\n\nCrashBurnFree is a free crash reporting tool for Java (and potentially other languages).\nThe name is a pun, as (a) it's _free_ to use and modify and (b) one over-arching goal of Software Checking Tools \nis to _free_ you from crashing and burning...\n\nIt is composed of the following sub-projects:\n\n. javaclient - the Java client code; no external dependencies\n. javaserver - an implementation of a Java EE (REST JAXRS) server\n","new_contents":"= CrashBurnFree\n\nCrashBurnFree is a free crash reporting tool for Java (and potentially other languages).\nThe name is a pun, as (a) it's _free_ to use and modify and (b) one over-arching goal of Software Checking Tools \nis to _free_ you from crashing and burning...\n\nIt is composed of the following sub-projects:\n\n. javaclient - the Java client code; no external dependencies\n. javaserver - an implementation of a Java EE (REST JAXRS) server\n\nStatus: javaclient seems to \"work\", but javaserver is, ahem, not quite\nfinished. Or at least not tried. And, there needs to be a \"common\"\nlibrary project for code shared between them.\n","subject":"Bring into synch with reality","message":"Bring into synch with reality\n","lang":"AsciiDoc","license":"bsd-2-clause","repos":"IanDarwin\/CrashBurnFree,IanDarwin\/CrashBurnFree"} {"commit":"a419d6562d40801ec7b833f0d6a3d9e3b5c25486","old_file":"CHANGES.adoc","new_file":"CHANGES.adoc","old_contents":"= Changelog\n\n== Version 0.3.0\n\nDate: unreleased\n\n- First version splitted from monolitic buddy package.","new_contents":"= Changelog\n\n== Version 0.4.0\n\nDate: unreleased\n\n- Replace record usage in kdf ns with reify.\n- Rename kdf protocol from KDFType to IKDF\n- Rename kdf protocol method names to more consistent ones.\n- Add support for nio ByteBuffer for kdf.\n\n== Version 0.3.0\n\nDate: 2015-01-18\n\n- First version splitted from monolitic buddy package.","subject":"Update changelog with latest changes on kdf.","message":"Update changelog with latest changes on kdf.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"funcool\/buddy-core,funcool\/buddy-core"} {"commit":"3a8590cb0ba2e63bdc606f8109a26ddd95b476d9","old_file":"docs\/dashboards.asciidoc","new_file":"docs\/dashboards.asciidoc","old_contents":"[[sample-dashboards]]\n== Sample dashboards\n\nIn order to make it as easy as possible to get application performance insights\nfrom packet data, we provide a few sample Kibana dashboards. The\ndashboards are maintained in this\nhttps:\/\/github.com\/elastic\/beats-dashboards[GitHub repository].\n\nLoad automatically all the sample dashboards in Kibana by following the TODO[steps].\n\n\nimage:.\/images\/packetbeat-statistics.png[Topbeat statistics]\n\nThese dashboards are provided as examples, we recommend that you\nhttp:\/\/www.elastic.co\/guide\/en\/kibana\/current\/dashboard.html[customize] them\nto your needs.\n","new_contents":"[[sample-dashboards]]\n== Sample dashboards\n\nIn order to make it as easy as possible to get application performance insights\nfrom packet data, we provide a few sample Kibana dashboards. The\ndashboards are maintained in this\nhttps:\/\/github.com\/elastic\/beats-dashboards[GitHub repository], which also\nincludes instructions for loading them.\n\nLoad automatically all the sample dashboards in Kibana by following the TODO[steps].\n\n\nimage:.\/images\/packetbeat-statistics.png[Topbeat statistics]\n\nThese dashboards are provided as examples, we recommend that you\nhttp:\/\/www.elastic.co\/guide\/en\/kibana\/current\/dashboard.html[customize] them\nto your needs.\n","subject":"Add back the old text","message":"Add back the old text\n","lang":"AsciiDoc","license":"mit","repos":"yapdns\/yapdnsbeat,yapdns\/yapdnsbeat"} {"commit":"74d9c8f5cf6a4de1950cb54b851760c6919e1ab5","old_file":"docs\/reference\/index.asciidoc","new_file":"docs\/reference\/index.asciidoc","old_contents":"[[elasticsearch-reference]]\n= Elasticsearch Reference\n\n:version: 3.0.0-beta1\n:major-version: 3.x\n:branch: 3.0\n:jdk: 1.8.0_25\n:defguide: https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/guide\/current\n:plugins: https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/plugins\/master\n:issue: https:\/\/github.com\/elastic\/elasticsearch\/issues\n:pull: https:\/\/github.com\/elastic\/elasticsearch\/pull\n\ninclude::getting-started.asciidoc[]\n\ninclude::setup.asciidoc[]\n\ninclude::migration\/index.asciidoc[]\n\ninclude::api-conventions.asciidoc[]\n\ninclude::docs.asciidoc[]\n\ninclude::search.asciidoc[]\n\ninclude::aggregations.asciidoc[]\n\ninclude::indices.asciidoc[]\n\ninclude::cat.asciidoc[]\n\ninclude::cluster.asciidoc[]\n\ninclude::query-dsl.asciidoc[]\n\ninclude::mapping.asciidoc[]\n\ninclude::analysis.asciidoc[]\n\ninclude::modules.asciidoc[]\n\ninclude::index-modules.asciidoc[]\n\ninclude::testing.asciidoc[]\n\ninclude::glossary.asciidoc[]\n\n\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n include::release-notes.asciidoc[]\n\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n\ninclude::redirects.asciidoc[]\n\n\n\n\n","new_contents":"[[elasticsearch-reference]]\n= Elasticsearch Reference\n\n:version: 3.0.0-beta1\n:major-version: 3.x\n:branch: 3.0\n:jdk: 1.8.0_25\n:defguide: https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/guide\/current\n:plugins: https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/plugins\/master\n:issue: https:\/\/github.com\/elastic\/elasticsearch\/issues\/\n:pull: https:\/\/github.com\/elastic\/elasticsearch\/pull\/\n\ninclude::getting-started.asciidoc[]\n\ninclude::setup.asciidoc[]\n\ninclude::migration\/index.asciidoc[]\n\ninclude::api-conventions.asciidoc[]\n\ninclude::docs.asciidoc[]\n\ninclude::search.asciidoc[]\n\ninclude::aggregations.asciidoc[]\n\ninclude::indices.asciidoc[]\n\ninclude::cat.asciidoc[]\n\ninclude::cluster.asciidoc[]\n\ninclude::query-dsl.asciidoc[]\n\ninclude::mapping.asciidoc[]\n\ninclude::analysis.asciidoc[]\n\ninclude::modules.asciidoc[]\n\ninclude::index-modules.asciidoc[]\n\ninclude::testing.asciidoc[]\n\ninclude::glossary.asciidoc[]\n\n\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n include::release-notes.asciidoc[]\n\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n\ninclude::redirects.asciidoc[]\n\n\n\n\n","subject":"Fix :issue: and :pull: asciidoc replacements","message":"Docs: Fix :issue: and :pull: asciidoc replacements\n\nCloses #14922\n","lang":"AsciiDoc","license":"apache-2.0","repos":"clintongormley\/elasticsearch,diendt\/elasticsearch,avikurapati\/elasticsearch,obourgain\/elasticsearch,s1monw\/elasticsearch,i-am-Nathan\/elasticsearch,IanvsPoplicola\/elasticsearch,martinstuga\/elasticsearch,vroyer\/elasticassandra,rmuir\/elasticsearch,dongjoon-hyun\/elasticsearch,diendt\/elasticsearch,LewayneNaidoo\/elasticsearch,mjason3\/elasticsearch,mmaracic\/elasticsearch,davidvgalbraith\/elasticsearch,spiegela\/elasticsearch,strapdata\/elassandra5-rc,myelin\/elasticsearch,lks21c\/elasticsearch,fred84\/elasticsearch,MisterAndersen\/elasticsearch,liweinan0423\/elasticsearch,markharwood\/elasticsearch,nknize\/elasticsearch,lks21c\/elasticsearch,vroyer\/elassandra,Stacey-Gammon\/elasticsearch,rajanm\/elasticsearch,i-am-Nathan\/elasticsearch,episerver\/elasticsearch,clintongormley\/elasticsearch,scorpionvicky\/elasticsearch,rajanm\/elasticsearch,henakamaMSFT\/elasticsearch,rajanm\/elasticsearch,xuzha\/elasticsearch,artnowo\/elasticsearch,geidies\/elasticsearch,uschindler\/elasticsearch,AndreKR\/elasticsearch,geidies\/elasticsearch,wangtuo\/elasticsearch,mortonsykes\/elasticsearch,glefloch\/elasticsearch,davidvgalbraith\/elasticsearch,snikch\/elasticsearch,polyfractal\/elasticsearch,bawse\/elasticsearch,trangvh\/elasticsearch,brandonkearby\/elasticsearch,xuzha\/elasticsearch,camilojd\/elasticsearch,alexshadow007\/elasticsearch,polyfractal\/elasticsearch,winstonewert\/elasticsearch,tebriel\/elasticsearch,brandonkearby\/elasticsearch,brandonkearby\/elasticsearch,jbertouch\/elasticsearch,JervyShi\/elasticsearch,qwerty4030\/elasticsearch,alexshadow007\/elasticsearch,obourgain\/elasticsearch,a2lin\/elasticsearch,StefanGor\/elasticsearch,Shepard1212\/elasticsearch,camilojd\/elasticsearch,nknize\/elasticsearch,fforbeck\/elasticsearch,fred84\/elasticsearch,jbertouch\/elasticsearch,MaineC\/elasticsearch,dpursehouse\/elasticsearch,fforbeck\/elasticsearch,markwalkom\/elasticsearch,F0lha\/elasticsearch,mmaracic\/elasticsearch,fred84\/elasticsearch,glefloch\/elasticsearch,coding0011\/elasticsearch,masaruh\/elasticsearch,snikch\/elasticsearch,fred84\/elasticsearch,C-Bish\/elasticsearch,gingerwizard\/elasticsearch,lks21c\/elasticsearch,lks21c\/elasticsearch,brandonkearby\/elasticsearch,IanvsPoplicola\/elasticsearch,bawse\/elasticsearch,i-am-Nathan\/elasticsearch,wangtuo\/elasticsearch,nazarewk\/elasticsearch,andrejserafim\/elasticsearch,gfyoung\/elasticsearch,clintongormley\/elasticsearch,Helen-Zhao\/elasticsearch,palecur\/elasticsearch,myelin\/elasticsearch,fernandozhu\/elasticsearch,a2lin\/elasticsearch,JackyMai\/elasticsearch,wuranbo\/elasticsearch,artnowo\/elasticsearch,mapr\/elasticsearch,nazarewk\/elasticsearch,wenpos\/elasticsearch,martinstuga\/elasticsearch,Shepard1212\/elasticsearch,geidies\/elasticsearch,ivansun1010\/elasticsearch,ESamir\/elasticsearch,uschindler\/elasticsearch,trangvh\/elasticsearch,obourgain\/elasticsearch,LewayneNaidoo\/elasticsearch,GlenRSmith\/elasticsearch,gingerwizard\/elasticsearch,rmuir\/elasticsearch,kaneshin\/elasticsearch,wuranbo\/elasticsearch,mikemccand\/elasticsearch,JackyMai\/elasticsearch,camilojd\/elasticsearch,maddin2016\/elasticsearch,gmarz\/elasticsearch,F0lha\/elasticsearch,rajanm\/elasticsearch,dongjoon-hyun\/elasticsearch,yanjunh\/elasticsearch,JSCooke\/elasticsearch,LewayneNaidoo\/elasticsearch,njlawton\/elasticsearch,geidies\/elasticsearch,episerver\/elasticsearch,StefanGor\/elasticsearch,gingerwizard\/elasticsearch,camilojd\/elasticsearch,jchampion\/elasticsearch,robin13\/elasticsearch,markharwood\/elasticsearch,masaruh\/elasticsearch,jpountz\/elasticsearch,shreejay\/elasticsearch,qwerty4030\/elasticsearch,girirajsharma\/elasticsearch,glefloch\/elasticsearch,nilabhsagar\/elasticsearch,elasticdog\/elasticsearch,spiegela\/elasticsearch,clintongormley\/elasticsearch,obourgain\/elasticsearch,F0lha\/elasticsearch,markwalkom\/elasticsearch,wenpos\/elasticsearch,nknize\/elasticsearch,xuzha\/elasticsearch,pozhidaevak\/elasticsearch,cwurm\/elasticsearch,mikemccand\/elasticsearch,ivansun1010\/elasticsearch,pozhidaevak\/elasticsearch,wuranbo\/elasticsearch,masaruh\/elasticsearch,henakamaMSFT\/elasticsearch,jpountz\/elasticsearch,scorpionvicky\/elasticsearch,mjason3\/elasticsearch,nomoa\/elasticsearch,naveenhooda2000\/elasticsearch,naveenhooda2000\/elasticsearch,pozhidaevak\/elasticsearch,JSCooke\/elasticsearch,mohit\/elasticsearch,umeshdangat\/elasticsearch,winstonewert\/elasticsearch,alexshadow007\/elasticsearch,ivansun1010\/elasticsearch,yynil\/elasticsearch,vroyer\/elasticassandra,avikurapati\/elasticsearch,mjason3\/elasticsearch,diendt\/elasticsearch,GlenRSmith\/elasticsearch,trangvh\/elasticsearch,ivansun1010\/elasticsearch,gingerwizard\/elasticsearch,strapdata\/elassandra5-rc,ESamir\/elasticsearch,jimczi\/elasticsearch,F0lha\/elasticsearch,alexshadow007\/elasticsearch,a2lin\/elasticsearch,winstonewert\/elasticsearch,fernandozhu\/elasticsearch,HonzaKral\/elasticsearch,nknize\/elasticsearch,jbertouch\/elasticsearch,trangvh\/elasticsearch,s1monw\/elasticsearch,scottsom\/elasticsearch,henakamaMSFT\/elasticsearch,ricardocerq\/elasticsearch,maddin2016\/elasticsearch,cwurm\/elasticsearch,jchampion\/elasticsearch,jimczi\/elasticsearch,Shepard1212\/elasticsearch,camilojd\/elasticsearch,wenpos\/elasticsearch,diendt\/elasticsearch,jimczi\/elasticsearch,jbertouch\/elasticsearch,markharwood\/elasticsearch,palecur\/elasticsearch,mapr\/elasticsearch,rhoml\/elasticsearch,wangtuo\/elasticsearch,diendt\/elasticsearch,mapr\/elasticsearch,markharwood\/elasticsearch,snikch\/elasticsearch,yanjunh\/elasticsearch,myelin\/elasticsearch,wenpos\/elasticsearch,tebriel\/elasticsearch,mapr\/elasticsearch,masaruh\/elasticsearch,alexshadow007\/elasticsearch,dpursehouse\/elasticsearch,liweinan0423\/elasticsearch,geidies\/elasticsearch,henakamaMSFT\/elasticsearch,vroyer\/elassandra,martinstuga\/elasticsearch,nomoa\/elasticsearch,Stacey-Gammon\/elasticsearch,polyfractal\/elasticsearch,gfyoung\/elasticsearch,qwerty4030\/elasticsearch,sneivandt\/elasticsearch,Shepard1212\/elasticsearch,njlawton\/elasticsearch,C-Bish\/elasticsearch,naveenhooda2000\/elasticsearch,winstonewert\/elasticsearch,JSCooke\/elasticsearch,dpursehouse\/elasticsearch,IanvsPoplicola\/elasticsearch,jbertouch\/elasticsearch,umeshdangat\/elasticsearch,sneivandt\/elasticsearch,gmarz\/elasticsearch,snikch\/elasticsearch,coding0011\/elasticsearch,jbertouch\/elasticsearch,yanjunh\/elasticsearch,trangvh\/elasticsearch,JackyMai\/elasticsearch,elasticdog\/elasticsearch,ZTE-PaaS\/elasticsearch,nazarewk\/elasticsearch,xuzha\/elasticsearch,dpursehouse\/elasticsearch,mmaracic\/elasticsearch,zkidkid\/elasticsearch,awislowski\/elasticsearch,scorpionvicky\/elasticsearch,nilabhsagar\/elasticsearch,coding0011\/elasticsearch,rajanm\/elasticsearch,rmuir\/elasticsearch,glefloch\/elasticsearch,strapdata\/elassandra,nomoa\/elasticsearch,mortonsykes\/elasticsearch,naveenhooda2000\/elasticsearch,umeshdangat\/elasticsearch,LeoYao\/elasticsearch,masaruh\/elasticsearch,a2lin\/elasticsearch,nomoa\/elasticsearch,mmaracic\/elasticsearch,cwurm\/elasticsearch,coding0011\/elasticsearch,jchampion\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mikemccand\/elasticsearch,jprante\/elasticsearch,mohit\/elasticsearch,LewayneNaidoo\/elasticsearch,dongjoon-hyun\/elasticsearch,kalimatas\/elasticsearch,martinstuga\/elasticsearch,robin13\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,davidvgalbraith\/elasticsearch,MisterAndersen\/elasticsearch,kaneshin\/elasticsearch,mortonsykes\/elasticsearch,StefanGor\/elasticsearch,vroyer\/elassandra,mikemccand\/elasticsearch,zkidkid\/elasticsearch,GlenRSmith\/elasticsearch,jimczi\/elasticsearch,naveenhooda2000\/elasticsearch,coding0011\/elasticsearch,xuzha\/elasticsearch,AndreKR\/elasticsearch,girirajsharma\/elasticsearch,LewayneNaidoo\/elasticsearch,cwurm\/elasticsearch,bawse\/elasticsearch,nezirus\/elasticsearch,jchampion\/elasticsearch,andrejserafim\/elasticsearch,a2lin\/elasticsearch,scorpionvicky\/elasticsearch,gfyoung\/elasticsearch,avikurapati\/elasticsearch,strapdata\/elassandra,kalimatas\/elasticsearch,sneivandt\/elasticsearch,yynil\/elasticsearch,scottsom\/elasticsearch,HonzaKral\/elasticsearch,nezirus\/elasticsearch,JervyShi\/elasticsearch,gingerwizard\/elasticsearch,markharwood\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mapr\/elasticsearch,episerver\/elasticsearch,fforbeck\/elasticsearch,Shepard1212\/elasticsearch,MaineC\/elasticsearch,jpountz\/elasticsearch,mikemccand\/elasticsearch,davidvgalbraith\/elasticsearch,liweinan0423\/elasticsearch,C-Bish\/elasticsearch,yanjunh\/elasticsearch,mmaracic\/elasticsearch,mortonsykes\/elasticsearch,geidies\/elasticsearch,LeoYao\/elasticsearch,gmarz\/elasticsearch,awislowski\/elasticsearch,polyfractal\/elasticsearch,dongjoon-hyun\/elasticsearch,markwalkom\/elasticsearch,maddin2016\/elasticsearch,fernandozhu\/elasticsearch,wuranbo\/elasticsearch,mortonsykes\/elasticsearch,AndreKR\/elasticsearch,rhoml\/elasticsearch,yynil\/elasticsearch,andrejserafim\/elasticsearch,jchampion\/elasticsearch,ESamir\/elasticsearch,jchampion\/elasticsearch,liweinan0423\/elasticsearch,spiegela\/elasticsearch,ZTE-PaaS\/elasticsearch,nezirus\/elasticsearch,andrejserafim\/elasticsearch,JSCooke\/elasticsearch,lks21c\/elasticsearch,nezirus\/elasticsearch,rhoml\/elasticsearch,dpursehouse\/elasticsearch,gmarz\/elasticsearch,strapdata\/elassandra5-rc,ricardocerq\/elasticsearch,nilabhsagar\/elasticsearch,yanjunh\/elasticsearch,MisterAndersen\/elasticsearch,bawse\/elasticsearch,kaneshin\/elasticsearch,rlugojr\/elasticsearch,MaineC\/elasticsearch,rlugojr\/elasticsearch,gfyoung\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,martinstuga\/elasticsearch,henakamaMSFT\/elasticsearch,fforbeck\/elasticsearch,markwalkom\/elasticsearch,wangtuo\/elasticsearch,zkidkid\/elasticsearch,andrejserafim\/elasticsearch,myelin\/elasticsearch,Stacey-Gammon\/elasticsearch,nomoa\/elasticsearch,scorpionvicky\/elasticsearch,ZTE-PaaS\/elasticsearch,Stacey-Gammon\/elasticsearch,strapdata\/elassandra,nknize\/elasticsearch,jprante\/elasticsearch,jprante\/elasticsearch,avikurapati\/elasticsearch,yynil\/elasticsearch,davidvgalbraith\/elasticsearch,glefloch\/elasticsearch,spiegela\/elasticsearch,uschindler\/elasticsearch,diendt\/elasticsearch,HonzaKral\/elasticsearch,JervyShi\/elasticsearch,snikch\/elasticsearch,ivansun1010\/elasticsearch,maddin2016\/elasticsearch,strapdata\/elassandra5-rc,gfyoung\/elasticsearch,pozhidaevak\/elasticsearch,HonzaKral\/elasticsearch,uschindler\/elasticsearch,rmuir\/elasticsearch,artnowo\/elasticsearch,ESamir\/elasticsearch,LeoYao\/elasticsearch,ricardocerq\/elasticsearch,avikurapati\/elasticsearch,fred84\/elasticsearch,rlugojr\/elasticsearch,sreeramjayan\/elasticsearch,rlugojr\/elasticsearch,ivansun1010\/elasticsearch,jpountz\/elasticsearch,scottsom\/elasticsearch,liweinan0423\/elasticsearch,wangtuo\/elasticsearch,girirajsharma\/elasticsearch,girirajsharma\/elasticsearch,awislowski\/elasticsearch,GlenRSmith\/elasticsearch,girirajsharma\/elasticsearch,C-Bish\/elasticsearch,ricardocerq\/elasticsearch,xuzha\/elasticsearch,rmuir\/elasticsearch,jimczi\/elasticsearch,myelin\/elasticsearch,F0lha\/elasticsearch,dongjoon-hyun\/elasticsearch,s1monw\/elasticsearch,Helen-Zhao\/elasticsearch,njlawton\/elasticsearch,sreeramjayan\/elasticsearch,AndreKR\/elasticsearch,artnowo\/elasticsearch,awislowski\/elasticsearch,fforbeck\/elasticsearch,JackyMai\/elasticsearch,winstonewert\/elasticsearch,ESamir\/elasticsearch,maddin2016\/elasticsearch,StefanGor\/elasticsearch,GlenRSmith\/elasticsearch,IanvsPoplicola\/elasticsearch,davidvgalbraith\/elasticsearch,markwalkom\/elasticsearch,fernandozhu\/elasticsearch,polyfractal\/elasticsearch,Stacey-Gammon\/elasticsearch,JackyMai\/elasticsearch,njlawton\/elasticsearch,Helen-Zhao\/elasticsearch,kalimatas\/elasticsearch,tebriel\/elasticsearch,nazarewk\/elasticsearch,jprante\/elasticsearch,sneivandt\/elasticsearch,i-am-Nathan\/elasticsearch,Helen-Zhao\/elasticsearch,yynil\/elasticsearch,sreeramjayan\/elasticsearch,njlawton\/elasticsearch,umeshdangat\/elasticsearch,mjason3\/elasticsearch,gingerwizard\/elasticsearch,mapr\/elasticsearch,rhoml\/elasticsearch,AndreKR\/elasticsearch,spiegela\/elasticsearch,shreejay\/elasticsearch,mohit\/elasticsearch,rhoml\/elasticsearch,JervyShi\/elasticsearch,scottsom\/elasticsearch,sreeramjayan\/elasticsearch,mohit\/elasticsearch,kaneshin\/elasticsearch,strapdata\/elassandra,sneivandt\/elasticsearch,kalimatas\/elasticsearch,MaineC\/elasticsearch,qwerty4030\/elasticsearch,clintongormley\/elasticsearch,elasticdog\/elasticsearch,elasticdog\/elasticsearch,LeoYao\/elasticsearch,IanvsPoplicola\/elasticsearch,s1monw\/elasticsearch,andrejserafim\/elasticsearch,shreejay\/elasticsearch,ZTE-PaaS\/elasticsearch,tebriel\/elasticsearch,palecur\/elasticsearch,JervyShi\/elasticsearch,episerver\/elasticsearch,kalimatas\/elasticsearch,markwalkom\/elasticsearch,umeshdangat\/elasticsearch,LeoYao\/elasticsearch,fernandozhu\/elasticsearch,pozhidaevak\/elasticsearch,sreeramjayan\/elasticsearch,jpountz\/elasticsearch,qwerty4030\/elasticsearch,rajanm\/elasticsearch,shreejay\/elasticsearch,ricardocerq\/elasticsearch,JervyShi\/elasticsearch,uschindler\/elasticsearch,obourgain\/elasticsearch,polyfractal\/elasticsearch,episerver\/elasticsearch,clintongormley\/elasticsearch,gingerwizard\/elasticsearch,i-am-Nathan\/elasticsearch,bawse\/elasticsearch,ESamir\/elasticsearch,markharwood\/elasticsearch,rlugojr\/elasticsearch,s1monw\/elasticsearch,nilabhsagar\/elasticsearch,girirajsharma\/elasticsearch,LeoYao\/elasticsearch,JSCooke\/elasticsearch,StefanGor\/elasticsearch,shreejay\/elasticsearch,kaneshin\/elasticsearch,Helen-Zhao\/elasticsearch,MisterAndersen\/elasticsearch,robin13\/elasticsearch,kaneshin\/elasticsearch,vroyer\/elasticassandra,snikch\/elasticsearch,brandonkearby\/elasticsearch,F0lha\/elasticsearch,jprante\/elasticsearch,zkidkid\/elasticsearch,nezirus\/elasticsearch,strapdata\/elassandra,tebriel\/elasticsearch,ZTE-PaaS\/elasticsearch,C-Bish\/elasticsearch,elasticdog\/elasticsearch,palecur\/elasticsearch,MaineC\/elasticsearch,jpountz\/elasticsearch,cwurm\/elasticsearch,scottsom\/elasticsearch,sreeramjayan\/elasticsearch,strapdata\/elassandra5-rc,wuranbo\/elasticsearch,awislowski\/elasticsearch,rmuir\/elasticsearch,yynil\/elasticsearch,artnowo\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,LeoYao\/elasticsearch,zkidkid\/elasticsearch,wenpos\/elasticsearch,mohit\/elasticsearch,rhoml\/elasticsearch,robin13\/elasticsearch,tebriel\/elasticsearch,martinstuga\/elasticsearch,mjason3\/elasticsearch,nilabhsagar\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,AndreKR\/elasticsearch,MisterAndersen\/elasticsearch,gmarz\/elasticsearch,palecur\/elasticsearch,camilojd\/elasticsearch,robin13\/elasticsearch,nazarewk\/elasticsearch,mmaracic\/elasticsearch"} {"commit":"44496f53689106a1ba8827f7e8eb928988e94f5c","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Edge\n\nPlease see the link:app\/README.adoc[app\/README.adoc] for building and running the app.\n","new_contents":"= Edge\n\nPlease see the <> for building and running the app.\n","subject":"Use xref syntax for document links","message":"Use xref syntax for document links\n\nThis works across different output types, and is the preferred form for\r\ninterdocument links like this.","lang":"AsciiDoc","license":"mit","repos":"juxt\/edge,juxt\/edge"} {"commit":"29b780cbb4ce8127db4c09e696029a5fdde55370","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Minimal-J\n\nJava - but small.\n\nimage::doc\/frontends.png[]\n\nMinimal-J applications are\n\n* Responsive to use on every device\n* Straight forward to specify and implement and therefore\n* Easy to plan and manage\n\n=== Idea\n\nBusiness applications tend to get complex and complicated. Minimal-J prevents this by setting clear rules how an application should behave and how it should be implemented.\n\nMinimal applications may not always look the same. But the UI concepts never change. There are no surprises for the user.\n\n== Technical Features\n\n* Independent of the used UI technology. Implementations for Web \/ Mobile \/ Desktop.\n* ORM persistence layer for Maria DB or in memory DB. Transactions and Authorization supported.\n* Small: The minimalj.jar is still < 1MB\n* Very few dependencies\n* Applications can run standalone (like SpringBoot)\n\n== Documentation\n\n* link:doc\/user_guide\/user_guide.adoc[Minimal user guide] User guide for Minimal-J applications.\n* link:doc\/topics.adoc[Tutorial and examples] Informations for developers.\n* link:doc\/release_notes.adoc[Release Notes]\n\n== Hello World\n\nHow to implement Hello World in Minimal-J:\n\nlink:_includes\/ex-video.adoc[0VHz7gv6TpA]\n\n=== Contact\n\n* Bruno Eberhard, mailto:minimalj@hispeed.ch[minimalj@hispeed.ch] ","new_contents":"= Minimal-J\n\nJava - but small.\n\nimage::doc\/frontends.png[]\n\nMinimal-J applications are\n\n* Responsive to use on every device\n* Straight forward to specify and implement and therefore\n* Easy to plan and manage\n\n=== Idea\n\nBusiness applications tend to get complex and complicated. Minimal-J prevents this by setting clear rules how an application should behave and how it should be implemented.\n\nMinimal applications may not always look the same. But the UI concepts never change. There are no surprises for the user.\n\n== Technical Features\n\n* Independent of the used UI technology. Implementations for Web \/ Mobile \/ Desktop.\n* ORM persistence layer for Maria DB or in memory DB. Transactions and Authorization supported.\n* Small: The minimalj.jar is still < 1MB\n* Very few dependencies\n* Applications can run standalone (like SpringBoot)\n\n== Documentation\n\n* link:doc\/user_guide\/user_guide.adoc[Minimal user guide] User guide for Minimal-J applications.\n* link:doc\/topics.adoc[Tutorial and examples] Informations for developers.\n* link:doc\/release_notes.adoc[Release Notes]\n\n== Hello World\n\nHow to implement Hello World in Minimal-J:\n\nvideo::0VHz7gv6TpA[youtube]\n\n=== Contact\n\n* Bruno Eberhard, mailto:minimalj@hispeed.ch[minimalj@hispeed.ch] ","subject":"Include Hello World Youtube video","message":"Include Hello World Youtube video","lang":"AsciiDoc","license":"apache-2.0","repos":"BrunoEberhard\/minimal-j,BrunoEberhard\/minimal-j,BrunoEberhard\/minimal-j"} {"commit":"3b42b58688347f26d3fd0b5c591507493aeeb480","old_file":"docs\/index.asciidoc","new_file":"docs\/index.asciidoc","old_contents":"[[beats-reference]]\n= Beats Platform Reference\n:ES-version: 1.7.2\n:Kibana-version: 4.1.2\n:Dashboards-version: 1.0.0-beta3\n\ninclude::.\/overview.asciidoc[]\n\ninclude::.\/gettingstarted.asciidoc[]\n\ninclude::.\/configuration.asciidoc[]\n\ninclude::.\/command-line.asciidoc[]\n\ninclude::.\/https.asciidoc[]\n\ninclude::.\/newbeat.asciidoc[]\n","new_contents":"[[beats-reference]]\n= Beats Platform Reference\n:ES-version: 1.7.3\n:Kibana-version: 4.1.2\n:Dashboards-version: 1.0.0-beta4\n\ninclude::.\/overview.asciidoc[]\n\ninclude::.\/gettingstarted.asciidoc[]\n\ninclude::.\/configuration.asciidoc[]\n\ninclude::.\/command-line.asciidoc[]\n\ninclude::.\/https.asciidoc[]\n\ninclude::.\/newbeat.asciidoc[]\n","subject":"Update elasticsearch to version 1.7.3 and beat dashboards to beta4 branch.","message":"Update elasticsearch to version 1.7.3 and beat dashboards to beta4 branch.\n","lang":"AsciiDoc","license":"mit","repos":"yapdns\/yapdnsbeat,yapdns\/yapdnsbeat"} {"commit":"3f1612c2093a0512db098abc630311527f99a418","old_file":"doc\/todo.adoc","new_file":"doc\/todo.adoc","old_contents":"= To-Do List\n\n- mock_cone_detector creates infinite area and overflows h\n- (*DONE*) new waypoints shorter than old don't delete existing waypoints\n- adjust waypoints for start position and cone position\n- cone area goes down when very close to cone\n- (*DONE*) parameterize throttle and steering PWM values\n- touch sensor does not work\n- (*DONE*) cone detection in bright light does not work\n- GUIDED mode does not work\n- Encode PWM values or range set to use in the waypoints file\n- If waypoint encountered before cone is seen, rover goes into HOLD mode\nwith no recovery. Needs to be fixed.\n\n== Possible To-Do\n\n- (*DONE*) Change from using WP_SPEED to CRUISE_SPEED. (Seems to be used by Vicky,\nwhile WP_SPEED is not.)\n- Have a way of manually triggering parameter reload\n\n== Notes\n\nMAV_CMD_DO_SET_HOME appears to reset the map origin, as well as zero the\noffset between the map origin and base_link (for \/mavros\/local_position\/pose\nand \/mavros\/local_position\/odom).\n","new_contents":"= To-Do List\n\n- mock_cone_detector creates infinite area and overflows h\n- (*DONE*) new waypoints shorter than old don't delete existing waypoints\n- adjust waypoints for start position and cone position\n- cone area goes down when very close to cone\n- (*DONE*) parameterize throttle and steering PWM values\n- (*DONE*) touch sensor does not work\n- (*DONE*) cone detection in bright light does not work\n- GUIDED mode does not work\n- (*DONE*) Encode PWM values or range set to use in the waypoints file\n- If waypoint encountered before cone is seen, rover goes into HOLD mode\nwith no recovery. Needs to be fixed.\n\n== Possible To-Do\n\n- (*DONE*) Change from using WP_SPEED to CRUISE_SPEED. (Seems to be used by Vicky,\nwhile WP_SPEED is not.)\n- Have a way of manually triggering parameter reload\n\n== Notes\n\nMAV_CMD_DO_SET_HOME appears to reset the map origin, as well as zero the\noffset between the map origin and base_link (for \/mavros\/local_position\/pose\nand \/mavros\/local_position\/odom).\n","subject":"Update to-do document based on progress from yesterday","message":"Update to-do document based on progress from yesterday\n","lang":"AsciiDoc","license":"apache-2.0","repos":"ProgrammingRobotsStudyGroup\/robo_magellan,ProgrammingRobotsStudyGroup\/robo_magellan,ProgrammingRobotsStudyGroup\/robo_magellan,ProgrammingRobotsStudyGroup\/robo_magellan"} {"commit":"94241317b410e07f9ef5c22bd4f865dd19eecc3c","old_file":"content\/events\/2017\/clojurebridge-sanfrancisco.adoc","new_file":"content\/events\/2017\/clojurebridge-sanfrancisco.adoc","old_contents":"= ClojureBridge San Francisco\nClojureBridge San Francisco\n2017-09-16\n:jbake-type: event\n:jbake-edition: 2017\n:jbake-link: http:\/\/www.clojurebridge.org\/events\/2017-09-16-san-francisco\n:jbake-location: San Francisco, CA\n:jbake-start: 2017-09-15\n:jbake-end: 2017-09-16\n\nClojureBridge is a free 1-day workshop aimed at increasing the participation of women, trans-gener and non-binary gender individuals in the Clojure community. The workshop is intended for those new to programming as well as individuals with some programming experience who would like to explore programming using Clojure, a modern functional programming language.\n\nThe workshop will introduce participants to fundamental programming concepts and approaches.\n","new_contents":"= ClojureBridge San Francisco\nClojureBridge San Francisco\n2017-09-15\n:jbake-type: event\n:jbake-edition: 2017\n:jbake-link: http:\/\/www.clojurebridge.org\/events\/2017-09-15-san-francisco\n:jbake-location: San Francisco, CA\n:jbake-start: 2017-09-15\n:jbake-end: 2017-09-16\n\nClojureBridge is a free 1-day workshop aimed at increasing the participation of women, trans-gener and non-binary gender individuals in the Clojure community. The workshop is intended for those new to programming as well as individuals with some programming experience who would like to explore programming using Clojure, a modern functional programming language.\n\nThe workshop will introduce participants to fundamental programming concepts and approaches.\n","subject":"Update clojurebridge sf 2017 url","message":"Update clojurebridge sf 2017 url","lang":"AsciiDoc","license":"epl-1.0","repos":"clojure\/clojure-site"} {"commit":"79837fbf84c5957061b2430848106832c45d998a","old_file":"README.asciidoc","new_file":"README.asciidoc","old_contents":"TinkerPop3\n==========\n\nimage:https:\/\/raw.githubusercontent.com\/tinkerpop\/tinkerpop3\/master\/docs\/static\/images\/tinkerpop3-splash.png[TinkerPop3]\n\n * Build Project: `mvn clean install`\n * Build AsciiDocs: `mvn process-resources -Dasciidoc`\n * Deploy AsciiDocs: `mvn deploy -Dasciidoc`\n * Deploy JavaDocs: `mvn deploy -Djavadocs`\n\n[source,bash]\n----\n$ bin\/gremlin.sh\n\n \\,,,\/\n (o o)\n-----oOOo-(3)-oOOo-----\ngremlin>\n----","new_contents":"TinkerPop3\n==========\n\nimage:https:\/\/raw.githubusercontent.com\/tinkerpop\/tinkerpop3\/master\/docs\/static\/images\/tinkerpop3-splash.png[TinkerPop3]\n\n * Build Project: `mvn clean install`\n * Build AsciiDocs: `mvn process-resources -Dasciidoc`\n * Deploy AsciiDocs: `mvn deploy -Dasciidoc`\n * Deploy JavaDocs: `mvn deploy -Djavadoc-upload`\n\n[source,bash]\n----\n$ bin\/gremlin.sh\n\n \\,,,\/\n (o o)\n-----oOOo-(3)-oOOo-----\ngremlin>\n----","subject":"Update readme for deploying javadoc.","message":"Update readme for deploying javadoc.\n","lang":"AsciiDoc","license":"apache-2.0","repos":"mpollmeier\/tinkerpop3,RedSeal-co\/incubator-tinkerpop,edgarRd\/incubator-tinkerpop,gdelafosse\/incubator-tinkerpop,apache\/tinkerpop,robertdale\/tinkerpop,RedSeal-co\/incubator-tinkerpop,rmagen\/incubator-tinkerpop,apache\/tinkerpop,velo\/incubator-tinkerpop,n-tran\/incubator-tinkerpop,BrynCooke\/incubator-tinkerpop,mike-tr-adamson\/incubator-tinkerpop,apache\/tinkerpop,samiunn\/incubator-tinkerpop,mike-tr-adamson\/incubator-tinkerpop,apache\/tinkerpop,apache\/tinkerpop,apache\/tinkerpop,artem-aliev\/tinkerpop,artem-aliev\/tinkerpop,BrynCooke\/incubator-tinkerpop,RussellSpitzer\/incubator-tinkerpop,PommeVerte\/incubator-tinkerpop,vtslab\/incubator-tinkerpop,PommeVerte\/incubator-tinkerpop,jorgebay\/tinkerpop,BrynCooke\/incubator-tinkerpop,velo\/incubator-tinkerpop,apache\/incubator-tinkerpop,mike-tr-adamson\/incubator-tinkerpop,jorgebay\/tinkerpop,robertdale\/tinkerpop,Lab41\/tinkerpop3,pluradj\/incubator-tinkerpop,robertdale\/tinkerpop,rmagen\/incubator-tinkerpop,artem-aliev\/tinkerpop,gdelafosse\/incubator-tinkerpop,krlohnes\/tinkerpop,artem-aliev\/tinkerpop,vtslab\/incubator-tinkerpop,velo\/incubator-tinkerpop,krlohnes\/tinkerpop,RedSeal-co\/incubator-tinkerpop,RussellSpitzer\/incubator-tinkerpop,dalaro\/incubator-tinkerpop,apache\/incubator-tinkerpop,krlohnes\/tinkerpop,edgarRd\/incubator-tinkerpop,PommeVerte\/incubator-tinkerpop,pluradj\/incubator-tinkerpop,apache\/incubator-tinkerpop,newkek\/incubator-tinkerpop,krlohnes\/tinkerpop,Lab41\/tinkerpop3,apache\/tinkerpop,newkek\/incubator-tinkerpop,n-tran\/incubator-tinkerpop,newkek\/incubator-tinkerpop,pluradj\/incubator-tinkerpop,dalaro\/incubator-tinkerpop,mpollmeier\/tinkerpop3,jorgebay\/tinkerpop,n-tran\/incubator-tinkerpop,dalaro\/incubator-tinkerpop,robertdale\/tinkerpop,krlohnes\/tinkerpop,robertdale\/tinkerpop,edgarRd\/incubator-tinkerpop,gdelafosse\/incubator-tinkerpop,artem-aliev\/tinkerpop,samiunn\/incubator-tinkerpop,rmagen\/incubator-tinkerpop,vtslab\/incubator-tinkerpop,samiunn\/incubator-tinkerpop,jorgebay\/tinkerpop,RussellSpitzer\/incubator-tinkerpop"} {"commit":"e8e645e3cb5b18bc092763c17b949d741d82568f","old_file":"docs\/reference\/indices\/delete-index.asciidoc","new_file":"docs\/reference\/indices\/delete-index.asciidoc","old_contents":"[[indices-delete-index]]\n== Delete Index\n\nThe delete index API allows to delete an existing index.\n\n[source,js]\n--------------------------------------------------\n$ curl -XDELETE 'http:\/\/localhost:9200\/twitter\/'\n--------------------------------------------------\n\nThe above example deletes an index called `twitter`. Specifying an index,\nalias or wildcard expression is required.\n\nThe delete index API can also be applied to more than one index, or on\nall indices (be careful!) by using `_all` or `*` as index.\n\nIn order to disable allowing to delete indices via wildcards or `_all`,\nset `action.destructive_requires_name` setting in the config to `true`.\nThis setting can also be changed via the cluster update settings api.","new_contents":"[[indices-delete-index]]\n== Delete Index\n\nThe delete index API allows to delete an existing index.\n\n[source,js]\n--------------------------------------------------\n$ curl -XDELETE 'http:\/\/localhost:9200\/twitter\/'\n--------------------------------------------------\n\nThe above example deletes an index called `twitter`. Specifying an index,\nalias or wildcard expression is required.\n\nThe delete index API can also be applied to more than one index, by either using a comma separated list, or on all indices (be careful!) by using `_all` or `*` as index.\n\nIn order to disable allowing to delete indices via wildcards or `_all`,\nset `action.destructive_requires_name` setting in the config to `true`.\nThis setting can also be changed via the cluster update settings api.\n","subject":"Document index deletion using csv separated indices","message":"Document index deletion using csv separated indices","lang":"AsciiDoc","license":"apache-2.0","repos":"strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test,strapdata\/elassandra-test"} {"commit":"5242e04552fd46492cbdcf96a4b2e8f4302ec35a","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= flexy-pool\nAuthor \nv1.0.0, 2014-02-25\n\n:toc:\n:imagesdir: images\n:homepage: http:\/\/vladmihalcea.com\/\n\n== Introduction\n\nThe flexy-pool library brings adaptability to a given Connection Pool, allowing it to resize on demand.\nThis is very handy since most connection pools offer a limited set of dynamic configuration strategies.\n\n== Features \n\n* extensive connection pool support\n** http:\/\/docs.codehaus.org\/display\/BTM\/Home[Bitronix Transaction Manager]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP2]\n** http:\/\/www.mchange.com\/projects\/c3p0\/[C3P0]\n** http:\/\/jolbox.com\/[BoneCP]\n** http:\/\/brettwooldridge.github.io\/HikariCP\/[HikariCP]\n* statistics support\n** source connection acquiring time histogram\n** total connection acquiring time histogram\n** retries attempts histogram\n** maximum CP size histogram\n** connection request count histogram\n** connection lease time histogram\n\n== Documentation \n\nhttps:\/\/github.com\/vladmihalcea\/flexy-pool\/wiki\/Flexy-Pool-User-Guide[Flexy Pool User Guide]\n\n== 1.0 Release TODO list\n\n* explain jmx metrics and add real-life case study\n* Maven OSS release\n","new_contents":"= flexy-pool\nAuthor \nv1.0.0, 2014-02-25\n\n:homepage: http:\/\/vladmihalcea.com\/\n\n== Introduction\n\nThe flexy-pool library brings adaptability to a given Connection Pool, allowing it to resize on demand.\nThis is very handy since most connection pools offer a limited set of dynamic configuration strategies.\n\n== Features \n\n* extensive connection pool support\n** http:\/\/docs.codehaus.org\/display\/BTM\/Home[Bitronix Transaction Manager]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP]\n** http:\/\/commons.apache.org\/proper\/commons-dbcp\/[Apache DBCP2]\n** http:\/\/www.mchange.com\/projects\/c3p0\/[C3P0]\n** http:\/\/jolbox.com\/[BoneCP]\n** http:\/\/brettwooldridge.github.io\/HikariCP\/[HikariCP]\n* statistics support\n** source connection acquiring time histogram\n** total connection acquiring time histogram\n** retries attempts histogram\n** maximum CP size histogram\n** connection request count histogram\n** connection lease time histogram\n\n== Documentation \n\nhttps:\/\/github.com\/vladmihalcea\/flexy-pool\/wiki\/Flexy-Pool-User-Guide[Flexy Pool User Guide]\n\n== 1.0 Release TODO list\n\n* explain jmx metrics and add real-life case study\n* Maven OSS release\n","subject":"Remove toc and image ref","message":"Remove toc and image ref\n","lang":"AsciiDoc","license":"apache-2.0","repos":"mosoft521\/flexy-pool,wgpshashank\/flexy-pool,vladmihalcea\/flexy-pool"} {"commit":"5680f9f6fc908a366a2a098052b4d6c7af27b4e4","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Eclipse Microprofile Metrics\n\nThis specification aims at providing a unified way for Microprofile servers to\nexport Monitoring data (\"Telemetry\") to management agents and also a unified\nJava API, that all (application) programmers can use to expose their telemetry\ndata.\n\nFor the specification see http:spec\/metrics_spec.adoc[Metrics spec]\n\nFor discussions visit the https:\/\/groups.google.com\/forum\/#!forum\/microprofile[Microprofile Google group].","new_contents":"= Eclipse Microprofile Metrics\n\nThis specification aims at providing a unified way for Microprofile servers to\nexport Monitoring data (\"Telemetry\") to management agents and also a unified\nJava API, that all (application) programmers can use to expose their telemetry\ndata.\n\nFor the specification see link:spec\/metrics_spec.adoc[Metrics spec]\n\nFor discussions visit the https:\/\/groups.google.com\/forum\/#!forum\/microprofile[Microprofile Google group].","subject":"Use correct syntax for link to spec.","message":"Use correct syntax for link to spec.\n\nSigned-off-by: Heiko W. Rupp \n","lang":"AsciiDoc","license":"apache-2.0","repos":"raymondlam\/microprofile-metrics,Channyboy\/microprofile-metrics,Arjun-Sharma1\/microprofile-metrics,Arjun-Sharma1\/microprofile-metrics,Channyboy\/microprofile-metrics,raymondlam\/microprofile-metrics,pilhuhn\/microprofile-metrics,pilhuhn\/microprofile-metrics"} {"commit":"1f0aac07bfde75e9eccbe6400de88fac96195218","old_file":"modules\/serverless-about-collecting-data.adoc","new_file":"modules\/serverless-about-collecting-data.adoc","old_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * serverless\/serverless-support.adoc\n\n[id=\"serverless-about-collecting-data_{context}\"]\n= About collecting {ServerlessProductName} data\n\nYou can use the `oc adm must-gather` CLI command to collect information about your cluster, including features and objects associated with {ServerlessProductName}.\nTo collect {ServerlessProductName} data with `must-gather`, you must specify the {ServerlessProductName} image.\n\n.Procedure\n\n* Enter the command:\n+\n\n[source,terminal]\n----\n$ oc adm must-gather --image=registry.redhat.io\/openshift-serverless-1\/svls-must-gather-rhel8\n----\n","new_contents":"\/\/ Module included in the following assemblies:\n\/\/\n\/\/ * serverless\/serverless-support.adoc\n\n[id=\"serverless-about-collecting-data_{context}\"]\n= About collecting {ServerlessProductName} data\n\nYou can use the `oc adm must-gather` CLI command to collect information about your cluster, including features and objects associated with {ServerlessProductName}. To collect {ServerlessProductName} data with `must-gather`, you must specify the {ServerlessProductName} image and the image tag for your installed version of {ServerlessProductName}.\n\n.Procedure\n\n* Collect data by using the `oc adm must-gather` command:\n+\n[source,terminal]\n----\n$ oc adm must-gather --image=registry.redhat.io\/openshift-serverless-1\/svls-must-gather-rhel8:\n----\n+\n.Example command\n[source,terminal]\n----\n$ oc adm must-gather --image=registry.redhat.io\/openshift-serverless-1\/svls-must-gather-rhel8:1.14.0\n----\n","subject":"Add image tag to must-gather images","message":"[srvls][SRVCOM-1290] Add image tag to must-gather images\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs,vikram-redhat\/openshift-docs"} {"commit":"ae00e6ec40e303f6e754a9cf4eb49d2b4738c3da","old_file":"docs\/home.adoc","new_file":"docs\/home.adoc","old_contents":"\n\/\/\/\/\nAccessible at:\nhttps:\/\/ecp-candle.github.io\/Supervisor\/home.html\n\/\/\/\/\n\n\/\/\/\/\nThis prevents ^M from appearing in the output:\n\/\/\/\/\n:miscellaneous.newline: \\n\n\n= CANDLE Supervisor Home Page\n\nThis is the main home page about CANDLE Supervisor effort with links to workflows and other supporting information.\n\n== Key deadlines\n\n1. May 15: End-to-end demo of hyperparameter harness\n\n== Swift installations\n\n* http:\/\/swift-lang.github.io\/swift-t\/sites.html#_jlse_knl[JLSE KNL]\n\n* http:\/\/swift-lang.github.io\/swift-t\/sites.html#_cori[Cori]\n\n* http:\/\/swift-lang.github.io\/swift-t\/sites.html#cooley_candle\n","new_contents":"\n\/\/\/\/\nAccessible at:\nhttps:\/\/ecp-candle.github.io\/Supervisor\/home.html\nYou can compile this locally with:\n$ .\/adoc.sh README.adoc\n\/\/\/\/\n\n\/\/\/\/\nThis prevents ^M from appearing in the output:\n\/\/\/\/\n:miscellaneous.newline: \\n\n\n= CANDLE Supervisor Home Page\n\nThis is the main home page about CANDLE Supervisor effort with links to workflows and other supporting information.\n\n== Key deadlines\n\n1. May 15: End-to-end demo of hyperparameter harness\n\n== Swift installations\n\n* http:\/\/swift-lang.github.io\/swift-t\/sites.html#_cori[Cori]\n+\nThis uses the system-installed Python with ML libs at: +\n+\/usr\/common\/software\/python\/2.7-anaconda\/envs\/deeplearning+\n\n* http:\/\/swift-lang.github.io\/swift-t\/sites.html#cooley_candle[Cooley]\n+\nThis uses the system-installed Python with ML libs at: +\n+\/soft\/analytics\/conda\/env\/Candle_ML+\n\n* http:\/\/swift-lang.github.io\/swift-t\/sites.html#_jlse_knl[JLSE KNL]\n+\nThis does not yet have Python.\n\n* JLSE Prasanna +\nThis uses a VirtualEnv Python at +\/home\/pbalapra\/.virtualenvs+\n** +~wozniak\/Public\/sfw\/icc\/swift-t-pb\/stc\/bin+\n","subject":"Document more Swift\/Python installations for CANDLE","message":"Document more Swift\/Python installations for CANDLE\n","lang":"AsciiDoc","license":"mit","repos":"ECP-CANDLE\/Supervisor,ECP-CANDLE\/Supervisor,ECP-CANDLE\/Supervisor,ECP-CANDLE\/Supervisor,ECP-CANDLE\/Supervisor,ECP-CANDLE\/Supervisor"} {"commit":"b01ced188bb760346c31f65499cb2e408dd323a1","old_file":"README.adoc","new_file":"README.adoc","old_contents":"# Janitor image:https:\/\/travis-ci.org\/techdev-solutions\/janitor.svg?branch=master[\"Build Status\",link=\"https:\/\/travis-ci.org\/techdev-solutions\/janitor\"]\n\nAn application to perform cleanup work using the https:\/\/getpocket.com[Pocket API].\nReview your existing items via the web interface and have Janitor archive old items once per day.\n\n## API Documentation\nThe documentation for the Kotlin API bindings can be found https:\/\/techdev-solutions.github.io\/janitor\/pocket-api\/[here].\n\n## Tutorial (German)\nKotlin: Ein Tutorial für Einsteiger @ JAXenter::\n* https:\/\/jaxenter.de\/kotlin-tutorial-48156[Part 1]\n* https:\/\/jaxenter.de\/kotlin-ein-tutorial-fuer-einsteiger-teil-2-48587[Part 2]\n\n## Screenshots\n### Item Overview\nimage:images\/items.png?raw=true[Item Overiew]\n\n### Error View\nimage:images\/error.png?raw=true[Error View]","new_contents":"# Janitor image:https:\/\/travis-ci.org\/techdev-solutions\/janitor.svg?branch=master[\"Build Status\",link=\"https:\/\/travis-ci.org\/techdev-solutions\/janitor\"]\n\nAn application to perform cleanup work using the https:\/\/getpocket.com[Pocket API].\nReview your existing items via the web interface and have Janitor archive old items once per day.\n\n## API Documentation\nThe documentation for the Kotlin API bindings can be found https:\/\/techdev-solutions.github.io\/janitor\/pocket-api\/[here].\n\n## Tutorial (German)\nKotlin: Ein Tutorial für Einsteiger @ JAXenter::\n* https:\/\/jaxenter.de\/kotlin-tutorial-48156[Part 1]\n* https:\/\/jaxenter.de\/kotlin-ein-tutorial-fuer-einsteiger-teil-2-48587[Part 2]\n* https:\/\/jaxenter.de\/kotlin-ein-tutorial-fuer-einsteiger-teil-3-48967[Part 3]\n\n## Screenshots\n### Item Overview\nimage:images\/items.png?raw=true[Item Overiew]\n\n### Error View\nimage:images\/error.png?raw=true[Error View]","subject":"Add link to 3rd part of JAXenter tutorial","message":"Add link to 3rd part of JAXenter tutorial\n","lang":"AsciiDoc","license":"apache-2.0","repos":"techdev-solutions\/janitor,techdev-solutions\/janitor"} {"commit":"c1c1ac3a76de6103e176533aaab9077410995d2b","old_file":"README.adoc","new_file":"README.adoc","old_contents":"James Glasbrenner's dotfiles\n============================\nJames Glasbrenner \nJuly 27, 2017\n\nMy dotfiles repo.\n\nLicense\n-------\n\nAll content is licensed under the terms of link:LICENSE[The Unlicense License].\n","new_contents":"James Glasbrenner's dotfiles\n============================\nJames Glasbrenner \nJuly 27, 2017\n\nMy dotfiles repo.\n\nBootstrapping\n-------------\n\nStow 2.3.0 is included in this repo for bootstrapping purposes.\nTo stow stow after cloning this repository to `$HOME\/.dotfiles`, run\n\n.bash\n----------------------------------------------\nPERL5LIB=$HOME\/.dotfiles\/stow\/stow\/lib\/perl5 \\\n $HOME\/.dotfiles\/stow\/stow\/bin\/stow \\\n -d $HOME\/.dotfiles\/stow \\\n -t \/home\/glasbren\/.local \\\n stow\n----------------------------------------------\n\nLicense\n-------\n\nAll content is licensed under the terms of link:LICENSE[The Unlicense License].\n","subject":"Add bootstrapping instructions for how to stow stow","message":"Add bootstrapping instructions for how to stow stow\n","lang":"AsciiDoc","license":"unlicense","repos":"jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles,jkglasbrenner\/dotfiles"} {"commit":"741eba7aa73b580c9fc72c9b168e01755eaf1fa6","old_file":"README.adoc","new_file":"README.adoc","old_contents":"== asciidoctor-fopub-embed-svg-example\n\nAn example for embedding SVG images in an asciidoctor document.\n\n=== Setup\n\n----\nbundle install\n----\n\n=== How to make the target pdf file\n\nRunning the command below make the target pdf file named \"class_diagram.pdf\" out of \"class_diagram.adoc\"\n\n----\nbundle exec rake\n----\n\n=== Watch *.adoc files\n\nRunning the command below, rake watches \"\\*.adoc\" files and build \"\\*.adoc\" files whenever they are modified.\n\n----\nbundle exec rake watch\n----\n","new_contents":"== asciidoctor-fopub-embed-svg-example\n\nAn example for embedding SVG images in an asciidoctor document.\n\n=== Setup\n\n----\nbundle install\n----\n\n=== How to make the target pdf file\n\nRunning the command below make the target pdf file named \"class_diagram.pdf\" out of \"class_diagram.adoc\"\n\n----\nbundle exec rake\n----\n\n=== Watch *.adoc files\n\nRunning the command below, rake watches \"\\*.adoc\" files and build \"*.adoc\" files whenever they are modified.\n\n----\nbundle exec rake watch\n----\n","subject":"Remove the backslash for the second asterisk","message":"Remove the backslash for the second asterisk\n","lang":"AsciiDoc","license":"mit","repos":"hnakamur\/asciidoctor-fopub-embed-svg-example"} {"commit":"668d9b91d83e98cf55cc02517d109a944403842c","old_file":"cip\/README.adoc","new_file":"cip\/README.adoc","old_contents":"= Cypher Improvement Proposals\n\nThis is the home for all Cypher Improvement Proposal (CIP) documents.\nCIPs are documents that outline the syntax and semantics of Cypher.\n\n== The CIP Lifecycle\n\nCIPs normally pass through a number of phases before and after ending up in this repository.\n\n=== Accepted\n\nIt is open to anyone to author and submit a CIP as a pull request to this repository.\nThe CIP should then be suggested for addition into the `accepted` directory.\nIt is then the task of the CLG to discuss, give feedback, and eventually (potentially) accept the CIP, at which point the pull request will be merged.\n\n=== Testable\n\nA CIP enters this phase when it has received a sufficient set of TCK scenarios that outline the use of its suggested features.\n\n=== Implemented\n\nA CIP enters this phase when the reference implementation supports its suggested features.\nThis is verified by passing all the TCK scenarios that had been outlined for the CIP.\n","new_contents":"= Cypher Improvement Proposals\n\nThis is the home for all Cypher Improvement Proposal (CIP) documents.\nCIPs are documents that outline the syntax and semantics of Cypher.\n\n== The CIP Lifecycle\n\nCIPs normally pass through a number of phases before and after ending up in this repository.\n\n=== Accepted\n\nIt is open to anyone to author and submit a CIP as a pull request to this repository.\nThe CIP should then be suggested for addition into the `accepted` directory.\nIt is then the task of the CLG to discuss, give feedback, and eventually (potentially) accept the CIP, at which point the pull request will be merged.\n\n=== Testable\n\nA CIP enters this phase when it has received a sufficient set of TCK scenarios that outline the use of its suggested features.\n","subject":"Remove mention of reference implementation","message":"Remove mention of reference implementation\n","lang":"AsciiDoc","license":"apache-2.0","repos":"opencypher\/openCypher,opencypher\/openCypher,opencypher\/openCypher,opencypher\/openCypher"} {"commit":"a2c93304f835f9939e777e0ce8e177164bba4ca7","old_file":"docs\/community\/misc.asciidoc","new_file":"docs\/community\/misc.asciidoc","old_contents":"[[misc]]\n== Misc\n\n* https:\/\/github.com\/elasticsearch\/puppet-elasticsearch[Puppet]:\n Elasticsearch puppet module.\n\n* http:\/\/github.com\/elasticsearch\/cookbook-elasticsearch[Chef]:\n Chef cookbook for Elasticsearch\n\n* https:\/\/github.com\/medcl\/salt-elasticsearch[SaltStack]:\n SaltStack Module for Elasticsearch\n \n* http:\/\/www.github.com\/neogenix\/daikon[daikon]:\n Daikon Elasticsearch CLI\n\n* https:\/\/github.com\/Aconex\/scrutineer[Scrutineer]:\n A high performance consistency checker to compare what you've indexed \n with your source of truth content (e.g. DB)\n","new_contents":"[[misc]]\n== Misc\n\n* https:\/\/github.com\/elasticsearch\/puppet-elasticsearch[Puppet]:\n Elasticsearch puppet module.\n\n* http:\/\/github.com\/elasticsearch\/cookbook-elasticsearch[Chef]:\n Chef cookbook for Elasticsearch\n\n* https:\/\/github.com\/medcl\/salt-elasticsearch[SaltStack]:\n SaltStack Module for Elasticsearch\n \n* http:\/\/www.github.com\/neogenix\/daikon[daikon]:\n Daikon Elasticsearch CLI\n\n* https:\/\/github.com\/Aconex\/scrutineer[Scrutineer]:\n A high performance consistency checker to compare what you've indexed \n with your source of truth content (e.g. DB)\n\n* https:\/\/www.wireshark.org\/[Wireshark]:\n Protocol dissection for Zen discovery, HTTP and the binary protocol\n","subject":"Add Wireshark protocol dissection support","message":"Docs: Add Wireshark protocol dissection support\n\nHi guys, I've finished my Wireshark dissector for Elasticsearch. It is now merged into their master. See https:\/\/code.wireshark.org\/review\/#\/c\/4948\/\n\nCloses #8495\n","lang":"AsciiDoc","license":"apache-2.0","repos":"HarishAtGitHub\/elasticsearch,amit-shar\/elasticsearch,amit-shar\/elasticsearch,lchennup\/elasticsearch,LewayneNaidoo\/elasticsearch,ricardocerq\/elasticsearch,wimvds\/elasticsearch,glefloch\/elasticsearch,Collaborne\/elasticsearch,F0lha\/elasticsearch,wbowling\/elasticsearch,rmuir\/elasticsearch,mute\/elasticsearch,Microsoft\/elasticsearch,huanzhong\/elasticsearch,overcome\/elasticsearch,kaneshin\/elasticsearch,mjhennig\/elasticsearch,hafkensite\/elasticsearch,mrorii\/elasticsearch,LewayneNaidoo\/elasticsearch,masaruh\/elasticsearch,AndreKR\/elasticsearch,rajanm\/elasticsearch,kcompher\/elasticsearch,rajanm\/elasticsearch,mgalushka\/elasticsearch,jsgao0\/elasticsearch,gmarz\/elasticsearch,ckclark\/elasticsearch,heng4fun\/elasticsearch,amaliujia\/elasticsearch,ckclark\/elasticsearch,pozhidaevak\/elasticsearch,dongjoon-hyun\/elasticsearch,Ansh90\/elasticsearch,rhoml\/elasticsearch,skearns64\/elasticsearch,linglaiyao1314\/elasticsearch,tcucchietti\/elasticsearch,apepper\/elasticsearch,myelin\/elasticsearch,GlenRSmith\/elasticsearch,knight1128\/elasticsearch,himanshuag\/elasticsearch,mikemccand\/elasticsearch,alexbrasetvik\/elasticsearch,StefanGor\/elasticsearch,IanvsPoplicola\/elasticsearch,wimvds\/elasticsearch,Microsoft\/elasticsearch,JervyShi\/elasticsearch,kaneshin\/elasticsearch,MichaelLiZhou\/elasticsearch,elasticdog\/elasticsearch,sdauletau\/elasticsearch,rento19962\/elasticsearch,micpalmia\/elasticsearch,Asimov4\/elasticsearch,kcompher\/elasticsearch,apepper\/elasticsearch,easonC\/elasticsearch,kubum\/elasticsearch,sc0ttkclark\/elasticsearch,luiseduardohdbackup\/elasticsearch,cnfire\/elasticsearch-1,huanzhong\/elasticsearch,elancom\/elasticsearch,lchennup\/elasticsearch,sc0ttkclark\/elasticsearch,Ansh90\/elasticsearch,sc0ttkclark\/elasticsearch,petmit\/elasticsearch,jsgao0\/elasticsearch,mjason3\/elasticsearch,thecocce\/elasticsearch,micpalmia\/elasticsearch,sposam\/elasticsearch,18098924759\/elasticsearch,lmtwga\/elasticsearch,xingguang2013\/elasticsearch,vrkansagara\/elasticsearch,Rygbee\/elasticsearch,springning\/elasticsearch,gfyoung\/elasticsearch,yynil\/elasticsearch,knight1128\/elasticsearch,EasonYi\/elasticsearch,Liziyao\/elasticsearch,sdauletau\/elasticsearch,MjAbuz\/elasticsearch,fred84\/elasticsearch,truemped\/elasticsearch,vingupta3\/elasticsearch,martinstuga\/elasticsearch,vvcephei\/elasticsearch,strapdata\/elassandra,Clairebi\/ElasticsearchClone,xuzha\/elasticsearch,amit-shar\/elasticsearch,skearns64\/elasticsearch,HonzaKral\/elasticsearch,strapdata\/elassandra-test,pritishppai\/elasticsearch,slavau\/elasticsearch,infusionsoft\/elasticsearch,anti-social\/elasticsearch,franklanganke\/elasticsearch,himanshuag\/elasticsearch,anti-social\/elasticsearch,schonfeld\/elasticsearch,hanswang\/elasticsearch,ivansun1010\/elasticsearch,btiernay\/elasticsearch,PhaedrusTheGreek\/elasticsearch,Chhunlong\/elasticsearch,infusionsoft\/elasticsearch,sposam\/elasticsearch,dpursehouse\/elasticsearch,tkssharma\/elasticsearch,kunallimaye\/elasticsearch,koxa29\/elasticsearch,huanzhong\/elasticsearch,amaliujia\/elasticsearch,VukDukic\/elasticsearch,episerver\/elasticsearch,vietlq\/elasticsearch,wbowling\/elasticsearch,iantruslove\/elasticsearch,JSCooke\/elasticsearch,rhoml\/elasticsearch,golubev\/elasticsearch,onegambler\/elasticsearch,Kakakakakku\/elasticsearch,alexkuk\/elasticsearch,ouyangkongtong\/elasticsearch,bawse\/elasticsearch,winstonewert\/elasticsearch,ouyangkongtong\/elasticsearch,iacdingping\/elasticsearch,caengcjd\/elasticsearch,acchen97\/elasticsearch,ESamir\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,AshishThakur\/elasticsearch,TonyChai24\/ESSource,henakamaMSFT\/elasticsearch,socialrank\/elasticsearch,chrismwendt\/elasticsearch,camilojd\/elasticsearch,kkirsche\/elasticsearch,sreeramjayan\/elasticsearch,YosuaMichael\/elasticsearch,adrianbk\/elasticsearch,alexshadow007\/elasticsearch,MetSystem\/elasticsearch,YosuaMichael\/elasticsearch,micpalmia\/elasticsearch,jimhooker2002\/elasticsearch,MetSystem\/elasticsearch,mmaracic\/elasticsearch,bestwpw\/elasticsearch,petmit\/elasticsearch,IanvsPoplicola\/elasticsearch,Shekharrajak\/elasticsearch,naveenhooda2000\/elasticsearch,VukDukic\/elasticsearch,kunallimaye\/elasticsearch,huypx1292\/elasticsearch,snikch\/elasticsearch,markwalkom\/elasticsearch,clintongormley\/elasticsearch,HarishAtGitHub\/elasticsearch,kingaj\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,iantruslove\/elasticsearch,jw0201\/elastic,sarwarbhuiyan\/elasticsearch,GlenRSmith\/elasticsearch,vroyer\/elasticassandra,StefanGor\/elasticsearch,IanvsPoplicola\/elasticsearch,elancom\/elasticsearch,kubum\/elasticsearch,EasonYi\/elasticsearch,petabytedata\/elasticsearch,scorpionvicky\/elasticsearch,tsohil\/elasticsearch,abibell\/elasticsearch,fekaputra\/elasticsearch,alexshadow007\/elasticsearch,ulkas\/elasticsearch,sjohnr\/elasticsearch,sc0ttkclark\/elasticsearch,koxa29\/elasticsearch,sdauletau\/elasticsearch,MjAbuz\/elasticsearch,opendatasoft\/elasticsearch,kkirsche\/elasticsearch,abibell\/elasticsearch,rlugojr\/elasticsearch,Brijeshrpatel9\/elasticsearch,mjhennig\/elasticsearch,anti-social\/elasticsearch,iamjakob\/elasticsearch,glefloch\/elasticsearch,drewr\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,martinstuga\/elasticsearch,sc0ttkclark\/elasticsearch,huypx1292\/elasticsearch,wbowling\/elasticsearch,lmtwga\/elasticsearch,YosuaMichael\/elasticsearch,vroyer\/elassandra,mohit\/elasticsearch,strapdata\/elassandra5-rc,socialrank\/elasticsearch,strapdata\/elassandra,djschny\/elasticsearch,Clairebi\/ElasticsearchClone,Shekharrajak\/elasticsearch,ricardocerq\/elasticsearch,khiraiwa\/elasticsearch,jchampion\/elasticsearch,snikch\/elasticsearch,achow\/elasticsearch,iacdingping\/elasticsearch,bestwpw\/elasticsearch,fforbeck\/elasticsearch,elancom\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,lzo\/elasticsearch-1,mm0\/elasticsearch,Uiho\/elasticsearch,lmtwga\/elasticsearch,mkis-\/elasticsearch,HonzaKral\/elasticsearch,humandb\/elasticsearch,yanjunh\/elasticsearch,girirajsharma\/elasticsearch,geidies\/elasticsearch,fekaputra\/elasticsearch,khiraiwa\/elasticsearch,tkssharma\/elasticsearch,janmejay\/elasticsearch,jimczi\/elasticsearch,mikemccand\/elasticsearch,tahaemin\/elasticsearch,trangvh\/elasticsearch,EasonYi\/elasticsearch,xuzha\/elasticsearch,xpandan\/elasticsearch,Collaborne\/elasticsearch,cwurm\/elasticsearch,tsohil\/elasticsearch,Chhunlong\/elasticsearch,dantuffery\/elasticsearch,heng4fun\/elasticsearch,rento19962\/elasticsearch,HarishAtGitHub\/elasticsearch,NBSW\/elasticsearch,nezirus\/elasticsearch,VukDukic\/elasticsearch,girirajsharma\/elasticsearch,nilabhsagar\/elasticsearch,ImpressTV\/elasticsearch,szroland\/elasticsearch,vvcephei\/elasticsearch,trangvh\/elasticsearch,KimTaehee\/elasticsearch,andrejserafim\/elasticsearch,jimhooker2002\/elasticsearch,fooljohnny\/elasticsearch,Shepard1212\/elasticsearch,codebunt\/elasticsearch,njlawton\/elasticsearch,sscarduzio\/elasticsearch,iamjakob\/elasticsearch,gfyoung\/elasticsearch,Stacey-Gammon\/elasticsearch,awislowski\/elasticsearch,sreeramjayan\/elasticsearch,spiegela\/elasticsearch,18098924759\/elasticsearch,kalimatas\/elasticsearch,truemped\/elasticsearch,golubev\/elasticsearch,strapdata\/elassandra,dataduke\/elasticsearch,yuy168\/elasticsearch,Rygbee\/elasticsearch,xingguang2013\/elasticsearch,Widen\/elasticsearch,linglaiyao1314\/elasticsearch,linglaiyao1314\/elasticsearch,mortonsykes\/elasticsearch,karthikjaps\/elasticsearch,wenpos\/elasticsearch,kunallimaye\/elasticsearch,wuranbo\/elasticsearch,ydsakyclguozi\/elasticsearch,MichaelLiZhou\/elasticsearch,franklanganke\/elasticsearch,masaruh\/elasticsearch,socialrank\/elasticsearch,tcucchietti\/elasticsearch,springning\/elasticsearch,feiqitian\/elasticsearch,huanzhong\/elasticsearch,tebriel\/elasticsearch,YosuaMichael\/elasticsearch,kalburgimanjunath\/elasticsearch,hanswang\/elasticsearch,wimvds\/elasticsearch,HarishAtGitHub\/elasticsearch,andrestc\/elasticsearch,jprante\/elasticsearch,knight1128\/elasticsearch,likaiwalkman\/elasticsearch,jsgao0\/elasticsearch,hanswang\/elasticsearch,MichaelLiZhou\/elasticsearch,kaneshin\/elasticsearch,masterweb121\/elasticsearch,wenpos\/elasticsearch,karthikjaps\/elasticsearch,masaruh\/elasticsearch,amaliujia\/elasticsearch,yynil\/elasticsearch,spiegela\/elasticsearch,feiqitian\/elasticsearch,AshishThakur\/elasticsearch,Fsero\/elasticsearch,amit-shar\/elasticsearch,xingguang2013\/elasticsearch,knight1128\/elasticsearch,aglne\/elasticsearch,Brijeshrpatel9\/elasticsearch,petabytedata\/elasticsearch,himanshuag\/elasticsearch,Ansh90\/elasticsearch,jprante\/elasticsearch,Stacey-Gammon\/elasticsearch,Collaborne\/elasticsearch,kcompher\/elasticsearch,brandonkearby\/elasticsearch,ImpressTV\/elasticsearch,codebunt\/elasticsearch,tsohil\/elasticsearch,KimTaehee\/elasticsearch,wenpos\/elasticsearch,socialrank\/elasticsearch,andrestc\/elasticsearch,mute\/elasticsearch,rento19962\/elasticsearch,ulkas\/elasticsearch,jpountz\/elasticsearch,AshishThakur\/elasticsearch,opendatasoft\/elasticsearch,vroyer\/elassandra,shreejay\/elasticsearch,Liziyao\/elasticsearch,sauravmondallive\/elasticsearch,xingguang2013\/elasticsearch,koxa29\/elasticsearch,queirozfcom\/elasticsearch,wimvds\/elasticsearch,jpountz\/elasticsearch,kalburgimanjunath\/elasticsearch,jeteve\/elasticsearch,Liziyao\/elasticsearch,mohit\/elasticsearch,knight1128\/elasticsearch,myelin\/elasticsearch,xingguang2013\/elasticsearch,amaliujia\/elasticsearch,nellicus\/elasticsearch,djschny\/elasticsearch,lightslife\/elasticsearch,strapdata\/elassandra,combinatorist\/elasticsearch,LeoYao\/elasticsearch,schonfeld\/elasticsearch,qwerty4030\/elasticsearch,LeoYao\/elasticsearch,beiske\/elasticsearch,queirozfcom\/elasticsearch,palecur\/elasticsearch,Clairebi\/ElasticsearchClone,milodky\/elasticsearch,beiske\/elasticsearch,Charlesdong\/elasticsearch,coding0011\/elasticsearch,PhaedrusTheGreek\/elasticsearch,nomoa\/elasticsearch,lightslife\/elasticsearch,phani546\/elasticsearch,nazarewk\/elasticsearch,clintongormley\/elasticsearch,naveenhooda2000\/elasticsearch,hanswang\/elasticsearch,Siddartha07\/elasticsearch,slavau\/elasticsearch,ricardocerq\/elasticsearch,mjason3\/elasticsearch,wittyameta\/elasticsearch,dylan8902\/elasticsearch,vrkansagara\/elasticsearch,artnowo\/elasticsearch,awislowski\/elasticsearch,KimTaehee\/elasticsearch,mrorii\/elasticsearch,iacdingping\/elasticsearch,dylan8902\/elasticsearch,Liziyao\/elasticsearch,kalburgimanjunath\/elasticsearch,Brijeshrpatel9\/elasticsearch,vingupta3\/elasticsearch,Siddartha07\/elasticsearch,petabytedata\/elasticsearch,kevinkluge\/elasticsearch,vvcephei\/elasticsearch,liweinan0423\/elasticsearch,skearns64\/elasticsearch,codebunt\/elasticsearch,fernandozhu\/elasticsearch,fooljohnny\/elasticsearch,beiske\/elasticsearch,wbowling\/elasticsearch,winstonewert\/elasticsearch,maddin2016\/elasticsearch,elancom\/elasticsearch,martinstuga\/elasticsearch,tahaemin\/elasticsearch,queirozfcom\/elasticsearch,sauravmondallive\/elasticsearch,andrestc\/elasticsearch,mcku\/elasticsearch,snikch\/elasticsearch,tahaemin\/elasticsearch,nazarewk\/elasticsearch,girirajsharma\/elasticsearch,luiseduardohdbackup\/elasticsearch,martinstuga\/elasticsearch,btiernay\/elasticsearch,kenshin233\/elasticsearch,Uiho\/elasticsearch,abibell\/elasticsearch,nomoa\/elasticsearch,kenshin233\/elasticsearch,bestwpw\/elasticsearch,mm0\/elasticsearch,kkirsche\/elasticsearch,StefanGor\/elasticsearch,MetSystem\/elasticsearch,kalburgimanjunath\/elasticsearch,kaneshin\/elasticsearch,javachengwc\/elasticsearch,fernandozhu\/elasticsearch,wayeast\/elasticsearch,onegambler\/elasticsearch,dantuffery\/elasticsearch,sneivandt\/elasticsearch,qwerty4030\/elasticsearch,Chhunlong\/elasticsearch,markwalkom\/elasticsearch,uschindler\/elasticsearch,masterweb121\/elasticsearch,alexkuk\/elasticsearch,MetSystem\/elasticsearch,NBSW\/elasticsearch,janmejay\/elasticsearch,umeshdangat\/elasticsearch,Uiho\/elasticsearch,vrkansagara\/elasticsearch,NBSW\/elasticsearch,adrianbk\/elasticsearch,lzo\/elasticsearch-1,rlugojr\/elasticsearch,ydsakyclguozi\/elasticsearch,episerver\/elasticsearch,Helen-Zhao\/elasticsearch,iacdingping\/elasticsearch,rmuir\/elasticsearch,phani546\/elasticsearch,PhaedrusTheGreek\/elasticsearch,loconsolutions\/elasticsearch,Chhunlong\/elasticsearch,Stacey-Gammon\/elasticsearch,strapdata\/elassandra-test,andrejserafim\/elasticsearch,schonfeld\/elasticsearch,Clairebi\/ElasticsearchClone,Clairebi\/ElasticsearchClone,naveenhooda2000\/elasticsearch,rento19962\/elasticsearch,cnfire\/elasticsearch-1,dataduke\/elasticsearch,Liziyao\/elasticsearch,nrkkalyan\/elasticsearch,iamjakob\/elasticsearch,MaineC\/elasticsearch,zhiqinghuang\/elasticsearch,Asimov4\/elasticsearch,JervyShi\/elasticsearch,fekaputra\/elasticsearch,kunallimaye\/elasticsearch,vietlq\/elasticsearch,geidies\/elasticsearch,s1monw\/elasticsearch,hydro2k\/elasticsearch,rlugojr\/elasticsearch,JackyMai\/elasticsearch,kubum\/elasticsearch,petabytedata\/elasticsearch,mbrukman\/elasticsearch,LewayneNaidoo\/elasticsearch,episerver\/elasticsearch,dpursehouse\/elasticsearch,jw0201\/elastic,rmuir\/elasticsearch,Microsoft\/elasticsearch,MjAbuz\/elasticsearch,feiqitian\/elasticsearch,weipinghe\/elasticsearch,jimczi\/elasticsearch,clintongormley\/elasticsearch,koxa29\/elasticsearch,ESamir\/elasticsearch,jeteve\/elasticsearch,glefloch\/elasticsearch,mmaracic\/elasticsearch,jaynblue\/elasticsearch,strapdata\/elassandra5-rc,kaneshin\/elasticsearch,geidies\/elasticsearch,xuzha\/elasticsearch,drewr\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,jbertouch\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,liweinan0423\/elasticsearch,glefloch\/elasticsearch,jango2015\/elasticsearch,vingupta3\/elasticsearch,ESamir\/elasticsearch,dantuffery\/elasticsearch,nrkkalyan\/elasticsearch,xingguang2013\/elasticsearch,yynil\/elasticsearch,SergVro\/elasticsearch,sneivandt\/elasticsearch,MaineC\/elasticsearch,JSCooke\/elasticsearch,obourgain\/elasticsearch,Widen\/elasticsearch,onegambler\/elasticsearch,tahaemin\/elasticsearch,mrorii\/elasticsearch,milodky\/elasticsearch,chirilo\/elasticsearch,hirdesh2008\/elasticsearch,golubev\/elasticsearch,himanshuag\/elasticsearch,YosuaMichael\/elasticsearch,maddin2016\/elasticsearch,dataduke\/elasticsearch,anti-social\/elasticsearch,hechunwen\/elasticsearch,yynil\/elasticsearch,tcucchietti\/elasticsearch,wimvds\/elasticsearch,markharwood\/elasticsearch,MichaelLiZhou\/elasticsearch,abibell\/elasticsearch,TonyChai24\/ESSource,sc0ttkclark\/elasticsearch,jimhooker2002\/elasticsearch,a2lin\/elasticsearch,lydonchandra\/elasticsearch,henakamaMSFT\/elasticsearch,cnfire\/elasticsearch-1,markharwood\/elasticsearch,drewr\/elasticsearch,jsgao0\/elasticsearch,humandb\/elasticsearch,StefanGor\/elasticsearch,mbrukman\/elasticsearch,fekaputra\/elasticsearch,fooljohnny\/elasticsearch,MetSystem\/elasticsearch,myelin\/elasticsearch,a2lin\/elasticsearch,hanswang\/elasticsearch,i-am-Nathan\/elasticsearch,strapdata\/elassandra-test,wangyuxue\/elasticsearch,clintongormley\/elasticsearch,vietlq\/elasticsearch,queirozfcom\/elasticsearch,mjason3\/elasticsearch,kingaj\/elasticsearch,uschindler\/elasticsearch,kingaj\/elasticsearch,fred84\/elasticsearch,sreeramjayan\/elasticsearch,wangyuxue\/elasticsearch,socialrank\/elasticsearch,kimimj\/elasticsearch,vingupta3\/elasticsearch,davidvgalbraith\/elasticsearch,tkssharma\/elasticsearch,Fsero\/elasticsearch,easonC\/elasticsearch,tebriel\/elasticsearch,chrismwendt\/elasticsearch,luiseduardohdbackup\/elasticsearch,markllama\/elasticsearch,AndreKR\/elasticsearch,mapr\/elasticsearch,loconsolutions\/elasticsearch,jw0201\/elastic,PhaedrusTheGreek\/elasticsearch,sauravmondallive\/elasticsearch,zhiqinghuang\/elasticsearch,TonyChai24\/ESSource,TonyChai24\/ESSource,maddin2016\/elasticsearch,jimhooker2002\/elasticsearch,naveenhooda2000\/elasticsearch,heng4fun\/elasticsearch,ivansun1010\/elasticsearch,obourgain\/elasticsearch,fernandozhu\/elasticsearch,mgalushka\/elasticsearch,brandonkearby\/elasticsearch,Charlesdong\/elasticsearch,F0lha\/elasticsearch,yynil\/elasticsearch,jimczi\/elasticsearch,Brijeshrpatel9\/elasticsearch,scottsom\/elasticsearch,abibell\/elasticsearch,mcku\/elasticsearch,mjason3\/elasticsearch,btiernay\/elasticsearch,scottsom\/elasticsearch,huypx1292\/elasticsearch,milodky\/elasticsearch,avikurapati\/elasticsearch,gingerwizard\/elasticsearch,vietlq\/elasticsearch,mortonsykes\/elasticsearch,andrejserafim\/elasticsearch,markllama\/elasticsearch,gmarz\/elasticsearch,rhoml\/elasticsearch,gfyoung\/elasticsearch,Uiho\/elasticsearch,camilojd\/elasticsearch,jbertouch\/elasticsearch,dpursehouse\/elasticsearch,alexbrasetvik\/elasticsearch,jimczi\/elasticsearch,hydro2k\/elasticsearch,overcome\/elasticsearch,ImpressTV\/elasticsearch,Charlesdong\/elasticsearch,NBSW\/elasticsearch,nellicus\/elasticsearch,adrianbk\/elasticsearch,kevinkluge\/elasticsearch,ckclark\/elasticsearch,Widen\/elasticsearch,smflorentino\/elasticsearch,micpalmia\/elasticsearch,AleksKochev\/elasticsearch,gingerwizard\/elasticsearch,i-am-Nathan\/elasticsearch,KimTaehee\/elasticsearch,rhoml\/elasticsearch,gfyoung\/elasticsearch,ulkas\/elasticsearch,springning\/elasticsearch,pranavraman\/elasticsearch,awislowski\/elasticsearch,C-Bish\/elasticsearch,i-am-Nathan\/elasticsearch,hydro2k\/elasticsearch,yongminxia\/elasticsearch,YosuaMichael\/elasticsearch,easonC\/elasticsearch,robin13\/elasticsearch,opendatasoft\/elasticsearch,18098924759\/elasticsearch,mute\/elasticsearch,kunallimaye\/elasticsearch,tsohil\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,likaiwalkman\/elasticsearch,AleksKochev\/elasticsearch,wuranbo\/elasticsearch,Shekharrajak\/elasticsearch,coding0011\/elasticsearch,Charlesdong\/elasticsearch,javachengwc\/elasticsearch,iacdingping\/elasticsearch,markharwood\/elasticsearch,Charlesdong\/elasticsearch,strapdata\/elassandra5-rc,markllama\/elasticsearch,F0lha\/elasticsearch,heng4fun\/elasticsearch,sposam\/elasticsearch,caengcjd\/elasticsearch,EasonYi\/elasticsearch,EasonYi\/elasticsearch,pranavraman\/elasticsearch,smflorentino\/elasticsearch,acchen97\/elasticsearch,nezirus\/elasticsearch,fred84\/elasticsearch,djschny\/elasticsearch,AshishThakur\/elasticsearch,nknize\/elasticsearch,janmejay\/elasticsearch,kalimatas\/elasticsearch,vietlq\/elasticsearch,davidvgalbraith\/elasticsearch,GlenRSmith\/elasticsearch,mohit\/elasticsearch,djschny\/elasticsearch,Rygbee\/elasticsearch,mortonsykes\/elasticsearch,bestwpw\/elasticsearch,bestwpw\/elasticsearch,PhaedrusTheGreek\/elasticsearch,lightslife\/elasticsearch,artnowo\/elasticsearch,iantruslove\/elasticsearch,wittyameta\/elasticsearch,skearns64\/elasticsearch,rajanm\/elasticsearch,masaruh\/elasticsearch,zhiqinghuang\/elasticsearch,hirdesh2008\/elasticsearch,Flipkart\/elasticsearch,anti-social\/elasticsearch,rlugojr\/elasticsearch,winstonewert\/elasticsearch,njlawton\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,janmejay\/elasticsearch,franklanganke\/elasticsearch,dongjoon-hyun\/elasticsearch,mbrukman\/elasticsearch,artnowo\/elasticsearch,davidvgalbraith\/elasticsearch,lydonchandra\/elasticsearch,easonC\/elasticsearch,dpursehouse\/elasticsearch,springning\/elasticsearch,Ansh90\/elasticsearch,umeshdangat\/elasticsearch,yuy168\/elasticsearch,sarwarbhuiyan\/elasticsearch,iamjakob\/elasticsearch,s1monw\/elasticsearch,Shekharrajak\/elasticsearch,myelin\/elasticsearch,Shekharrajak\/elasticsearch,likaiwalkman\/elasticsearch,Flipkart\/elasticsearch,Fsero\/elasticsearch,wbowling\/elasticsearch,njlawton\/elasticsearch,kkirsche\/elasticsearch,yongminxia\/elasticsearch,ydsakyclguozi\/elasticsearch,drewr\/elasticsearch,jeteve\/elasticsearch,geidies\/elasticsearch,petabytedata\/elasticsearch,adrianbk\/elasticsearch,mnylen\/elasticsearch,acchen97\/elasticsearch,socialrank\/elasticsearch,weipinghe\/elasticsearch,jprante\/elasticsearch,ThalaivaStars\/OrgRepo1,pritishppai\/elasticsearch,masaruh\/elasticsearch,qwerty4030\/elasticsearch,hechunwen\/elasticsearch,bawse\/elasticsearch,truemped\/elasticsearch,gingerwizard\/elasticsearch,tebriel\/elasticsearch,hafkensite\/elasticsearch,mgalushka\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,MisterAndersen\/elasticsearch,jango2015\/elasticsearch,masterweb121\/elasticsearch,lmtwga\/elasticsearch,Uiho\/elasticsearch,masterweb121\/elasticsearch,nknize\/elasticsearch,amit-shar\/elasticsearch,snikch\/elasticsearch,gingerwizard\/elasticsearch,likaiwalkman\/elasticsearch,scottsom\/elasticsearch,onegambler\/elasticsearch,mnylen\/elasticsearch,aglne\/elasticsearch,yuy168\/elasticsearch,kenshin233\/elasticsearch,btiernay\/elasticsearch,zkidkid\/elasticsearch,chirilo\/elasticsearch,pranavraman\/elasticsearch,feiqitian\/elasticsearch,MjAbuz\/elasticsearch,beiske\/elasticsearch,Shekharrajak\/elasticsearch,ImpressTV\/elasticsearch,easonC\/elasticsearch,sscarduzio\/elasticsearch,areek\/elasticsearch,MisterAndersen\/elasticsearch,rento19962\/elasticsearch,strapdata\/elassandra5-rc,cnfire\/elasticsearch-1,nellicus\/elasticsearch,Flipkart\/elasticsearch,apepper\/elasticsearch,alexbrasetvik\/elasticsearch,rmuir\/elasticsearch,acchen97\/elasticsearch,kimimj\/elasticsearch,kubum\/elasticsearch,dongjoon-hyun\/elasticsearch,18098924759\/elasticsearch,kenshin233\/elasticsearch,avikurapati\/elasticsearch,bawse\/elasticsearch,sarwarbhuiyan\/elasticsearch,robin13\/elasticsearch,khiraiwa\/elasticsearch,Ansh90\/elasticsearch,phani546\/elasticsearch,MichaelLiZhou\/elasticsearch,sposam\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,sreeramjayan\/elasticsearch,hafkensite\/elasticsearch,markharwood\/elasticsearch,koxa29\/elasticsearch,C-Bish\/elasticsearch,abibell\/elasticsearch,brandonkearby\/elasticsearch,karthikjaps\/elasticsearch,jeteve\/elasticsearch,spiegela\/elasticsearch,ESamir\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,mnylen\/elasticsearch,jango2015\/elasticsearch,obourgain\/elasticsearch,Siddartha07\/elasticsearch,Charlesdong\/elasticsearch,dantuffery\/elasticsearch,pablocastro\/elasticsearch,xingguang2013\/elasticsearch,ZTE-PaaS\/elasticsearch,Fsero\/elasticsearch,humandb\/elasticsearch,ivansun1010\/elasticsearch,pozhidaevak\/elasticsearch,smflorentino\/elasticsearch,milodky\/elasticsearch,iantruslove\/elasticsearch,zhiqinghuang\/elasticsearch,fekaputra\/elasticsearch,henakamaMSFT\/elasticsearch,wayeast\/elasticsearch,hirdesh2008\/elasticsearch,xuzha\/elasticsearch,schonfeld\/elasticsearch,lightslife\/elasticsearch,beiske\/elasticsearch,EasonYi\/elasticsearch,Shepard1212\/elasticsearch,JervyShi\/elasticsearch,hydro2k\/elasticsearch,camilojd\/elasticsearch,apepper\/elasticsearch,Brijeshrpatel9\/elasticsearch,MichaelLiZhou\/elasticsearch,HonzaKral\/elasticsearch,palecur\/elasticsearch,springning\/elasticsearch,phani546\/elasticsearch,zeroctu\/elasticsearch,lydonchandra\/elasticsearch,linglaiyao1314\/elasticsearch,NBSW\/elasticsearch,lightslife\/elasticsearch,codebunt\/elasticsearch,NBSW\/elasticsearch,TonyChai24\/ESSource,kalimatas\/elasticsearch,artnowo\/elasticsearch,pritishppai\/elasticsearch,zeroctu\/elasticsearch,javachengwc\/elasticsearch,spiegela\/elasticsearch,sjohnr\/elasticsearch,s1monw\/elasticsearch,jbertouch\/elasticsearch,Stacey-Gammon\/elasticsearch,smflorentino\/elasticsearch,IanvsPoplicola\/elasticsearch,yuy168\/elasticsearch,apepper\/elasticsearch,elancom\/elasticsearch,bestwpw\/elasticsearch,hechunwen\/elasticsearch,tahaemin\/elasticsearch,yanjunh\/elasticsearch,mcku\/elasticsearch,winstonewert\/elasticsearch,cnfire\/elasticsearch-1,andrestc\/elasticsearch,hanst\/elasticsearch,onegambler\/elasticsearch,Helen-Zhao\/elasticsearch,yanjunh\/elasticsearch,kunallimaye\/elasticsearch,kimimj\/elasticsearch,ouyangkongtong\/elasticsearch,nrkkalyan\/elasticsearch,infusionsoft\/elasticsearch,fernandozhu\/elasticsearch,wayeast\/elasticsearch,mm0\/elasticsearch,apepper\/elasticsearch,scorpionvicky\/elasticsearch,cwurm\/elasticsearch,pablocastro\/elasticsearch,strapdata\/elassandra-test,ImpressTV\/elasticsearch,fooljohnny\/elasticsearch,kkirsche\/elasticsearch,kevinkluge\/elasticsearch,hanst\/elasticsearch,wimvds\/elasticsearch,chirilo\/elasticsearch,acchen97\/elasticsearch,polyfractal\/elasticsearch,hirdesh2008\/elasticsearch,easonC\/elasticsearch,achow\/elasticsearch,pablocastro\/elasticsearch,jimhooker2002\/elasticsearch,wuranbo\/elasticsearch,ESamir\/elasticsearch,wangtuo\/elasticsearch,Fsero\/elasticsearch,nknize\/elasticsearch,sscarduzio\/elasticsearch,mrorii\/elasticsearch,JSCooke\/elasticsearch,xuzha\/elasticsearch,drewr\/elasticsearch,dataduke\/elasticsearch,mbrukman\/elasticsearch,opendatasoft\/elasticsearch,wayeast\/elasticsearch,kcompher\/elasticsearch,vrkansagara\/elasticsearch,mapr\/elasticsearch,infusionsoft\/elasticsearch,khiraiwa\/elasticsearch,mapr\/elasticsearch,HarishAtGitHub\/elasticsearch,jpountz\/elasticsearch,petmit\/elasticsearch,himanshuag\/elasticsearch,MetSystem\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,mm0\/elasticsearch,dongjoon-hyun\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,ckclark\/elasticsearch,hafkensite\/elasticsearch,petabytedata\/elasticsearch,weipinghe\/elasticsearch,PhaedrusTheGreek\/elasticsearch,szroland\/elasticsearch,F0lha\/elasticsearch,alexbrasetvik\/elasticsearch,wayeast\/elasticsearch,Ansh90\/elasticsearch,davidvgalbraith\/elasticsearch,huanzhong\/elasticsearch,kingaj\/elasticsearch,Siddartha07\/elasticsearch,GlenRSmith\/elasticsearch,nomoa\/elasticsearch,nilabhsagar\/elasticsearch,Rygbee\/elasticsearch,golubev\/elasticsearch,ZTE-PaaS\/elasticsearch,opendatasoft\/elasticsearch,sposam\/elasticsearch,camilojd\/elasticsearch,phani546\/elasticsearch,nrkkalyan\/elasticsearch,HarishAtGitHub\/elasticsearch,diendt\/elasticsearch,ivansun1010\/elasticsearch,pablocastro\/elasticsearch,lydonchandra\/elasticsearch,jpountz\/elasticsearch,sc0ttkclark\/elasticsearch,Kakakakakku\/elasticsearch,jango2015\/elasticsearch,mjhennig\/elasticsearch,lydonchandra\/elasticsearch,nilabhsagar\/elasticsearch,infusionsoft\/elasticsearch,phani546\/elasticsearch,jw0201\/elastic,nilabhsagar\/elasticsearch,tebriel\/elasticsearch,mcku\/elasticsearch,nomoa\/elasticsearch,karthikjaps\/elasticsearch,schonfeld\/elasticsearch,jpountz\/elasticsearch,wenpos\/elasticsearch,sjohnr\/elasticsearch,kubum\/elasticsearch,btiernay\/elasticsearch,JackyMai\/elasticsearch,vvcephei\/elasticsearch,kcompher\/elasticsearch,AleksKochev\/elasticsearch,thecocce\/elasticsearch,nellicus\/elasticsearch,zeroctu\/elasticsearch,jimczi\/elasticsearch,xpandan\/elasticsearch,smflorentino\/elasticsearch,camilojd\/elasticsearch,mute\/elasticsearch,shreejay\/elasticsearch,Siddartha07\/elasticsearch,GlenRSmith\/elasticsearch,szroland\/elasticsearch,yongminxia\/elasticsearch,yongminxia\/elasticsearch,btiernay\/elasticsearch,jimhooker2002\/elasticsearch,hydro2k\/elasticsearch,markwalkom\/elasticsearch,Asimov4\/elasticsearch,zkidkid\/elasticsearch,loconsolutions\/elasticsearch,mute\/elasticsearch,vietlq\/elasticsearch,jimhooker2002\/elasticsearch,javachengwc\/elasticsearch,iantruslove\/elasticsearch,hafkensite\/elasticsearch,mute\/elasticsearch,kingaj\/elasticsearch,rhoml\/elasticsearch,ricardocerq\/elasticsearch,Kakakakakku\/elasticsearch,beiske\/elasticsearch,shreejay\/elasticsearch,lchennup\/elasticsearch,alexkuk\/elasticsearch,JSCooke\/elasticsearch,nrkkalyan\/elasticsearch,lzo\/elasticsearch-1,overcome\/elasticsearch,caengcjd\/elasticsearch,mnylen\/elasticsearch,combinatorist\/elasticsearch,Widen\/elasticsearch,coding0011\/elasticsearch,mkis-\/elasticsearch,zeroctu\/elasticsearch,alexshadow007\/elasticsearch,jango2015\/elasticsearch,lks21c\/elasticsearch,sauravmondallive\/elasticsearch,nrkkalyan\/elasticsearch,mapr\/elasticsearch,weipinghe\/elasticsearch,combinatorist\/elasticsearch,JackyMai\/elasticsearch,StefanGor\/elasticsearch,andrejserafim\/elasticsearch,hanst\/elasticsearch,dataduke\/elasticsearch,mapr\/elasticsearch,janmejay\/elasticsearch,knight1128\/elasticsearch,vingupta3\/elasticsearch,lzo\/elasticsearch-1,andrejserafim\/elasticsearch,fred84\/elasticsearch,umeshdangat\/elasticsearch,wangtuo\/elasticsearch,martinstuga\/elasticsearch,jeteve\/elasticsearch,strapdata\/elassandra-test,himanshuag\/elasticsearch,mmaracic\/elasticsearch,kingaj\/elasticsearch,achow\/elasticsearch,sarwarbhuiyan\/elasticsearch,awislowski\/elasticsearch,ImpressTV\/elasticsearch,ZTE-PaaS\/elasticsearch,trangvh\/elasticsearch,sneivandt\/elasticsearch,tsohil\/elasticsearch,Collaborne\/elasticsearch,i-am-Nathan\/elasticsearch,dantuffery\/elasticsearch,kalimatas\/elasticsearch,C-Bish\/elasticsearch,palecur\/elasticsearch,acchen97\/elasticsearch,truemped\/elasticsearch,mm0\/elasticsearch,mnylen\/elasticsearch,nknize\/elasticsearch,ImpressTV\/elasticsearch,ouyangkongtong\/elasticsearch,wangtuo\/elasticsearch,Charlesdong\/elasticsearch,achow\/elasticsearch,episerver\/elasticsearch,kimimj\/elasticsearch,Helen-Zhao\/elasticsearch,fooljohnny\/elasticsearch,MisterAndersen\/elasticsearch,zhiqinghuang\/elasticsearch,scorpionvicky\/elasticsearch,Flipkart\/elasticsearch,uschindler\/elasticsearch,Fsero\/elasticsearch,milodky\/elasticsearch,Kakakakakku\/elasticsearch,Microsoft\/elasticsearch,markwalkom\/elasticsearch,zkidkid\/elasticsearch,wayeast\/elasticsearch,strapdata\/elassandra-test,jaynblue\/elasticsearch,alexkuk\/elasticsearch,jaynblue\/elasticsearch,nellicus\/elasticsearch,fooljohnny\/elasticsearch,nomoa\/elasticsearch,queirozfcom\/elasticsearch,MichaelLiZhou\/elasticsearch,kalimatas\/elasticsearch,kevinkluge\/elasticsearch,combinatorist\/elasticsearch,snikch\/elasticsearch,AleksKochev\/elasticsearch,dpursehouse\/elasticsearch,s1monw\/elasticsearch,humandb\/elasticsearch,franklanganke\/elasticsearch,ricardocerq\/elasticsearch,ckclark\/elasticsearch,MaineC\/elasticsearch,alexshadow007\/elasticsearch,masterweb121\/elasticsearch,mikemccand\/elasticsearch,jw0201\/elastic,dylan8902\/elasticsearch,markharwood\/elasticsearch,davidvgalbraith\/elasticsearch,jpountz\/elasticsearch,Brijeshrpatel9\/elasticsearch,amit-shar\/elasticsearch,JervyShi\/elasticsearch,SergVro\/elasticsearch,hechunwen\/elasticsearch,sjohnr\/elasticsearch,polyfractal\/elasticsearch,jchampion\/elasticsearch,YosuaMichael\/elasticsearch,aglne\/elasticsearch,trangvh\/elasticsearch,fekaputra\/elasticsearch,qwerty4030\/elasticsearch,wittyameta\/elasticsearch,iantruslove\/elasticsearch,strapdata\/elassandra5-rc,Clairebi\/ElasticsearchClone,MjAbuz\/elasticsearch,obourgain\/elasticsearch,polyfractal\/elasticsearch,ulkas\/elasticsearch,btiernay\/elasticsearch,mjason3\/elasticsearch,iamjakob\/elasticsearch,khiraiwa\/elasticsearch,heng4fun\/elasticsearch,ZTE-PaaS\/elasticsearch,Shekharrajak\/elasticsearch,petmit\/elasticsearch,jsgao0\/elasticsearch,myelin\/elasticsearch,javachengwc\/elasticsearch,sdauletau\/elasticsearch,zkidkid\/elasticsearch,sneivandt\/elasticsearch,khiraiwa\/elasticsearch,overcome\/elasticsearch,mm0\/elasticsearch,kubum\/elasticsearch,NBSW\/elasticsearch,snikch\/elasticsearch,franklanganke\/elasticsearch,rmuir\/elasticsearch,wittyameta\/elasticsearch,drewr\/elasticsearch,chrismwendt\/elasticsearch,abibell\/elasticsearch,Stacey-Gammon\/elasticsearch,achow\/elasticsearch,F0lha\/elasticsearch,huanzhong\/elasticsearch,opendatasoft\/elasticsearch,Brijeshrpatel9\/elasticsearch,sscarduzio\/elasticsearch,apepper\/elasticsearch,areek\/elasticsearch,linglaiyao1314\/elasticsearch,vvcephei\/elasticsearch,girirajsharma\/elasticsearch,franklanganke\/elasticsearch,karthikjaps\/elasticsearch,mbrukman\/elasticsearch,iamjakob\/elasticsearch,ThiagoGarciaAlves\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,codebunt\/elasticsearch,mgalushka\/elasticsearch,markllama\/elasticsearch,gingerwizard\/elasticsearch,xpandan\/elasticsearch,pozhidaevak\/elasticsearch,geidies\/elasticsearch,ivansun1010\/elasticsearch,mm0\/elasticsearch,ZTE-PaaS\/elasticsearch,rajanm\/elasticsearch,amaliujia\/elasticsearch,LeoYao\/elasticsearch,slavau\/elasticsearch,petabytedata\/elasticsearch,brandonkearby\/elasticsearch,umeshdangat\/elasticsearch,xuzha\/elasticsearch,alexbrasetvik\/elasticsearch,szroland\/elasticsearch,alexkuk\/elasticsearch,loconsolutions\/elasticsearch,jeteve\/elasticsearch,masterweb121\/elasticsearch,winstonewert\/elasticsearch,ydsakyclguozi\/elasticsearch,kaneshin\/elasticsearch,elancom\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,lks21c\/elasticsearch,sneivandt\/elasticsearch,cnfire\/elasticsearch-1,LeoYao\/elasticsearch,slavau\/elasticsearch,mgalushka\/elasticsearch,AshishThakur\/elasticsearch,Chhunlong\/elasticsearch,tkssharma\/elasticsearch,overcome\/elasticsearch,18098924759\/elasticsearch,Siddartha07\/elasticsearch,dataduke\/elasticsearch,tkssharma\/elasticsearch,caengcjd\/elasticsearch,kimimj\/elasticsearch,ESamir\/elasticsearch,Shepard1212\/elasticsearch,MetSystem\/elasticsearch,mcku\/elasticsearch,slavau\/elasticsearch,clintongormley\/elasticsearch,awislowski\/elasticsearch,SaiprasadKrishnamurthy\/elasticsearch,gmarz\/elasticsearch,jchampion\/elasticsearch,kenshin233\/elasticsearch,kkirsche\/elasticsearch,chirilo\/elasticsearch,gingerwizard\/elasticsearch,linglaiyao1314\/elasticsearch,thecocce\/elasticsearch,mkis-\/elasticsearch,cwurm\/elasticsearch,avikurapati\/elasticsearch,jprante\/elasticsearch,szroland\/elasticsearch,huypx1292\/elasticsearch,areek\/elasticsearch,hanst\/elasticsearch,ThalaivaStars\/OrgRepo1,sdauletau\/elasticsearch,masterweb121\/elasticsearch,AndreKR\/elasticsearch,rajanm\/elasticsearch,amaliujia\/elasticsearch,tebriel\/elasticsearch,andrestc\/elasticsearch,mortonsykes\/elasticsearch,qwerty4030\/elasticsearch,loconsolutions\/elasticsearch,xpandan\/elasticsearch,ulkas\/elasticsearch,zkidkid\/elasticsearch,tcucchietti\/elasticsearch,chrismwendt\/elasticsearch,hechunwen\/elasticsearch,truemped\/elasticsearch,drewr\/elasticsearch,ckclark\/elasticsearch,MaineC\/elasticsearch,adrianbk\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,Asimov4\/elasticsearch,lks21c\/elasticsearch,huanzhong\/elasticsearch,diendt\/elasticsearch,aglne\/elasticsearch,pranavraman\/elasticsearch,iantruslove\/elasticsearch,MjAbuz\/elasticsearch,hirdesh2008\/elasticsearch,golubev\/elasticsearch,hanst\/elasticsearch,gmarz\/elasticsearch,tsohil\/elasticsearch,lzo\/elasticsearch-1,henakamaMSFT\/elasticsearch,alexbrasetvik\/elasticsearch,jchampion\/elasticsearch,camilojd\/elasticsearch,liweinan0423\/elasticsearch,mjhennig\/elasticsearch,kevinkluge\/elasticsearch,lks21c\/elasticsearch,Shepard1212\/elasticsearch,wittyameta\/elasticsearch,wangtuo\/elasticsearch,mikemccand\/elasticsearch,vroyer\/elassandra,hydro2k\/elasticsearch,cwurm\/elasticsearch,wbowling\/elasticsearch,ydsakyclguozi\/elasticsearch,KimTaehee\/elasticsearch,wimvds\/elasticsearch,truemped\/elasticsearch,TonyChai24\/ESSource,vietlq\/elasticsearch,Asimov4\/elasticsearch,KimTaehee\/elasticsearch,franklanganke\/elasticsearch,sauravmondallive\/elasticsearch,kalburgimanjunath\/elasticsearch,iacdingping\/elasticsearch,vingupta3\/elasticsearch,tahaemin\/elasticsearch,tkssharma\/elasticsearch,MisterAndersen\/elasticsearch,ouyangkongtong\/elasticsearch,hanswang\/elasticsearch,njlawton\/elasticsearch,mmaracic\/elasticsearch,aglne\/elasticsearch,zeroctu\/elasticsearch,thecocce\/elasticsearch,wayeast\/elasticsearch,VukDukic\/elasticsearch,infusionsoft\/elasticsearch,koxa29\/elasticsearch,nezirus\/elasticsearch,dylan8902\/elasticsearch,pritishppai\/elasticsearch,Liziyao\/elasticsearch,diendt\/elasticsearch,likaiwalkman\/elasticsearch,scorpionvicky\/elasticsearch,areek\/elasticsearch,vrkansagara\/elasticsearch,lmtwga\/elasticsearch,skearns64\/elasticsearch,djschny\/elasticsearch,nilabhsagar\/elasticsearch,nellicus\/elasticsearch,Chhunlong\/elasticsearch,cnfire\/elasticsearch-1,mgalushka\/elasticsearch,fernandozhu\/elasticsearch,Shepard1212\/elasticsearch,zeroctu\/elasticsearch,PhaedrusTheGreek\/elasticsearch,kunallimaye\/elasticsearch,markwalkom\/elasticsearch,wangtuo\/elasticsearch,shreejay\/elasticsearch,iamjakob\/elasticsearch,mmaracic\/elasticsearch,Collaborne\/elasticsearch,feiqitian\/elasticsearch,Rygbee\/elasticsearch,yuy168\/elasticsearch,fforbeck\/elasticsearch,elasticdog\/elasticsearch,thecocce\/elasticsearch,jaynblue\/elasticsearch,dongjoon-hyun\/elasticsearch,Microsoft\/elasticsearch,slavau\/elasticsearch,JackyMai\/elasticsearch,mohit\/elasticsearch,18098924759\/elasticsearch,wenpos\/elasticsearch,vroyer\/elasticassandra,dylan8902\/elasticsearch,ivansun1010\/elasticsearch,areek\/elasticsearch,sdauletau\/elasticsearch,kcompher\/elasticsearch,tsohil\/elasticsearch,nezirus\/elasticsearch,Helen-Zhao\/elasticsearch,Chhunlong\/elasticsearch,sscarduzio\/elasticsearch,beiske\/elasticsearch,caengcjd\/elasticsearch,weipinghe\/elasticsearch,JervyShi\/elasticsearch,nknize\/elasticsearch,humandb\/elasticsearch,mkis-\/elasticsearch,jaynblue\/elasticsearch,hafkensite\/elasticsearch,nellicus\/elasticsearch,onegambler\/elasticsearch,kimimj\/elasticsearch,mcku\/elasticsearch,Rygbee\/elasticsearch,javachengwc\/elasticsearch,lchennup\/elasticsearch,fekaputra\/elasticsearch,fred84\/elasticsearch,fforbeck\/elasticsearch,Asimov4\/elasticsearch,weipinghe\/elasticsearch,jchampion\/elasticsearch,MjAbuz\/elasticsearch,glefloch\/elasticsearch,coding0011\/elasticsearch,lmtwga\/elasticsearch,dataduke\/elasticsearch,sarwarbhuiyan\/elasticsearch,amit-shar\/elasticsearch,queirozfcom\/elasticsearch,MaineC\/elasticsearch,rhoml\/elasticsearch,fforbeck\/elasticsearch,scottsom\/elasticsearch,ydsakyclguozi\/elasticsearch,obourgain\/elasticsearch,mnylen\/elasticsearch,C-Bish\/elasticsearch,sarwarbhuiyan\/elasticsearch,xpandan\/elasticsearch,combinatorist\/elasticsearch,palecur\/elasticsearch,golubev\/elasticsearch,lchennup\/elasticsearch,tcucchietti\/elasticsearch,knight1128\/elasticsearch,artnowo\/elasticsearch,rajanm\/elasticsearch,wangyuxue\/elasticsearch,hanst\/elasticsearch,chirilo\/elasticsearch,kalburgimanjunath\/elasticsearch,pritishppai\/elasticsearch,pranavraman\/elasticsearch,Liziyao\/elasticsearch,LeoYao\/elasticsearch,Flipkart\/elasticsearch,humandb\/elasticsearch,mortonsykes\/elasticsearch,springning\/elasticsearch,lydonchandra\/elasticsearch,sdauletau\/elasticsearch,chrismwendt\/elasticsearch,vrkansagara\/elasticsearch,SergVro\/elasticsearch,pablocastro\/elasticsearch,rento19962\/elasticsearch,schonfeld\/elasticsearch,djschny\/elasticsearch,likaiwalkman\/elasticsearch,mmaracic\/elasticsearch,jchampion\/elasticsearch,robin13\/elasticsearch,pozhidaevak\/elasticsearch,henakamaMSFT\/elasticsearch,mute\/elasticsearch,HonzaKral\/elasticsearch,achow\/elasticsearch,ThalaivaStars\/OrgRepo1,mnylen\/elasticsearch,jbertouch\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,zhiqinghuang\/elasticsearch,rmuir\/elasticsearch,JackyMai\/elasticsearch,Widen\/elasticsearch,kalburgimanjunath\/elasticsearch,luiseduardohdbackup\/elasticsearch,milodky\/elasticsearch,lchennup\/elasticsearch,VukDukic\/elasticsearch,Ansh90\/elasticsearch,ThalaivaStars\/OrgRepo1,sarwarbhuiyan\/elasticsearch,lzo\/elasticsearch-1,gfyoung\/elasticsearch,feiqitian\/elasticsearch,weipinghe\/elasticsearch,adrianbk\/elasticsearch,kenshin233\/elasticsearch,Flipkart\/elasticsearch,uschindler\/elasticsearch,huypx1292\/elasticsearch,kimimj\/elasticsearch,shreejay\/elasticsearch,jeteve\/elasticsearch,jprante\/elasticsearch,iacdingping\/elasticsearch,zhiqinghuang\/elasticsearch,jbertouch\/elasticsearch,strapdata\/elassandra,polyfractal\/elasticsearch,linglaiyao1314\/elasticsearch,areek\/elasticsearch,loconsolutions\/elasticsearch,sjohnr\/elasticsearch,pranavraman\/elasticsearch,hafkensite\/elasticsearch,markwalkom\/elasticsearch,pritishppai\/elasticsearch,AndreKR\/elasticsearch,mbrukman\/elasticsearch,robin13\/elasticsearch,palecur\/elasticsearch,wuranbo\/elasticsearch,AndreKR\/elasticsearch,yuy168\/elasticsearch,tahaemin\/elasticsearch,Fsero\/elasticsearch,springning\/elasticsearch,rento19962\/elasticsearch,markllama\/elasticsearch,sreeramjayan\/elasticsearch,queirozfcom\/elasticsearch,codebunt\/elasticsearch,sposam\/elasticsearch,luiseduardohdbackup\/elasticsearch,lmtwga\/elasticsearch,mjhennig\/elasticsearch,jango2015\/elasticsearch,girirajsharma\/elasticsearch,gmarz\/elasticsearch,yuy168\/elasticsearch,skearns64\/elasticsearch,s1monw\/elasticsearch,gingerwizard\/elasticsearch,jaynblue\/elasticsearch,himanshuag\/elasticsearch,luiseduardohdbackup\/elasticsearch,mapr\/elasticsearch,girirajsharma\/elasticsearch,diendt\/elasticsearch,jw0201\/elastic,clintongormley\/elasticsearch,nazarewk\/elasticsearch,hanswang\/elasticsearch,SergVro\/elasticsearch,petmit\/elasticsearch,elasticdog\/elasticsearch,Uiho\/elasticsearch,smflorentino\/elasticsearch,geidies\/elasticsearch,bawse\/elasticsearch,LewayneNaidoo\/elasticsearch,pablocastro\/elasticsearch,andrestc\/elasticsearch,zeroctu\/elasticsearch,diendt\/elasticsearch,AshishThakur\/elasticsearch,nrkkalyan\/elasticsearch,Rygbee\/elasticsearch,lydonchandra\/elasticsearch,njlawton\/elasticsearch,dylan8902\/elasticsearch,mbrukman\/elasticsearch,brandonkearby\/elasticsearch,yongminxia\/elasticsearch,tebriel\/elasticsearch,JervyShi\/elasticsearch,sposam\/elasticsearch,C-Bish\/elasticsearch,liweinan0423\/elasticsearch,kubum\/elasticsearch,alexkuk\/elasticsearch,pritishppai\/elasticsearch,polyfractal\/elasticsearch,anti-social\/elasticsearch,mrorii\/elasticsearch,yanjunh\/elasticsearch,hechunwen\/elasticsearch,cwurm\/elasticsearch,coding0011\/elasticsearch,18098924759\/elasticsearch,kenshin233\/elasticsearch,tkssharma\/elasticsearch,micpalmia\/elasticsearch,karthikjaps\/elasticsearch,yongminxia\/elasticsearch,baishuo\/elasticsearch_v2.1.0-baishuo,EasonYi\/elasticsearch,mkis-\/elasticsearch,Widen\/elasticsearch,kevinkluge\/elasticsearch,JSCooke\/elasticsearch,ouyangkongtong\/elasticsearch,MisterAndersen\/elasticsearch,sauravmondallive\/elasticsearch,thecocce\/elasticsearch,F0lha\/elasticsearch,markharwood\/elasticsearch,aglne\/elasticsearch,yongminxia\/elasticsearch,nazarewk\/elasticsearch,markllama\/elasticsearch,overcome\/elasticsearch,elasticdog\/elasticsearch,dylan8902\/elasticsearch,uschindler\/elasticsearch,avikurapati\/elasticsearch,robin13\/elasticsearch,ckclark\/elasticsearch,lightslife\/elasticsearch,wittyameta\/elasticsearch,nezirus\/elasticsearch,ThalaivaStars\/OrgRepo1,lks21c\/elasticsearch,Collaborne\/elasticsearch,andrejserafim\/elasticsearch,pablocastro\/elasticsearch,caengcjd\/elasticsearch,infusionsoft\/elasticsearch,szroland\/elasticsearch,elasticdog\/elasticsearch,bestwpw\/elasticsearch,vvcephei\/elasticsearch,mikemccand\/elasticsearch,wuranbo\/elasticsearch,IanvsPoplicola\/elasticsearch,pranavraman\/elasticsearch,onegambler\/elasticsearch,jbertouch\/elasticsearch,huypx1292\/elasticsearch,jsgao0\/elasticsearch,lightslife\/elasticsearch,kingaj\/elasticsearch,mgalushka\/elasticsearch,yynil\/elasticsearch,Kakakakakku\/elasticsearch,episerver\/elasticsearch,likaiwalkman\/elasticsearch,Widen\/elasticsearch,TonyChai24\/ESSource,maddin2016\/elasticsearch,SergVro\/elasticsearch,luiseduardohdbackup\/elasticsearch,sreeramjayan\/elasticsearch,Siddartha07\/elasticsearch,naveenhooda2000\/elasticsearch,scottsom\/elasticsearch,slavau\/elasticsearch,acchen97\/elasticsearch,mjhennig\/elasticsearch,nazarewk\/elasticsearch,KimTaehee\/elasticsearch,mcku\/elasticsearch,rlugojr\/elasticsearch,liweinan0423\/elasticsearch,lzo\/elasticsearch-1,martinstuga\/elasticsearch,kevinkluge\/elasticsearch,Collaborne\/elasticsearch,vroyer\/elasticassandra,SergVro\/elasticsearch,ulkas\/elasticsearch,alexshadow007\/elasticsearch,wittyameta\/elasticsearch,hirdesh2008\/elasticsearch,elancom\/elasticsearch,LeoYao\/elasticsearch,AndreKR\/elasticsearch,kcompher\/elasticsearch,Uiho\/elasticsearch,achow\/elasticsearch,humandb\/elasticsearch,ThalaivaStars\/OrgRepo1,socialrank\/elasticsearch,ouyangkongtong\/elasticsearch,ulkas\/elasticsearch,andrestc\/elasticsearch,truemped\/elasticsearch,pozhidaevak\/elasticsearch,umeshdangat\/elasticsearch,mrorii\/elasticsearch,diendt\/elasticsearch,mohit\/elasticsearch,caengcjd\/elasticsearch,mjhennig\/elasticsearch,markllama\/elasticsearch,davidvgalbraith\/elasticsearch,karthikjaps\/elasticsearch,polyfractal\/elasticsearch,schonfeld\/elasticsearch,trangvh\/elasticsearch,AleksKochev\/elasticsearch,HarishAtGitHub\/elasticsearch,xpandan\/elasticsearch,maddin2016\/elasticsearch,adrianbk\/elasticsearch,avikurapati\/elasticsearch,mkis-\/elasticsearch,LeoYao\/elasticsearch,hirdesh2008\/elasticsearch,wbowling\/elasticsearch,Helen-Zhao\/elasticsearch,spiegela\/elasticsearch,sjohnr\/elasticsearch,a2lin\/elasticsearch,areek\/elasticsearch,strapdata\/elassandra-test,janmejay\/elasticsearch,fforbeck\/elasticsearch,bawse\/elasticsearch,chirilo\/elasticsearch,Kakakakakku\/elasticsearch,LewayneNaidoo\/elasticsearch,jango2015\/elasticsearch,lchennup\/elasticsearch,vingupta3\/elasticsearch,scorpionvicky\/elasticsearch,i-am-Nathan\/elasticsearch,djschny\/elasticsearch,a2lin\/elasticsearch,a2lin\/elasticsearch,yanjunh\/elasticsearch,hydro2k\/elasticsearch"} {"commit":"c83138c00390777f3d17ac492f09203e9e92284d","old_file":"README.adoc","new_file":"README.adoc","old_contents":"= Vert.x JDBC client\n\nimage:https:\/\/vertx.ci.cloudbees.com\/buildStatus\/icon?job=vert.x3-jdbc-client[\"Build Status\",link=\"https:\/\/vertx.ci.cloudbees.com\/view\/vert.x-3\/job\/vert.x3-jdbc-client\/\"]\n\nThis provides an asynchronous interface around a JDBC datasource so you can access data in any\ndatabase for which there is a JDBC driver.\n\nPlease see the in link:src\/main\/asciidoc\/index.adoc[source] documentation or the main documentation on the http:\/\/vertx.io\/docs\/#data_access[web-site] for a full description:\n","new_contents":"= Vert.x JDBC client\n\nimage:https:\/\/vertx.ci.cloudbees.com\/buildStatus\/icon?job=vert.x3-jdbc-client[\"Build Status\",link=\"https:\/\/vertx.ci.cloudbees.com\/view\/vert.x-3\/job\/vert.x3-jdbc-client\/\"]\n\nThis provides an asynchronous interface around a JDBC datasource so you can access data in any\ndatabase for which there is a JDBC driver.\n\nPlease see the main documentation on the web-site for a full description:\n\n* https:\/\/vertx.io\/docs\/vertx-jdbc-client\/java\/[Java documentation]\n* https:\/\/vertx.io\/docs\/vertx-jdbc-client\/js\/[JavaScript documentation]\n* https:\/\/vertx.io\/docs\/vertx-jdbc-client\/kotlin\/[Kotlin documentation]\n* https:\/\/vertx.io\/docs\/vertx-jdbc-client\/groovy\/[Groovy documentation]\n* https:\/\/vertx.io\/docs\/vertx-jdbc-client\/ruby\/[Ruby documentation]\n","subject":"Remove link to in-source docs","message":"Remove link to in-source docs\n","lang":"AsciiDoc","license":"apache-2.0","repos":"vert-x3\/vertx-jdbc-client"} {"commit":"1c1ebd765d712977d028450708e06cbff7051b7d","old_file":"docs\/modules\/ROOT\/pages\/wizard.adoc","new_file":"docs\/modules\/ROOT\/pages\/wizard.adoc","old_contents":"= Contracts Wizard\n:page-notoc:\n\nNot sure where to start? Use the interactive generator below to bootstrap your\ncontract and learn about the components offered in OpenZeppelin Contracts.\n\nTIP: Place the resulting contract in your `contracts` directory in order to compile it with a tool like Hardhat or Truffle. Consider reading our guide on xref:learn::developing-smart-contracts.adoc[Developing Smart Contracts] for more guidance!\n\n++++\n