commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
1cbc68fa55f0f015e0fc3d2bf9bd0b7c3835d0fc | Arduino-Serial-Sketch/run_serial_test/run_serial_test.ino | Arduino-Serial-Sketch/run_serial_test/run_serial_test.ino | void setup() {
Serial.begin(9600);
Serial.println("Application Started");
}
void loop() {
Serial.println("Hello From The Other Side!");
delay(1000);
}
| Add arduino serial test sketch | Add arduino serial test sketch | Arduino | mit | helmeligi/Arduino-Serial-to-Java-Application | |
b297c901ebe9418f4c8a2e880717afaae1a8845d | platformio/src_str/adc_string.ino | platformio/src_str/adc_string.ino | /*
Prototypical arduino/teensy code.
This one sends things as chars, which allows it to be a bit more flexible,
at the cost of efficiency. For example, sending the timestamp + two analog
channels takes 8 bytes in the more efficient code, but ~15 bytes in this code.
Additionally, you would need to parse the string on th... | Add string equivalent example for teensy | Add string equivalent example for teensy
| Arduino | mit | BLAM-Lab-Projects/finger-6 | |
7567b39b65c4979d9667c71e038722a4f1a68cb4 | examples/HIH61xx_Wire_demo/HIH61xx_Wire_demo.ino | examples/HIH61xx_Wire_demo/HIH61xx_Wire_demo.ino | // This example demonstrates how to use the HIH61xx class with the Wire library. The HIH61xx state machine
// enables others tasks to run whilst the HIH61xx is powering up etc.
#include <Wire.h>
#include <HIH61xx.h>
#include <AsyncDelay.h>
// The "hih" object must be created with a reference to the "Wire" object whic... | Add demo which uses the Wire library | Add demo which uses the Wire library
| Arduino | lgpl-2.1 | stevemarple/HIH61xx | |
f09501f3914c0f75f03301589bd95fc52c277990 | Arduino/LightPlayer/LightPlayer.ino | Arduino/LightPlayer/LightPlayer.ino | #include <SPI.h>
#include <SdFat.h>
#include <FAB_LED.h>
apa106<D, 6> LEDstrip;
rgb frame[200];
// Test with reduced SPI speed for breadboards.
// Change spiSpeed to SPI_FULL_SPEED for better performance
// Use SPI_QUARTER_SPEED for even slower SPI bus speed
const uint8_t spiSpeed = SPI_FULL_SPEED;
//-------------... | Add draft of Arduino Read SD/Write Lights loop | Add draft of Arduino Read SD/Write Lights loop
Lots of debugging in here. Currently only handles one file on the SD
card - no logic yet to switch to the next when the file runs out.
Timing is correct, though: every 50 ms, one LED refresh of all 200
lights is sent, then a new frame is read and we busy loop for the
rem... | Arduino | mit | godlygeek/LightRender,MaddAddaM/LightRender | |
9ffc28c686ed253fd251a1b6854cbcf4fdd4614d | examples/AnalogReadEasyctrl/AnalogReadEasyctrl.ino | examples/AnalogReadEasyctrl/AnalogReadEasyctrl.ino | /*
AnalogReadEasyctrl
Reads an analog input on pin 0.
Attach the center pin of a potentiometer to pin A0, and the outside pins to +5V and ground.
This example code is based on the Arduino example AnalogReadSerial
*/
#include "easyctrl.h"
Monitored<int> sensorValue("sensorValue");
// the setup routine runs ... | Add example of outputting an analog read value | Add example of outputting an analog read value
| Arduino | mit | arachnidlabs/easyctrl | |
af42a4926359833c4b3e2076f65c3601b32e523a | examples/TurnOnKelvinatorAC/TurnOnKelvinatorAC.ino | examples/TurnOnKelvinatorAC/TurnOnKelvinatorAC.ino |
#include <IRKelvinator.h>
IRKelvinatorAC kelvir(D1); // IR led controlled by Pin D1.
void printState() {
// Display the settings.
Serial.println("Kelvinator A/C remote is in the following state:");
Serial.printf(" Basic\n Power: %d, Mode: %d, Temp: %dC, Fan Speed: %d\n",
kelvir.getPower(), ... | Add example code for Kelvinator A/C control. | Add example code for Kelvinator A/C control.
| Arduino | lgpl-2.1 | markszabo/IRremoteESP8266,markszabo/IRremoteESP8266,markszabo/IRremoteESP8266,markszabo/IRremoteESP8266 | |
600c765ffe3ab6056c4b5baccc73e910fb098915 | libraries/DS18B20/examples/CosaDS18B20calc/CosaDS18B20calc.ino | libraries/DS18B20/examples/CosaDS18B20calc/CosaDS18B20calc.ino | /**
* @file CosaDS18B20calc.ino
* @version 1.0
*
* @section License
* Copyright (C) 2015, Mikael Patel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of ... | Add validation of DS18B20 temperature calculation. | Add validation of DS18B20 temperature calculation.
| Arduino | lgpl-2.1 | mikaelpatel/Cosa,mikaelpatel/Cosa,jeditekunum/Cosa,dansut/Cosa,dansut/Cosa,mikaelpatel/Cosa,jeditekunum/Cosa,jeditekunum/Cosa,dansut/Cosa,dansut/Cosa,jeditekunum/Cosa,mikaelpatel/Cosa | |
35c43899ec3b9d097248e5db6bc8cfd288a7a63a | sketches/clearButtonReceiver.ino | sketches/clearButtonReceiver.ino |
/*
Kevyn McPhail
Deeplocal
FOB Receiving module code
If Button A is pressed the the arduino returns 1, if button 2 is pressed the arduino returns 2
Button A input is PIN 3, Button B input is PIN 2, and the momentary button press input is PIN 4.
On the R02A receiving module, Button A is output D2, Button... | Add Kevyn's original clear button sketch | Add Kevyn's original clear button sketch
| Arduino | apache-2.0 | EndPointCorp/appctl,EndPointCorp/appctl | |
d8fcd069f9b3119663da95eb144d2aa811cb6399 | src/serial-print.ino | src/serial-print.ino | /* Header file that allows for writing of data from arduino to pi */
#ifndef serial-print_h
#define serial-print_h
#include "Arduino.h"
import processing.serial.*;
Serial mySerial;
PrintWriter output;
void setup() {
mySerial = new Serial( this, Serial.list()[0], 9600 );
output = createWriter( "data.txt" );
}
... | Add file to allow saving arduino output from serial | Add file to allow saving arduino output from serial
| Arduino | mit | AGilchrist0/balloon | |
4804830b82330a0788bb4ff5c16622daaecfd55a | examples/simpletest/simpletest.ino | examples/simpletest/simpletest.ino | #include <Arduino.h>
#include <SPI.h>
#include <ssd1351.h>
// use this to do Color c = RGB(...) instead of `RGB c = RGB(...)` or ssd1351::LowColor c = RGB(...)
// because it's slightly faster and guarantees you won't be sending wrong colours to the display.
// Choose color depth - LowColor and HighColor currently sup... | Add simple example for the library | Add simple example for the library
| Arduino | bsd-2-clause | kirberich/teensy_ssd1351,kirberich/teensy_ssd1351,kirberich/teensy_ssd1351,kirberich/teensy_ssd1351,kirberich/teensy_ssd1351 | |
ff3244494c84f403837590209e3026a5ac24b8c4 | examples/EthernetCustom/EthernetCustom.ino | examples/EthernetCustom/EthernetCustom.ino | #include <SPI.h>
#include <Ethernet.h>
#include "VdlkinoEthernet.h"
byte mac[] = {
0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192,168,1,177);
EthernetServer server(80);
VdlkinoEthernet vdlkino(14, 6, &server);
void url_get_analog_byte(void *block, char *url) {
VdlkinoBlock *vblock = (VdlkinoBlock*) block;... | Add example of a custom function in ethernet | Add example of a custom function in ethernet
| Arduino | mit | eduardoklosowski/vdlkino,eduardoklosowski/vdlkino | |
8e2da67c6a9a1724969e75e071a925718cf0ec87 | arduino_atu.ino | arduino_atu.ino | // Copyright 2013 David Turnbull AE9RB
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | Add example for using Arduino to read ATU data | Add example for using Arduino to read ATU data
| Arduino | apache-2.0 | AE9RB/peaberry,AE9RB/peaberry | |
f9643d3004928603d431360242875c313b4b171d | examples/BoardWithCustomData/BoardWithCustomData.ino | examples/BoardWithCustomData/BoardWithCustomData.ino | #include <DSPI.h>
#include <OpenBCI_32bit_Library.h>
#include <OpenBCI_32Bit_Library_Definitions.h>
unsigned long timer = 0;
byte LEDState = 0;
void setup() {
// Bring up the OpenBCI Board
board.begin();
timer = millis();
LEDState = 1;
digitalWrite(OPENBCI_PIN_LED,HIGH);
}
void loop() {
// Downsample... | Add example for sending custom data packets | Add example for sending custom data packets
| Arduino | mit | OpenBCI/OpenBCI_32bit_Libraries,OpenBCI/OpenBCI_32bit_Libraries | |
1ba08dd0ae83128c3574bfef3e198e8cac31f9e7 | tinkering/sensorboard/light_sensor_check/light_sensor_check.ino | tinkering/sensorboard/light_sensor_check/light_sensor_check.ino |
#define LED P1_3
#define Sensor P1_4
float reading;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(LED, OUTPUT);
pinMode(Sensor, INPUT);
}
void loop() {
// put your main code here, to run repeatedly:
// Turn on LED
digitalWrite(LED, HIGH);
// Read senso... | Test for photoresistor on sensor board made in class. | Test for photoresistor on sensor board made in class.
| Arduino | mit | fkmclane/derailleurs,fkmclane/derailleurs,fkmclane/derailleurs | |
543f1b7c048827d19877dad48c3b552d2d33eb1d | L9110_hbridge/L9110_simple_libtest/L9110_simple_libtest.ino | L9110_hbridge/L9110_simple_libtest/L9110_simple_libtest.ino | // Test L9110 library
#include <L9110.h>
L9110 L9110;
// setup pin for LiPo monitor
int LiPoMonitor = 2;
void setup()
{
pinMode(LiPoMonitor, INPUT);
}
void loop()
{
if (digitalRead(LiPoMonitor) == LOW)
{
L9110.forward();
delay(3000);
L9110.fullStop();
delay(500);
L9110.reverse();
del... | Test of new simple functions in L9110 library | Test of new simple functions in L9110 library
| Arduino | mit | AllenRDCo/Arduino | |
84afd3e29a0afa8d2c8e2b6e78fcf210f32982a6 | examples/pcf8574_arduinomicro/pcf8574_arduinomicro.ino | examples/pcf8574_arduinomicro/pcf8574_arduinomicro.ino | /* Example sketch for the PCF8574 for the purposes of showing how to use the interrupt-pin.
Attach the positive lead of an LED to PIN7 on the PCF8574 and the negative lead to GND,
a wire from Arduino-pin 13 to pin 3 on the PCF8474, a wire from the int-pin on the PCF8574
to Arduino-pin 7 and wires for SDA ... | Add an example for Arduino Micro (Atmega32u4) | Add an example for Arduino Micro (Atmega32u4)
| Arduino | mit | WereCatf/PCF8574_ESP | |
6dd824617791b455e89ff75aa02337549539e509 | serial/low-speed-transmitter/low-speed-transmitter.ino | serial/low-speed-transmitter/low-speed-transmitter.ino | void setup() {
pinMode(LED_BUILTIN, OUTPUT);
SerialUSB.begin(2000000);
}
void loop() {
static int counter = 0;
SerialUSB.println(counter, DEC);
counter = (counter + 1) % (1 << 8);
digitalWrite(LED_BUILTIN, counter >> 7 ? HIGH : LOW);
delay(20);
}
| Add low speed serial transmitter example | Add low speed serial transmitter example
| Arduino | mit | isaias-b/arduino-examples,isaias-b/arduino-examples,isaias-b/arduino-examples | |
9aba36ce4d37fb72c446addf5f355cdb2bce17df | examples/On_Chip_Calibration/On_Chip_Calibration.ino | examples/On_Chip_Calibration/On_Chip_Calibration.ino |
#include<CS5490.h>
#define rx 11
#define tx 12
/* Choose your board */
/* Arduino UNO and ESP8622 */
CS5490 line(MCLK_default,rx,tx);
/* ESP and MEGA (Uses Serial2)*/
//CS5490 line(MCLK_default);
void setup() {
//Initializing communication with CS5490
//600 is the default baud rate velocity.
line.begin(60... | Add On Chip Calibration example | Add On Chip Calibration example
| Arduino | mit | tiagolobao/CS5490 | |
915dba4fde478cfbca640cef0dfb5ea5c60a7ce0 | README.adoc | README.adoc | This is a small Java library for parsing the Cloud Foundry environment variables (VCAP_SERVICES and so on).
// the first line of this file is used as a description in the POM, so keep it short and sweet!
Download from Bintray:
image::https://api.bintray.com/packages/pivotal-labs-london/maven/cf-env/images/download.s... | This is a small Java library for parsing the Cloud Foundry environment variables (VCAP_SERVICES and so on).
// the first line of this file is used as a description in the POM, so keep it short and sweet!
Download from Bintray:
image::https://api.bintray.com/packages/pivotal-labs-london/maven/cf-env/images/download.s... | Document how to use the Bintray repo | Document how to use the Bintray repo
| AsciiDoc | bsd-2-clause | pivotal/cf-env |
3f83df33d9efe5b4a7f2fe0ad7bcce0f586401d2 | README.adoc | README.adoc | = Auxly
image:http://img.shields.io/:license-mit-blue.svg["License", link="https://github.com/jeffrimko/Qprompt/blob/master/LICENSE"]
image:https://travis-ci.org/jeffrimko/Auxly.svg?branch=master["Build Status"]
== Introduction
This project provides a Python 2.7/3.x library for common tasks especially when writing sh... | = Auxly
image:http://img.shields.io/:license-mit-blue.svg["License", link="https://github.com/jeffrimko/Qprompt/blob/master/LICENSE"]
image:https://travis-ci.org/jeffrimko/Auxly.svg?branch=master["Build Status"]
== Introduction
This project provides a Python 2.7/3.x library for common tasks especially when writing sh... | Undo include change in readme. | Undo include change in readme.
| AsciiDoc | mit | jeffrimko/Auxly |
f1b569bfc0f68e487de62febdf6a286d939fa5ae | modules/configuring-scale-bounds-knative.adoc | modules/configuring-scale-bounds-knative.adoc | // Module included in the following assemblies:
//
// * serverless/configuring-knative-serving-autoscaling.adoc
[id="configuring-scale-bounds-knative_{context}"]
= Configuring scale bounds Knative Serving autoscaling
The `minScale` and `maxScale` annotations can be used to configure the minimum and maximum number of ... | // Module included in the following assemblies:
//
// * serverless/configuring-knative-serving-autoscaling.adoc
[id="configuring-scale-bounds-knative_{context}"]
= Configuring scale bounds Knative Serving autoscaling
The `minScale` and `maxScale` annotations can be used to configure the minimum and maximum number of ... | Fix spec.template.metadata.annotations for min and max scale example | Fix spec.template.metadata.annotations for min and max scale example
| AsciiDoc | apache-2.0 | vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs |
e0992105f2fbecca2909a19b0cdbbb74aa20a561 | docs/index.asciidoc | docs/index.asciidoc | = Packetbeat reference
:libbeat: http://www.elastic.co/guide/en/beats/libbeat/1.0.0-rc1
:version: 1.0.0-rc1
include::./overview.asciidoc[]
include::./gettingstarted.asciidoc[]
include::./configuration.asciidoc[]
include::./command-line.asciidoc[]
include::./capturing.asciidoc[]
include::./https.asciidoc[]
includ... | = Packetbeat reference
:libbeat: http://www.elastic.co/guide/en/beats/libbeat/master
:version: master
include::./overview.asciidoc[]
include::./gettingstarted.asciidoc[]
include::./configuration.asciidoc[]
include::./command-line.asciidoc[]
include::./capturing.asciidoc[]
include::./https.asciidoc[]
include::./f... | Use master version in docs | Use master version in docs
| AsciiDoc | mit | yapdns/yapdnsbeat,yapdns/yapdnsbeat |
0563338e61781db621d9bfbcf201a4c2c753dae4 | README.adoc | README.adoc | = AsciiBinder
image:https://badge.fury.io/rb/ascii_binder.svg["Gem Version", link="https://badge.fury.io/rb/ascii_binder"]
AsciiBinder is an AsciiDoc-based system for authoring and publishing closely related documentation sets from a single source.
== Learn More
* See the http://www.asciibinder.org[homepage].
* Hav... | = AsciiBinder
image:https://badge.fury.io/rb/ascii_binder.svg["Gem Version", link="https://badge.fury.io/rb/ascii_binder"]
AsciiBinder is an AsciiDoc-based system for authoring and publishing closely related documentation sets from a single source.
== Learn More
* Have a gander at the https://github.com/redhatacces... | Update docs link to point to docs repo | Update docs link to point to docs repo
| AsciiDoc | mit | nhr/ascii_binder,redhataccess/doc_site_builder,redhataccess/ascii_binder,redhataccess/ascii_binder,redhataccess/doc_site_builder,nhr/ascii_binder |
3ab42490a909b1b2ba73652ffa172172bea9ad85 | README.adoc | README.adoc | :figure-caption!:
image::https://travis-ci.org/mmjmanders/ng-iban.svg?branch=master[title="travis status", alt="travis status", link="https://travis-ci.org/mmjmanders/ng-iban"]
image::https://app.wercker.com/status/eb4337041c62e162c5dd7af43122647c/m[title="wercker status", alt="wercker status", link="https://app.werc... | :figure-caption!:
image::https://travis-ci.org/mmjmanders/ng-iban.svg?branch=master[title="travis status", alt="travis status", link="https://travis-ci.org/mmjmanders/ng-iban"]
image::https://app.wercker.com/status/eb4337041c62e162c5dd7af43122647c/m[title="wercker status", alt="wercker status", link="https://app.werc... | Update documentation for NPM support | Update documentation for NPM support
| AsciiDoc | mit | mmjmanders/ng-iban |
768aa1fd4d785b7ab5ccbeca3949f7ed8e73d6d6 | README.adoc | README.adoc | = Infinispan Cluster Manager
image: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/"]
This is a cluster manager implementation for Vert.x that uses http://infinispan.org[Infinispan].
Please see the in-sour... | = Infinispan Cluster Manager
image: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/"]
This is a cluster manager implementation for Vert.x that uses http://infinispan.org[Infinispan].
Please see the in-sour... | Revert "Revert "Revert "Revert "Test trigger on push"""" | Revert "Revert "Revert "Revert "Test trigger on push""""
This reverts commit 2e835acb457e13f3fc5a49459604488388d80cae.
| AsciiDoc | apache-2.0 | vert-x3/vertx-infinispan |
bea0a3216104837de75798f1cea3ad6202791160 | documentation/src/main/asciidoc/ch14.asciidoc | documentation/src/main/asciidoc/ch14.asciidoc | [[validator-further-reading]]
== Further reading
Last but not least, a few pointers to further information.
A great source for examples is the Bean Validation TCK which is available for anonymous access on
https://github.com/beanvalidation/beanvalidation-tck/[GitHub]. In particular the TCK's
https://github.com/beanva... | [[validator-further-reading]]
== Further reading
Last but not least, a few pointers to further information.
A great source for examples is the Bean Validation TCK which is available for anonymous access on
https://github.com/beanvalidation/beanvalidation-tck/[GitHub]. In particular the TCK's
https://github.com/beanva... | Update the links to the forum | Update the links to the forum
| AsciiDoc | apache-2.0 | marko-bekhta/hibernate-validator,marko-bekhta/hibernate-validator,hibernate/hibernate-validator,marko-bekhta/hibernate-validator,hibernate/hibernate-validator,hibernate/hibernate-validator |
77ccf579cb4a5d8795337d2b85b946c5ecf85475 | adoc/regtest-intro.adoc | adoc/regtest-intro.adoc | == Introduction to Regression Test Mode
Bitcoin 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 reor... | == Introduction to Regression Test Mode
Bitcoin 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 reor... | Remove reference to deleted scripts. | Remove reference to deleted scripts. | AsciiDoc | apache-2.0 | OmniLayer/OmniJ,OmniLayer/OmniJ,OmniLayer/OmniJ |
d0d63e6172efc6e7eb7ca3e8fd29b3a670c18899 | subprojects/docs/src/docs/userguide/licenses.adoc | subprojects/docs/src/docs/userguide/licenses.adoc | // Copyright 2017 the original author or authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable... | // Copyright 2017 the original author or authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable... | Add license information to docs clarifying build scan plugin license | Add license information to docs clarifying build scan plugin license
| AsciiDoc | apache-2.0 | 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,lsmai... |
aba970033b1101b2c1e175a4ba49e513bd4519f7 | monitoring/monitoring.adoc | monitoring/monitoring.adoc | [id='monitoring']
= Monitoring
include::modules/common-attributes.adoc[]
:context: monitoring
toc::[]
{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 a... | [id='monitoring']
= Monitoring
include::modules/common-attributes.adoc[]
:context: monitoring
toc::[]
{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 a... | Remove the deprecated etcd section | Remove the deprecated etcd section
| AsciiDoc | apache-2.0 | vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs |
e71e5cab507a8949b72782b92c3b9f74b33ec729 | modules/openshift-developer-cli-installing-odo-on-linux.adoc | modules/openshift-developer-cli-installing-odo-on-linux.adoc | // Module included in the following assemblies:
//
// * cli_reference/openshift_developer_cli/installing-odo.adoc
[id="installing-odo-on-linux"]
= Installing {odo-title} on Linux
== Binary installation
----
# curl -L https://mirror.openshift.com/pub/openshift-v4/clients/odo/latest/odo-darwin-amd64 -o /usr/loca... | // Module included in the following assemblies:
//
// * cli_reference/openshift_developer_cli/installing-odo.adoc
[id="installing-odo-on-linux"]
= Installing {odo-title} on Linux
== Binary installation
----
# curl -L https://mirror.openshift.com/pub/openshift-v4/clients/odo/latest/odo-linux-amd64 -o /usr/local... | Fix url to odo linux binary | Fix url to odo linux binary
| AsciiDoc | apache-2.0 | vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs |
4d61fa8fd9011eb6cf4e899c64a8b81fcb2c152c | Documentation/ArchitectureDocumentation.asciidoc | Documentation/ArchitectureDocumentation.asciidoc | ifdef::env-github[]
:imagesdir: https://github.com/Moose2Model/Moose2Model/blob/master/Documentation/images/
endif::[]
:toc:
:toc-placement!:
toc::[]
This documentation follows the arc42 template for architecture documentation (https://arc42.org/).
1 Introduction and Goals
========================
1.1 Requirements ... | ifdef::env-github[]
:imagesdir: https://github.com/Moose2Model/Moose2Model/blob/master/Documentation/images/
endif::[]
:toc:
:toc-placement!:
toc::[]
This documentation follows the arc42 template for architecture documentation (https://arc42.org/).
1 Introduction and Goals
========================
1.1 Requirements ... | Add arc 42 Architecture Constraints | Add arc 42 Architecture Constraints | AsciiDoc | mit | RainerWinkler/Moose-Diagram |
f31704a0bf79e8a86e03ad938eb4cdd12295d4ff | community/forum.adoc | community/forum.adoc | = Forum (free support)
:awestruct-layout: base
:showtitle:
== Usage questions
If you have a question about OptaPlanner, just ask our friendly community:
* Ask on http://www.jboss.org/drools/lists[the Drools user mailing list] (recommended).
* Or ask on http://stackoverflow.com/questions/tagged/optaplanner[StackOver... | = Forum
:awestruct-layout: base
:showtitle:
== Usage questions
If you have a question about OptaPlanner, just ask our friendly community:
* *http://stackoverflow.com/questions/tagged/optaplanner[Ask a usage question on StackOverflow.]*
* To start a discussion, use https://groups.google.com/forum/#!forum/optaplanner... | Split optaplanner's dev list away from drools's mailing list | Split optaplanner's dev list away from drools's mailing list
| AsciiDoc | apache-2.0 | 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,drools... |
964b9a214abd95783bc74eeb7a91a091a9deb2cc | pages/apim/3.x/kubernetes/apim-kubernetes-overview.adoc | pages/apim/3.x/kubernetes/apim-kubernetes-overview.adoc | [[apim-kubernetes-overview]]
= Kubernetes plugin
:page-sidebar: apim_3_x_sidebar
:page-permalink: apim/3.x/apim_kubernetes_overview.html
:page-folder: apim/kubernetes
:page-layout: apim3x
:page-liquid:
[label label-version]#New in version 3.7#
== Overview
APIM 3.7.0 introduces a Kubernetes plugin for APIM Gateway al... | [[apim-kubernetes-overview]]
= Kubernetes plugin
:page-sidebar: apim_3_x_sidebar
:page-permalink: apim/3.x/apim_kubernetes_overview.html
:page-folder: apim/kubernetes
:page-layout: apim3x
:page-liquid:
[label label-version]#New in version 3.13#
== Overview
APIM 3.13 introduces a Kubernetes plugin for APIM Gateway al... | Fix APIM version to 3.13 | Fix APIM version to 3.13
| AsciiDoc | apache-2.0 | gravitee-io/gravitee-docs,gravitee-io/gravitee-docs,gravitee-io/gravitee-docs |
fbd8d2ed399230a8e3e1d469e9825eb0602fb981 | dsl/camel-cli-connector/src/main/docs/cli-connector.adoc | dsl/camel-cli-connector/src/main/docs/cli-connector.adoc | = CLI Connector Component
:doctitle: CLI Connector
:shortname: cli-connector
:artifactid: camel-cli-connector
:description: Runtime adapter connecting with Camel CLI
:since: 3.19
:supportlevel: Preview
*Since Camel {since}*
The camel-cli-connector allows the Camel CLI to be able to manage running Camel integrations.
... | = CLI Connector Component
:doctitle: CLI Connector
:shortname: cli-connector
:artifactid: camel-cli-connector
:description: Runtime adapter connecting with Camel CLI
:since: 3.19
:supportlevel: Preview
//Manually maintained attributes
:camel-spring-boot-name: cli-connector
*Since Camel {since}*
The camel-cli-connecto... | Add spring-boot link in doc | Add spring-boot link in doc
| AsciiDoc | apache-2.0 | 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,christo... |
5059698c58cac5335abdf4bb35de4830764ca308 | documentation/src/docs/asciidoc/release-notes.adoc | documentation/src/docs/asciidoc/release-notes.adoc | [[release-notes]]
== Release Notes
:numbered!:
include::release-notes-5.0.0-ALPHA.adoc[]
include::release-notes-5.0.0-M1.adoc[]
include::release-notes-5.0.0-M2.adoc[]
include::release-notes-5.0.0-M3.adoc[]
include::release-notes-5.0.0-M4.adoc[]
include::release-notes-5.0.0-M5.adoc[]
include::release-notes-5.0.0... | [[release-notes]]
== Release Notes
:numbered!:
include::release-notes-5.1.0-M1.adoc[]
include::release-notes-5.0.0.adoc[]
include::release-notes-5.0.0-RC3.adoc[]
include::release-notes-5.0.0-RC2.adoc[]
include::release-notes-5.0.0-RC1.adoc[]
include::release-notes-5.0.0-M6.adoc[]
include::release-notes-5.0.0-M5... | Order release notes from newest to oldest | Order release notes from newest to oldest
Issue: #1066
| AsciiDoc | epl-1.0 | sbrannen/junit-lambda,junit-team/junit-lambda |
6b09164a364abe0e0b7531aca2380a4f33f5c8e4 | README.asciidoc | README.asciidoc | == Fusioninventory Plugin
https://coveralls.io/r/fusioninventory/fusioninventory-for-glpi[image:https://coveralls.io/repos/fusioninventory/fusioninventory-for-glpi/badge.svg]
This plugin makes GLPI to process various types of tasks for Fusioninventory agents:
* Computer inventory
* Network discovery
* Network (SNMP)... | == Fusioninventory Plugin
image:https://travis-ci.org/fusioninventory/fusioninventory-for-glpi.svg?branch=master["Build Status", link="https://travis-ci.org/fusioninventory/fusioninventory-for-glpi"]
image:https://coveralls.io/repos/fusioninventory/fusioninventory-for-glpi/badge.svg["Coverage Status", link="https://co... | Add travis badge + fix coverage badge | Add travis badge + fix coverage badge
| AsciiDoc | agpl-3.0 | orthagh/fusioninventory-for-glpi,orthagh/fusioninventory-for-glpi,orthagh/fusioninventory-for-glpi,orthagh/fusioninventory-for-glpi,orthagh/fusioninventory-for-glpi |
d9579412a0c893779ad2ab5399bb95a667667309 | README.asciidoc | README.asciidoc | == Fusioninventory Plugin
https://coveralls.io/r/fusioninventory/fusioninventory-for-glpi[image:https://coveralls.io/repos/fusioninventory/fusioninventory-for-glpi/badge.svg]
This plugin makes GLPI to process various types of tasks for Fusioninventory agents:
* Computer inventory
* Network discovery
* Network (SNMP)... | == Fusioninventory Plugin
image:https://travis-ci.org/fusioninventory/fusioninventory-for-glpi.svg?branch=master["Build Status", link="https://travis-ci.org/fusioninventory/fusioninventory-for-glpi"]
image:https://coveralls.io/repos/fusioninventory/fusioninventory-for-glpi/badge.svg["Coverage Status", link="https://co... | Add travis badge + fix coverage badge | Add travis badge + fix coverage badge
| AsciiDoc | agpl-3.0 | 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,... |
89e7da34b9c4b072e3caab12dbe765b0a33be272 | README.adoc | README.adoc | = Hawkular Android Client
This repository contains the source code for the Hawkular Android application.
== License
* http://www.apache.org/licenses/LICENSE-2.0.html[Apache Version 2.0]
== Building
ifdef::env-github[]
[link=https://travis-ci.org/hawkular/hawkular-android-client]
image:https://travis-ci.org/hawkula... | = Hawkular Android Client
This repository contains the source code for the Hawkular Android application.
== License
* http://www.apache.org/licenses/LICENSE-2.0.html[Apache Version 2.0]
== Building
ifdef::env-github[]
[link=https://travis-ci.org/hawkular/hawkular-android-client]
image:https://travis-ci.org/hawkula... | Update readme with Wiki reference. | Update readme with Wiki reference.
| AsciiDoc | apache-2.0 | 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 |
81ac2b91b6a6b7cf2422f6aabdd4164434b295dd | README.adoc | README.adoc | = Spring Boot and Two DataSources
This project demonstrates how to use two `DataSource` s with Spring Boot 2.0.
It utilizes:
* Spring Data https://github.com/spring-projects/spring-data-jpa[JPA] / https://github.com/spring-projects/spring-data-rest[REST]
* https://github.com/flyway/flyway[Flyway] migrations for the... | = Spring Boot and Two DataSources
This project demonstrates how to use two `DataSource` s with Spring Boot 2.1.
It utilizes:
* Spring Data https://github.com/spring-projects/spring-data-jpa[JPA] / https://github.com/spring-projects/spring-data-rest[REST]
* https://github.com/flyway/flyway[Flyway] migrations for the... | Adjust readme to Spring Boot 2.1 | Adjust readme to Spring Boot 2.1
| AsciiDoc | unlicense | drumonii/SpringBootTwoDataSources |
ed1b52faf367fc3867a877f0fb63b3cf7034dcab | README.adoc | README.adoc | = Snoop - A Discovery Service for Java EE
Snoop is an experimental registration and discovery service for Java EE based microservices.
== Getting Started
. Start the link:snoop-service.adoc[Snoop Service]
. link:service-registration.adoc[Service Registration]
. link:service-discovery.adoc[Service Discovery]
== Mave... | = Snoop - A Discovery Service for Java EE
Snoop is an experimental registration and discovery service for Java EE based microservices.
== Getting Started
. Start the link:snoop-service.adoc[Snoop Service]
. link:service-registration.adoc[Service Registration]
. link:service-discovery.adoc[Service Discovery]
== Mave... | Add reference to classloader issue and workaround | Add reference to classloader issue and workaround
| AsciiDoc | mit | ivargrimstad/snoopee,ivargrimstad/snoopee,ivargrimstad/snoopee,ivargrimstad/snoop,ivargrimstad/snoop,ivargrimstad/snoop |
475366b5f1daeb419f2805ee1e9eefad4df70803 | dsl/camel-cli-connector/src/main/docs/cli-connector.adoc | dsl/camel-cli-connector/src/main/docs/cli-connector.adoc | = CLI Connector Component
:doctitle: CLI Connector
:shortname: cli-connector
:artifactid: camel-cli-connector
:description: Runtime adapter connecting with Camel CLI
:since: 3.19
:supportlevel: Preview
//Manually maintained attributes
:camel-spring-boot-name: cli-connector
*Since Camel {since}*
The camel-cli-connecto... | = CLI Connector Component
:doctitle: CLI Connector
:shortname: cli-connector
:artifactid: camel-cli-connector
:description: Runtime adapter connecting with Camel CLI
:since: 3.19
:supportlevel: Preview
*Since Camel {since}*
The camel-cli-connector allows the Camel CLI to be able to manage running Camel integrations.
... | Revert "Add spring-boot link in doc" | Revert "Add spring-boot link in doc"
This reverts commit fbd8d2ed399230a8e3e1d469e9825eb0602fb981.
| AsciiDoc | apache-2.0 | 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,chris... |
c55eb2c72d299f4d15f5f711ab62d13a59b39f28 | LICENSE.adoc | LICENSE.adoc |
Copyright 2016 higherfrequencytrading.com
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,... |
== Copyright 2016 higherfrequencytrading.com
Licensed under the *Apache License, Version 2.0* (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wri... | Migrate to Apache v2.0 license | Migrate to Apache v2.0 license
| AsciiDoc | apache-2.0 | OpenHFT/Chronicle-Bytes |
009eb4b932af11292fcd86c9427a867dfc4486dc | operators/olm-webhooks.adoc | operators/olm-webhooks.adoc | [id="olm-webhooks"]
= Managing admission webhooks in Operator Lifecycle Manager
include::modules/common-attributes.adoc[]
:context: olm-webhooks
toc::[]
Validating and mutating admission webhooks allow Operator authors to intercept,
modify, and accept or reject resources before they are handled by the Operator
contro... | [id="olm-webhooks"]
= Managing admission webhooks in Operator Lifecycle Manager
include::modules/common-attributes.adoc[]
:context: olm-webhooks
toc::[]
Validating and mutating admission webhooks allow Operator authors to intercept,
modify, and accept or reject resources before they are saved to the object store
and ... | Edit to OLM webhook workflow | Edit to OLM webhook workflow
| AsciiDoc | apache-2.0 | vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs |
e84b61358f35d622c1da53330f5140b011053dbb | docs/reference/migration/index.asciidoc | docs/reference/migration/index.asciidoc | [[breaking-changes]]
= Breaking changes
[partintro]
--
This section discusses the changes that you need to be aware of when migrating
your application from one version of Elasticsearch to another.
As a general rule:
* Migration between major versions -- e.g. `1.x` to `2.x` --
requires a <<restart-upgrade,full clus... | [[breaking-changes]]
= Breaking changes
[partintro]
--
This section discusses the changes that you need to be aware of when migrating
your application from one version of Elasticsearch to another.
As a general rule:
* Migration between major versions -- e.g. `1.x` to `2.x` --
requires a <<restart-upgrade,full clus... | Fix version order for breaking changes docs | Fix version order for breaking changes docs
| AsciiDoc | apache-2.0 | 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/ela... |
bb696411acc9f2bed981b1f3c9aa5a13cdfd91c8 | doc/resources/doc/sources/index.adoc | doc/resources/doc/sources/index.adoc | = Edge Documentation
Edge is a starting point for creating Clojure projects.
Not sure if Edge is for you? See <<why-edge.adoc#,Why Edge?>>.
== Get Started
Are you new to Edge?
This is the place to start!
. link:https://clojure.org/guides/getting_started[Install clj] (<<windows.adoc#,Additional notes for installing ... | = Edge Documentation
Edge is a starting point for creating Clojure projects of all sizes.
== Get Started
Are you new to Edge?
This is the place to start!
. link:https://clojure.org/guides/getting_started[Install clj] (<<windows.adoc#,Additional notes for installing on Windows>>)
. <<editor.adoc#,Set up your editor ... | Remove Why Edge? link from preamble | Remove Why Edge? link from preamble
It was not useful.
| AsciiDoc | mit | juxt/edge,juxt/edge |
920d5fe7ab3e56c7a2bc8ebaa186698948ab9b23 | documentation/src/docs/asciidoc/overview.adoc | documentation/src/docs/asciidoc/overview.adoc | [[overview]]
== Overview
The goal of this document is to provide comprehensive reference documentation for both
programmers writing tests and extension authors.
WARNING: Work in progress!
=== Supported Java Versions
JUnit 5 only supports Java 8 and above. However, you can still test classes compiled with
lower ver... | [[overview]]
== Overview
The goal of this document is to provide comprehensive reference documentation for both
programmers writing tests and extension authors.
WARNING: Work in progress!
=== Supported Java Versions
JUnit 5 only supports Java 8 and above. However, you can still test classes compiled with
lower ver... | Apply Spotless to User Guide | Apply Spotless to User Guide
------------------------------------------------------------------------
On behalf of the community, the JUnit Lambda Team thanks Klarna AB
(http://www.klarna.com) for supporting the JUnit crowdfunding campaign!
------------------------------------------------------------------------
| AsciiDoc | epl-1.0 | marcphilipp/junit5,marcphilipp/junit-lambda,sbrannen/junit-lambda,junit-team/junit-lambda |
babf52d8f8101d018e357bdd47e5ccb9d8af14d5 | src/jqassistant/structure.adoc | src/jqassistant/structure.adoc | [[structure:Default]]
[role=group,includesConstraints="structure:packagesShouldConformToTheMainBuildingBlocks"]
All 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:
[[structure:packagesShould... | [[structure:Default]]
[role=group,includesConstraints="structure:packagesShouldConformToTheMainBuildingBlocks"]
All 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:
[[structure:packagesShould... | Use 'Main'-Label instead of type-attribute. | Use 'Main'-Label instead of type-attribute.
| AsciiDoc | apache-2.0 | tullo/biking2,michael-simons/biking2,tullo/biking2,tullo/biking2,tullo/biking2,michael-simons/biking2,michael-simons/biking2,michael-simons/biking2 |
8299e439b97f466d83a34db371b265dd265a1267 | documentation/src/docs/asciidoc/release-notes/release-notes-5.5.0-M2.adoc | documentation/src/docs/asciidoc/release-notes/release-notes-5.5.0-M2.adoc | [[release-notes-5.5.0-M2]]
== 5.5.0-M2️
*Date of Release:* ❓
*Scope:* ❓
For a complete list of all _closed_ issues and pull requests for this release, consult
the link:{junit5-repo}+/milestone/37?closed=1+[5.5 M2] milestone page in the JUnit repository
on GitHub.
[[release-notes-5.5.0-M2-junit-platform]]
=== JUnit... | [[release-notes-5.5.0-M2]]
== 5.5.0-M2️
*Date of Release:* ❓
*Scope:* ❓
For a complete list of all _closed_ issues and pull requests for this release, consult
the link:{junit5-repo}+/milestone/37?closed=1+[5.5 M2] milestone page in the JUnit repository
on GitHub.
[[release-notes-5.5.0-M2-junit-platform]]
=== JUnit... | Clean up 5.5 M2 release notes | Clean up 5.5 M2 release notes
The following feature enhancement was already shipped with 5.5 M1:
* `@ValueSource` now additionally supports literal values
of type `boolean` for parameterized tests.
| AsciiDoc | epl-1.0 | sbrannen/junit-lambda,junit-team/junit-lambda |
15d46988dc74d29a3c4567e83de60717b4683561 | docs/reference/analysis/tokenfilters/keyword-marker-tokenfilter.asciidoc | docs/reference/analysis/tokenfilters/keyword-marker-tokenfilter.asciidoc | [[analysis-keyword-marker-tokenfilter]]
=== Keyword Marker Token Filter
Protects words from being modified by stemmers. Must be placed before
any stemming filters.
[cols="<,<",options="header",]
|=======================================================================
|Setting |Description
|`keywords` |A list of words... | [[analysis-keyword-marker-tokenfilter]]
=== Keyword Marker Token Filter
Protects words from being modified by stemmers. Must be placed before
any stemming filters.
[cols="<,<",options="header",]
|=======================================================================
|Setting |Description
|`keywords` |A list of words... | Fix typo in sample json | Fix typo in sample json
Fixes #9253
| AsciiDoc | apache-2.0 | 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,sau... |
b8fb429c0b551c1a34b0fd294dac90a297d774be | AUTHORS.adoc | AUTHORS.adoc | = Authors and contributors
- Simon Cruanes (`companion_cube`)
- Drup (Gabriel Radanne)
- Jacques-Pascal Deplaix
- Nicolas Braud-Santoni
- Whitequark (Peter Zotov)
- hcarty (Hezekiah M. Carty)
- struktured (Carmelo Piccione)
- Bernardo da Costa
- Vincent Bernardoff (vbmithr)
- Emmanuel Surleau (emm)
- Guillaume Bury (g... | = Authors and contributors
- Simon Cruanes (`companion_cube`)
- Drup (Gabriel Radanne)
- Jacques-Pascal Deplaix
- Nicolas Braud-Santoni
- Whitequark (Peter Zotov)
- hcarty (Hezekiah M. Carty)
- struktured (Carmelo Piccione)
- Bernardo da Costa
- Vincent Bernardoff (vbmithr)
- Emmanuel Surleau (emm)
- Guillaume Bury (g... | Add myself to the authors file | Add myself to the authors file
| AsciiDoc | bsd-2-clause | c-cube/ocaml-containers |
f832929a9f279dc9d3bfa6c440179b3453f00a58 | adoc/omnij-devguide.adoc | adoc/omnij-devguide.adoc | = OmniJ Developer's Guide
Sean Gilligan
v0.1, July 30, 2015: Early draft
:numbered:
:toc:
:toclevels: 3
:linkattrs:
Paragraph TBD.
== Introduction to OmniJ
This section is TBD. For now the project http://github.com/OmniLayer/OmniJ/README.adoc[README] is the best place to get started.
== JSON-RPC Clients
[plantuml,... | = OmniJ Developer's Guide
Sean Gilligan
v0.1, July 30, 2015: Early draft
:numbered:
:toc:
:toclevels: 3
:linkattrs:
:imagesdir: images
Paragraph TBD.
== Introduction to OmniJ
This section is TBD. For now the project http://github.com/OmniLayer/OmniJ/README.adoc[README] is the best place to get started.
== JSON-RPC ... | Add images directory attribute to devguide | Add images directory attribute to devguide | AsciiDoc | apache-2.0 | OmniLayer/OmniJ,OmniLayer/OmniJ,OmniLayer/OmniJ |
1873528b34edfa2fc400ead1cfb4d95625e18b79 | docs/groundwork.adoc | docs/groundwork.adoc | = Groundwork
:toc:
:source-highlighter: pygments
link:index.html[back to index page]
== Laying the Groundwork
To 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 ins... | = Groundwork
:toc:
:source-highlighter: pygments
link:index.html[back to index page]
== Laying the Groundwork
To 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 ins... | Put Best practices in a separate section. | Put Best practices in a separate section.
| AsciiDoc | apache-2.0 | CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords |
fbd313be9d59492957f3cac1437a6304fb06b21d | README.adoc | README.adoc | = Qprompt
== Introduction
This 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:
- Simple multi-entry menus.
- Prompt for yes/no response.
- Prompt for integer response.
- Prompt for float response.
- Optional defaul... | = Qprompt
== Introduction
This 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:
- Simple multi-entry menus.
- Prompt for yes/no response.
- Prompt for integer response.
- Prompt for float response.
- Optional defaul... | Update to the example section. | Update to the example section.
| AsciiDoc | mit | jeffrimko/Qprompt |
e938ebfa19e8742a255592dfa11ac879700dbade | adoc/include/common_options.adoc | adoc/include/common_options.adoc | *--map-http-status* 'TEXT'::
Map non success HTTP response codes to exit codes other than 1.
e.g. "--map-http-satus 403=0,404=0" would exit with 0 even if a 403
or 404 http error code was received. Valid exit codes are 0,1,50-99.
include::format_option.adoc[]
include::jmespath_option.adoc[]
include::help_option.ado... | *--map-http-status* 'TEXT'::
Map non success HTTP response codes to exit codes other than 1.
e.g. "--map-http-satus 403=0,404=0" would exit with 0 even if a 403
or 404 http error code was received. Valid exit codes are 0,1,50-99.
*-F, --format* '[json|text]'::
Set the output format for stdout. Defaults to "text".
*... | Remove nested includes from adoc | Remove nested includes from adoc
| AsciiDoc | apache-2.0 | globus/globus-cli,globus/globus-cli |
52b6608eace07c90c3dbe9e3a87e5510675406f1 | modules/dedicated-managing-dedicated-administrators.adoc | modules/dedicated-managing-dedicated-administrators.adoc | // Module included in the following assemblies:
//
// administering_a_cluster/dedicated-admin-role.adoc
[id="dedicated-managing-dedicated-administrators_{context}"]
= Managing {product-title} administrators
Administrator roles are managed using a `dedicated-admins` group on the cluster.
Existing members of this grou... | // Module included in the following assemblies:
//
// administering_a_cluster/dedicated-admin-role.adoc
[id="dedicated-managing-dedicated-administrators_{context}"]
= Managing {product-title} administrators
Administrator roles are managed using a `dedicated-admins` group on the cluster.
Existing members of this grou... | Update documentation to current interface on cloud.rh.c | Update documentation to current interface on cloud.rh.c | AsciiDoc | apache-2.0 | vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs |
c5002afeefa5636f66cc673a80f130175f931a60 | CHANGELOG.asciidoc | CHANGELOG.asciidoc | 2020/06/18: Concuerror integration has been added. It is
currently minimal but usable. Experimentation
and feedback is welcome.
2020/11/30: Support for publishing Hex releases and docs
has been added. It is currently experimental.
Feedback is more than welcome.
2022/03/... | 2020/06/18: Concuerror integration has been added. It is
currently minimal but usable. Experimentation
and feedback is welcome.
2020/11/30: Support for publishing Hex releases and docs
has been added. It is currently experimental.
Feedback is more than welcome.
2022/03/... | Set date for breaking Relx 4 change | Set date for breaking Relx 4 change
| AsciiDoc | isc | ninenines/erlang.mk,rabbitmq/erlang.mk |
436b3063271078581d376774c2a6d534742dd777 | doc/cookbook/zone.adoc | doc/cookbook/zone.adoc | == Time Zones & Offset
Extract a zone from a `java.time.ZonedDateTime`:
====
[source.code,clojure]
----
(t/zone (t/zoned-date-time "2000-01-01T00:00:00Z[Europe/Paris]"))
----
[source.code,clojure]
----
(t/zone)
----
====
Create a `java.time.ZonedDateTime` in a particular time zone:
====
[source.code,clojure]
----
... | == Time Zones & Offset
Extract a zone from a `java.time.ZonedDateTime`:
====
[source.code,clojure]
----
(t/zone (t/zoned-date-time "2000-01-01T00:00:00Z[Europe/Paris]"))
----
[source.code,clojure]
----
(t/zone)
----
====
Create a `java.time.ZonedDateTime` in a particular time zone:
====
[source.code,clojure]
----
... | Add offset examples to Zones | Add offset examples to Zones
| AsciiDoc | mit | juxt/tick,juxt/tick |
7ce834e70d12fb870f79af99daaf22e9f5c6aee8 | src/main/docs/index.adoc | src/main/docs/index.adoc | = geo-shell
Jared Erickson
v0.7-SNAPSHOT
ifndef::imagesdir[:imagesdir: images]
include::intro.adoc[]
include::workspace.adoc[]
include::layer.adoc[]
include::format.adoc[]
include::raster.adoc[]
include::tile.adoc[]
include::style.adoc[]
include::map.adoc[]
include::builtin.adoc[] | = Geo Shell
Jared Erickson
v0.7-SNAPSHOT
:title-logo-image: image:geoshell.png[pdfwidth=5.5in,align=center]
ifndef::imagesdir[:imagesdir: images]
include::intro.adoc[]
include::workspace.adoc[]
include::layer.adoc[]
include::format.adoc[]
include::raster.adoc[]
include::tile.adoc[]
include::style.adoc[]
include... | Add title image to pdf | Add title image to pdf
| AsciiDoc | mit | jericks/geo-shell,jericks/geo-shell,jericks/geo-shell |
6b23a4a24353bad169fa4340a30d8a357a512fce | impl/src/docs/asciidoc/index.adoc | impl/src/docs/asciidoc/index.adoc | :generated: ../../../target/generated-docs/asciidoc
include::{generated}/overview.adoc[]
include::manual_rest_doc.adoc[]
include::{generated}/paths.adoc[]
| :generated: ../../../target/generated-docs/asciidoc
include::{generated}/overview.adoc[]
include::manual_rest_doc.adoc[]
include::{generated}/paths.adoc[]
include::{generated}/definitions.adoc[]
| Add generated data type definitions to Swagger documentation | Add generated data type definitions to Swagger documentation
| AsciiDoc | mit | jugda/dukecon_server,dukecon/dukecon_server,jugda/dukecon_server,dukecon/dukecon_server,dukecon/dukecon_server,jugda/dukecon_server |
b582f7574430e1946ffaac7ac7365c48fc3ac1b4 | README.adoc | README.adoc | = Spring Boot and Two DataSources
This project demonstrates how to use two `DataSource` s with Spring Boot 2.1.
It utilizes:
* Spring Data https://github.com/spring-projects/spring-data-jpa[JPA]
* https://github.com/flyway/flyway[Flyway] migrations for the two `DataSource` s
* Separate Hibernate properties for each... | = Spring Boot and Two DataSources
This project demonstrates how to use two `DataSource` s with Spring Boot 2.1.
It utilizes:
* Spring Data https://github.com/spring-projects/spring-data-jpa[JPA]
* https://github.com/flyway/flyway[Flyway] migrations for the two `DataSource` s
* Separate Hibernate properties for each... | Remove note about app starting up | Remove note about app starting up
It's no longer applicable to the branch that is purely backend components without any frontend.
| AsciiDoc | unlicense | drumonii/SpringBootTwoDataSources |
b978bf8d377f09c132050297e45b3c8fbb652a4a | src/main/asciidoc/development.adoc | src/main/asciidoc/development.adoc | [[development]]
== Development
Github repository: {datasource-proxy}
=== Build Documentation
```sh
> ./mvnw asciidoctor:process-asciidoc@output-html
```
| [[development]]
== Development
Github repository: {datasource-proxy}
=== Build Documentation
Generate `index.html`
```sh
> ./mvnw asciidoctor:process-asciidoc@output-html
```
Http preview
```sh
> ./mvnw asciidoctor:http@output-html
``` | Add how to use asciidoctor plugin in dev | Add how to use asciidoctor plugin in dev
| AsciiDoc | mit | ttddyy/datasource-proxy,ttddyy/datasource-proxy |
2e835acb457e13f3fc5a49459604488388d80cae | README.adoc | README.adoc | = Infinispan Cluster Manager
image: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/"]
This is a cluster manager implementation for Vert.x that uses http://infinispan.org[Infinispan].
Please see the in-sour... | = Infinispan Cluster Manager
image: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/"]
This is a cluster manager implementation for Vert.x that uses http://infinispan.org[Infinispan].
Please see the in-sour... | Revert "Revert "Revert "Test trigger on push""" | Revert "Revert "Revert "Test trigger on push"""
This reverts commit f235543226884c6293a70b2540441e5b1528ff6c.
| AsciiDoc | apache-2.0 | vert-x3/vertx-infinispan |
242825445a9b0adf2b5ef2b3de4d8c612ade0c22 | docs/src/docs/asciidoc/multiTenancy/tenantTransforms.adoc | docs/src/docs/asciidoc/multiTenancy/tenantTransforms.adoc | The next transformations can be applied to any class to simplify greatly the development of Multi-Tenant applications. These include:
- `@CurrentTenant` - Resolve the current tenant for the context of a class or method
- `@Tenant` - Use a specific tenant for the context of a class or method
- `@WithoutTenant` - Execut... | The following transformations can be applied to any class to simplify greatly the development of Multi-Tenant applications. These include:
- `@CurrentTenant` - Resolve the current tenant for the context of a class or method
- `@Tenant` - Use a specific tenant for the context of a class or method
- `@WithoutTenant` - E... | Replace "the next" with "the following" | Replace "the next" with "the following" | AsciiDoc | apache-2.0 | grails/gorm-hibernate5 |
a78ed8d4a2590eb9759cf1283971056af637d94b | libbeat/docs/communitybeats.asciidoc | libbeat/docs/communitybeats.asciidoc | [[community-beats]]
== Community Beats
The open source community has been hard at work developing new Beats. You can check
out a few of them here:
[horizontal]
https://github.com/Ingensi/dockerbeat[dockerbeat]:: Reads docker container
statistics and indexes them in Elasticsearch
https://github.com/christiangalsterer/... | [[community-beats]]
== Community Beats
The open source community has been hard at work developing new Beats. You can check
out a few of them here:
[horizontal]
https://github.com/Ingensi/dockerbeat[dockerbeat]:: Reads docker container
statistics and indexes them in Elasticsearch
https://github.com/christiangalsterer/... | Add apachebeat to the list of beats from opensource | Add apachebeat to the list of beats from opensource | AsciiDoc | mit | yapdns/yapdnsbeat,yapdns/yapdnsbeat |
47212b4db9302d1b8f194bc8c43247772c54afbd | doc/src/main/asciidoc/rest-spec.adoc | doc/src/main/asciidoc/rest-spec.adoc | = RESTful API Endpoint specification
== Nodes
=== Idea for accessing fields directly
* RUD: /nodes/:uuid/relatedProducts/:uuid -> Pageable list of nodes
* R: /nodes/:uuid/name
TODO: Do we want to restrict the primitiv types to read only? The user can update the node via PUT /nodes/:uuid anyway.
== Webroot
== Tag... | = RESTful API Endpoint specification
== Nodes
=== Idea for accessing fields directly
* RUD: /nodes/:uuid/relatedProducts/:uuid -> Pageable list of nodes
* R: /nodes/:uuid/name
TODO: Do we want to restrict the primitiv types to read only? The user can update the node via PUT /nodes/:uuid anyway.
== Breadcrumbs
`/b... | Add section on breadcrumbs endpoint | Add section on breadcrumbs endpoint | AsciiDoc | apache-2.0 | gentics/mesh,gentics/mesh,gentics/mesh,gentics/mesh |
ccb2545c35c7a88014f2c0dd06a1582b029ab298 | conoha/dokku-apps/README.adoc | conoha/dokku-apps/README.adoc | = conoha/dokku-apps
.Add pytohn-getting-started app
----
alias dokku="ssh -t dokku@conoha"
cd python-getting-started
dokku apps:create python-getting-started
git remote add dokku dokku@conoha:python-getting-started
git push dokku master
----
And this app can be available at http://python-getting-started.d.10sr.f5.... | = conoha/dokku-apps
First you have to run:
----
cat .ssh/id_rsa.pub | ssh conoha 'sudo sshcommand acl-add dokku dokkudeploy'
----
.Add pytohn-getting-started app
----
alias dokku="ssh -t dokku@conoha"
cd python-getting-started
dokku apps:create python-getting-started
git remote add dokku dokku@conoha:python-gett... | Add note to add keys for dokku | Add note to add keys for dokku
| AsciiDoc | unlicense | 10sr/server-provisions,10sr/machine-setups,10sr/machine-setups,10sr/machine-setups,10sr/server-provisions,10sr/machine-setups |
d61a7352efcf33d8bcb1bf1fd9052480e2ee15ba | code/continuousIntegration.adoc | code/continuousIntegration.adoc | = Continuous integration
:awestruct-description: Check if the latest nightly build passes all automated tests.
:awestruct-layout: normalBase
:showtitle:
== OptaPlanner
We use Jenkins for continuous integration.
*Show https://hudson.jboss.org/hudson/job/optaplanner/[the public Jenkins job].* This is a mirror of a Red... | = Continuous integration
:awestruct-description: Check if the latest nightly build passes all automated tests.
:awestruct-layout: normalBase
:showtitle:
== OptaPlanner
We use Jenkins for continuous integration.
*Show https://jenkins-kieci.rhcloud.com/job/optaplanner/[the public Jenkins job].* This is a mirror of a R... | Update public Jenkins job URL | Update public Jenkins job URL | AsciiDoc | apache-2.0 | 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,drools... |
c9fd39c5785d21b75d32348f8643409668e985bd | modules/nw-dns-operator-logs.adoc | modules/nw-dns-operator-logs.adoc | // Module included in the following assemblies:
//
// * dns/dns-operator.adoc
[id="nw-dns-operator-logs_{context}"]
= DNS Operator logs
You can view DNS Operator logs by using the `oc logs` command.
.Procedure
View the logs of the DNS Operator:
----
$ oc logs --namespace=openshift-dns-operator deployment/dns-operat... | // Module included in the following assemblies:
//
// * dns/dns-operator.adoc
[id="nw-dns-operator-logs_{context}"]
= DNS Operator logs
You can view DNS Operator logs by using the `oc logs` command.
.Procedure
View the logs of the DNS Operator:
----
$ oc logs -n openshift-dns-operator deployment/dns-operator -c dns... | Fix command to get DNS logs | Fix command to get DNS logs
- https://bugzilla.redhat.com/show_bug.cgi?id=1834702
| AsciiDoc | apache-2.0 | vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs |
04d5d44e744c96aa641b534a22a546ae7262579e | src/docs/manual/03_task_exportEA.adoc | src/docs/manual/03_task_exportEA.adoc | :filename: manual/03_task_exportEA.adoc
ifndef::imagesdir[:imagesdir: ../images]
= exportEA
IMPORTANT: Currently this feature is WINDOWS-only. https://github.com/docToolchain/docToolchain/issues/231[See related issue]
include::feedback.adoc[]
image::ea/Manual/exportEA.png[]
TIP: Blog-Posts: https://rdmueller.githu... | :filename: manual/03_task_exportEA.adoc
ifndef::imagesdir[:imagesdir: ../images]
= exportEA
IMPORTANT: Currently this feature is WINDOWS-only. https://github.com/docToolchain/docToolchain/issues/231[See related issue]
include::feedback.adoc[]
image::ea/Manual/exportEA.png[]
TIP: Blog-Posts: https://rdmueller.githu... | Add documentation for the parameters offered by the exportEA configuration. | Add documentation for the parameters offered by the exportEA configuration.
| AsciiDoc | mit | docToolchain/docToolchain,docToolchain/docToolchain,docToolchain/docToolchain,docToolchain/docToolchain |
573e2c24a90c6422ec873124f93fc1418c1ea00e | python/template/docs/problem.adoc | python/template/docs/problem.adoc | :doctitle:
:author: Jerod Gawne
:email: jerodgawne@gmail.com
:docdate: June 07, 2018
:revdate: {docdatetime}
:src-uri: https://github.com/jerodg/hackerrank
:difficulty:
:time-complexity:
:required-knowledge:
:advanced-knowledge:
:solution-variability:
:score:
:keywords: python, {required-knowledge}, {adva... | :doctitle:
:author: Jerod Gawne
:email: jerodgawne@gmail.com
:docdate: June 07, 2018
:revdate: {docdatetime}
:src-uri: https://github.com/jerodg/hackerrank
:difficulty:
:time-complexity:
:required-knowledge:
:advanced-knowledge:
:solution-variability:
:score:
:keywords: python, {required-knowledge}, {adva... | Add Improving the Problem section. | Add Improving the Problem section.
| AsciiDoc | mit | jerodg/hackerrank-python |
5ba5e9426c278aba34de90e183f8e7e8a74556e5 | examples/camel-example-spring-boot-supervising-route-controller/readme.adoc | examples/camel-example-spring-boot-supervising-route-controller/readme.adoc | # Camel Supervising Route Controller Example Spring Boot
This example shows how to work with a simple Apache Camel application using Spring Boot and a Supervising Route Controller.
## How to run
You can run this example using
mvn spring-boot:run
Beside JMX you can use Spring Boot Endpoints to interact with the... | # Camel Supervising Route Controller Example Spring Boot
This example shows how to work with a simple Apache Camel application using Spring Boot and a Supervising Route Controller.
## How to run
You can run this example using
mvn spring-boot:run
Beside JMX you can use Spring Boot Endpoints to interact with the... | Fix the example document error | Fix the example document error
Fixed the document error of camel-example-spring-boot-supervising-route-controller | AsciiDoc | apache-2.0 | 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,... |
324d6806d57251e53f54e9baf541aa06a1a372a5 | README.adoc | README.adoc | = The Ehcache 3.x line is currently the development line.
Status of the build: image:https://ehcache.ci.cloudbees.com/buildStatus/icon?job=ehcache3
For more information, you might want to go check the https://github.com/ehcache/ehcache3/wiki[wiki].
image:http://cloudbees.prod.acquia-sites.com/sites/default/files/sty... | = The Ehcache 3.x line is currently the development line.
Status of the build: image:https://ehcache.ci.cloudbees.com/buildStatus/icon?job=ehcache3[Ehcache@Cloudbees, link="https://ehcache.ci.cloudbees.com/job/ehcache3/"]
For more information, you might want to go check the https://github.com/ehcache/ehcache3/wiki[wi... | Fix image tags in updated readme | Fix image tags in updated readme
| AsciiDoc | apache-2.0 | 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... |
b1b639d60403f3fc22318bbc013bfaca8acd470f | README.adoc | README.adoc | = clublist - Club Membership List
Track members for a small non-profit club.
This shows off some basic functionality of JPA and DeltaSpike Data in a JSF environment.
== Deployment
. Copy config-sample.properties to config.properties, change the name in the orgName property
in this file from 'Sample Club' to your or... | = clublist - Club Membership List
Track members for a small non-profit club.
This shows off some basic functionality of JPA and DeltaSpike Data in a JSF environment.
== Deployment
. Copy config-sample.properties to config.properties, change the name in the orgName property
in this file from 'Sample Club' to your or... | Format ToDo as a list | Format ToDo as a list
| AsciiDoc | bsd-2-clause | IanDarwin/clublist,IanDarwin/clublist |
463ffdf5dc24117a2d245ca293ddb3bf1ad19ee8 | README.adoc | README.adoc | proxy
=====
[quote]
A development proxy with logging and redirect-rewriting
Installation
------------
[source,bash]
----
go get -u github.com/ciarand/proxy
----
Usage
-----
[source,bash]
----
# start the proxy in one shell:
proxy -from=https://www.google.com -to=http://0.0.0.0:8080
# and in another, run curl:
cur... | proxy
=====
[quote]
A development proxy with logging and redirect-rewriting
Installation
------------
Download a prebuilt binary for your platform and architecture from the
link:https://github.com/ciarand/proxy/releases[release page].
Or, build from source:
[source,bash]
----
# from source
go get -u github.com/cia... | Add prebuilt binary installation instructions | Add prebuilt binary installation instructions
| AsciiDoc | isc | ciarand/proxy |
99db481af16fdd49197e96ce8e67ac31b38577e3 | README.adoc | README.adoc | # android-images
Yet another repo with docker images for Android developers
[source,planzuml]
------
node "java jdk-8" as jdk8
node "java jdk-7" as jdk7
artifact "Android" {
node "gradle" as gradle
node "sdk" as sdk
node "ndk 11" as ndk11
node "ndk 13" as ndk13
node "vlc" as vlc
}
artifact "Tools" {
node "ruby" as rub... | # android-images
Yet another repo with docker images for Android developers
[source,plantuml]
------
node "java jdk-8" as jdk8
node "java jdk-7" as jdk7
artifact "Android" {
node "gradle" as gradle
node "sdk" as sdk
node "ndk 11" as ndk11
node "ndk 13" as ndk13
node "vlc" as vlc
}
artifact "Tools" {
node "ruby" as rub... | Fix typo in plantuml definition | Fix typo in plantuml definition | AsciiDoc | apache-2.0 | michalharakal/android-images |
8379c9433703f7a107d5618528ec7066dcfc4f34 | README.adoc | README.adoc | = Blueprint
:author: Hafid Haddouti
image:https://travis-ci.org/haf-tech/blueprint.svg?branch=master["Build Status", link="https://travis-ci.org/haf-tech/blueprint"]
image:https://img.shields.io/badge/License-Apache%202.0-blue.svg["License", link="https://opensource.org/licenses/Apache-2.0"]
....
Blueprint is a play... | = Blueprint
:author: Hafid Haddouti
image:https://travis-ci.org/haf-tech/blueprint.svg?branch=master["Build Status", link="https://travis-ci.org/haf-tech/blueprint"]
image:https://img.shields.io/badge/License-Apache%202.0-blue.svg["License", link="https://opensource.org/licenses/Apache-2.0"]
Blueprint is a playgrou... | Add link to GitHup page | Add link to GitHup page | AsciiDoc | apache-2.0 | haf-tech/blueprint |
0a6537d3ad2914b49e7a104ddf6bb9fb236b96b7 | community/users.asciidoc | community/users.asciidoc | = Who's Using Debezium?
:awestruct-layout: doc
:linkattrs:
:icons: font
:source-highlighter: highlight.js
Debezium is used in production by a wide range of companies and organizations.
This list contains users of Debezium who agreed to serve as public reference;
where available, further resources with more details are... | = Who's Using Debezium?
:awestruct-layout: doc
:linkattrs:
:icons: font
:source-highlighter: highlight.js
Debezium is used in production by a wide range of companies and organizations.
This list contains users of Debezium who agreed to serve as public reference;
where available, further resources with more details are... | Fix broken link to source of page | Fix broken link to source of page | AsciiDoc | apache-2.0 | debezium/debezium.github.io,debezium/debezium.github.io,debezium/debezium.github.io |
3ffbb20f3476795d59a9f9e97864531e5ed075aa | master.adoc | master.adoc | = Sample Book
Author Name <author@example.com>
v1.0, October 4, 2015: First Draft
:doctype: book
:docinfo:
:toc: left
:toclevels: 2
:sectnums:
:linkcss:
An sample book to show case AsciiDoctor folder structure.
include::book/chapter-1/chapter-1.adoc[leveloffset=+1]
include::book/chapter-2/chapter-2.adoc[leveloffset=+... | = Sample Book
Author Name <author@example.com>
v1.0, October 4, 2015: First Draft
:doctype: book
:docinfo:
:toc: left
:toclevels: 2
:sectnums:
:linkcss:
An sample book to show case AsciiDoctor folder structure.
include::book/chapter-1/chapter-1.adoc[leveloffset=+1]
include::book/chapter-2/chapter-2.adoc[leveloffset=... | Add extra line between include. | Add extra line between include.
| AsciiDoc | mit | makzan/asciidoc-book-starter |
eadf5c1973037cd3ff3a3fcb1fb48df7eb29be68 | doc/release-process.adoc | doc/release-process.adoc | = bitcoinj-addons Release Process
== Main Release Process
. Update `CHANGELOG.adoc`
. Set versions
.. `README.adoc`
.. bitcoinj-groovy `ExtensionModule`
.. `gradle.properties`
. Commit version bump and changelog.
. Tag: `git tag -a v0.x.y -m "Release 0.x.y"`
. Push: `git push --tags origin master`
. Full build, test
... | = bitcoinj-addons Release Process
== Main Release Process
. Update `CHANGELOG.adoc`
. Set versions
.. `README.adoc`
.. bitcoinj-groovy `ExtensionModule`
.. `build.gradle` (should move to `gradle.properties`)
. Commit version bump and changelog.
. Tag: `git tag -a v0.x.y -m "Release 0.x.y"`
. Push: `git push --tags or... | Fix minor error in release process doc. | Fix minor error in release process doc. | AsciiDoc | apache-2.0 | msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons |
c07974784ac6d323a1fb8820b609d2a4c3b717e0 | README.adoc | README.adoc | |===
|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"]
|===
=== Automated GitH... | [options="header"]
|===
|CI Build and Tests|Static Analysis
|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/spohna... | Add travis badge to readme | Add travis badge to readme
| AsciiDoc | mit | spohnan/ci-bot-01,spohnan/ci-bot-01 |
76e3eeb08f5964513bcd73f57a94e02f019c0301 | components/camel-spring-cloud-netflix/src/main/docs/spring-cloud-netflix.adoc | components/camel-spring-cloud-netflix/src/main/docs/spring-cloud-netflix.adoc | [[SpringCloud-SpringCloud]]
Spring Cloud
~~~~~~~~~~~
*Available as of Camel 2.19*
Spring Cloud component
Maven users will need to add the following dependency to their `pom.xml`
in order to use this component:
[source,xml]
---------------------------------------------------------------------------------------------... | === Spring Cloud Netflix
*Available as of Camel 2.19*
The 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... | Fix copy and paste doc | Fix copy and paste doc
| AsciiDoc | apache-2.0 | 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... |
aa949c664a89ab9d6c2c21fa9b36af585b721db9 | docs/index.asciidoc | docs/index.asciidoc | = Filebeat
:libbeat: http://www.elastic.co/guide/en/beats/libbeat/1.0.0-rc1
:version: 1.0.0-rc1
include::./overview.asciidoc[]
include::./getting-started.asciidoc[]
include::./fields.asciidoc[]
include::./configuration.asciidoc[]
include::./command-line.asciidoc[]
include::./migration.asciidoc[]
include::./suppo... | = Filebeat
:libbeat: http://www.elastic.co/guide/en/beats/libbeat/master
:version: master
include::./overview.asciidoc[]
include::./getting-started.asciidoc[]
include::./fields.asciidoc[]
include::./configuration.asciidoc[]
include::./command-line.asciidoc[]
include::./migration.asciidoc[]
include::./support.asc... | Use master version in docs | Use master version in docs
| AsciiDoc | mit | yapdns/yapdnsbeat,yapdns/yapdnsbeat |
8f10c771e62016bc156a01310ae35089b605f93d | docs/reference/migration/migrate_7_0/scripting.asciidoc | docs/reference/migration/migrate_7_0/scripting.asciidoc | [float]
[[breaking_70_scripting_changes]]
=== Scripting changes
[float]
==== getDate() and getDates() removed
Fields of type `long` and `date` had `getDate()` and `getDates()` methods
(for multi valued fields) to get an object with date specific helper methods
for the current doc value. In 5.3.0, `date` fields were c... | [float]
[[breaking_70_scripting_changes]]
=== Scripting changes
[float]
==== getDate() and getDates() removed
Fields of type `long` and `date` had `getDate()` and `getDates()` methods
(for multi valued fields) to get an object with date specific helper methods
for the current doc value. In 5.3.0, `date` fields were c... | Add migration info for missing values in script | Add migration info for missing values in script
Relates to #30975
| AsciiDoc | apache-2.0 | 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/... |
d9e3a3fc36a4d9770f53cb105d60ae7d01965aed | src/main/asciidoc/inc/_goals.adoc | src/main/asciidoc/inc/_goals.adoc | = Maven Goals
This plugin supports the following goals which are explained in detail
in the next sections.
.Plugin Goals
[cols="1,3"]
|===
|Goal | Description
|**<<{plugin}:build>>**
|Build images
|**<<{plugin}:start>>** or **<<{plugin}:start,{plugin}:run>>**
|Create and start containers
|**<<{plugin}:stop>>**
|St... | = Maven Goals
This plugin supports the following goals which are explained in detail
in the next sections.
.Plugin Goals
[cols="1,1,2"]
|===
|Goal | Default Lifecycle Phase | Description
|**<<{plugin}:build>>**
|install
|Build images
|**<<{plugin}:start>>** or **<<{plugin}:start,{plugin}:run>>**
|pre-integration-te... | Add default Maven lifecycle bindings to the manual | Add default Maven lifecycle bindings to the manual | AsciiDoc | apache-2.0 | 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 |
886e5e7db96a6c1a021dcc9d08268303d8402227 | docs/hacky-implicit-provisioning-version2.adoc | docs/hacky-implicit-provisioning-version2.adoc | # Hacky Implicit Provisioning version 2
This 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.
## Goals
* end-to-end installation of updates using OSTree
## Steps
1. Edit `recipes-sota/aktual... | # Hacky Implicit Provisioning version 2
This 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.
## Goals
* end-to-end installation of updates using OSTree
## Steps
1. Edit `recipes-sota/aktual... | Use latest version of aktualizr. Add known issue. | Use latest version of aktualizr. Add known issue.
| AsciiDoc | mpl-2.0 | advancedtelematic/aktualizr,advancedtelematic/aktualizr,advancedtelematic/aktualizr,advancedtelematic/sota_client_cpp,advancedtelematic/aktualizr,advancedtelematic/sota_client_cpp |
fae66814a50c60e47772ad6feec9ee222920fd9c | doc/videos.adoc | doc/videos.adoc | = Videos
James Elliott <james@deepsymmetry.org>
:icons: font
// Set up support for relative links on GitHub; add more conditions
// if you need to support other environments and extensions.
ifdef::env-github[:outfilesuffix: .adoc]
This page collects performance videos that highlight Afterglow in
action. If you have a... | = Videos
James Elliott <james@deepsymmetry.org>
:icons: font
// Set up support for relative links on GitHub; add more conditions
// if you need to support other environments and extensions.
ifdef::env-github[:outfilesuffix: .adoc]
This page collects performance videos that highlight Afterglow in
action. If you have a... | Work around Github image float issue. | Work around Github image float issue.
| AsciiDoc | epl-1.0 | brunchboy/afterglow,brunchboy/afterglow,brunchboy/afterglow |
0ba8df5939f33a3d6ee7a4eaab0c993e35a839d0 | migration/migrating_3_4/about-migration.adoc | migration/migrating_3_4/about-migration.adoc | [id="about-migration"]
= About migrating {product-title} 3 to 4
include::modules/common-attributes.adoc[]
:context: about-migration
toc::[]
{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 ar... | [id="about-migration"]
= About migrating {product-title} 3 to 4
include::modules/common-attributes.adoc[]
:context: about-migration
toc::[]
{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 ar... | Update tools sentence after removing CPMA | Update tools sentence after removing CPMA
| AsciiDoc | apache-2.0 | vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs |
38adcbe7aeee0cdaa5600b91cc4297c399bdc33b | README.adoc | README.adoc | = Jira Release Notes Generator (JiraRnGen)
:Author: David Thompson
:Email: <dthompsn1@gmail.com>
:Revision: 0.1.0 2016-08-03
== Description
I was looking for a way with hosted Jira to be able to send out release
notes with our own template. Since the hosted version doesn't allow you to
edit the templates, I decided t... | = Jira Release Notes Generator (JiraRnGen)
:Author: David Thompson
:Email: <dthompsn1@gmail.com>
:Revision: 0.1.0 2016-08-03
== Description
I was looking for a way with hosted Jira to be able to send out release
notes with our own template. Since the hosted version doesn't allow you to
edit the templates, I decided t... | Update docs for running at start. | Update docs for running at start.
| AsciiDoc | mit | applitect/JiraRnGen,applitect/JiraRnGen,applitect/JiraRnGen |
b15bdde83f43d3b6c0564a359ae3a8bf43b94071 | opennms-doc/guide-user/src/asciidoc/index.adoc | opennms-doc/guide-user/src/asciidoc/index.adoc | // Global settings
:ascii-ids:
:encoding: UTF-8
:lang: en
:icons: font
:toc: left
:toclevels: 3
:numbered:
[[gu]]
= Users Guide
:author: Copyright (c) 2014-2016 The OpenNMS Group, Inc.
:revnumber: {opennms-product-name} {opennms-version}
:revdate: {last-update-label} {docdatetime}
:version-label!:
[[gu-service-assura... | // Global settings
:ascii-ids:
:encoding: UTF-8
:lang: en
:icons: font
:toc: left
:toclevels: 3
:numbered:
[[gu]]
= Users Guide
:author: Copyright (c) 2014-2016 The OpenNMS Group, Inc.
:revnumber: {opennms-product-name} {opennms-version}
:revdate: {last-update-label} {docdatetime}
:version-label!:
[[gu-service-assura... | Fix typo in Busines -> Business | Fix typo in Busines -> Business | AsciiDoc | agpl-3.0 | aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms |
f663decf9b6ee767d81a7b9e9bd028eada319548 | README.adoc | README.adoc | image:https://jenkins-kieci.rhcloud.com/buildStatus/icon?job=optaplanner["Build Status", link="https://jenkins-kieci.rhcloud.com/job/optaplanner"]
== Developing Drools, OptaPlanner and jBPM
*If you want to build or contribute to a droolsjbpm project, https://github.com/droolsjbpm/droolsjbpm-build-bootstrap/blob/maste... | image:https://jenkins-kieci.rhcloud.com/buildStatus/icon?job=optaplanner["Build Status", link="https://jenkins-kieci.rhcloud.com/job/optaplanner"]
== Quick development start
To build and run from source:
[source,sh]
----
$ mvn clean install
$ cd optaplanner-examples
$ mvn exec:java
----
To develop with ... | Add build instructions to readme | Add build instructions to readme
| AsciiDoc | apache-2.0 | 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,tko... |
8274fc56d531bd3b5bc8b47fb699dfae15da84a0 | README.adoc | README.adoc | = Explorer for Hawkular
http://hawkular.org/[Hawkular] is a set of components for Monitoring.
This explorer connects to a Hawkular server and allows to browse trough
inventory and view entities, graph metrics.
ifndef::env-github[]
image::docs/screenshot.png[]
endif::[]
ifdef::env-github[]
image::https://github.com/p... | = Explorer for Hawkular
http://hawkular.org/[Hawkular] is a set of components for Monitoring.
This explorer connects to a Hawkular server and allows to browse trough
inventory and view entities, graph metrics.
ifndef::env-github[]
image::docs/screenshot.png[]
endif::[]
ifdef::env-github[]
image::https://github.com/p... | Make build step more clear. | Make build step more clear.
| AsciiDoc | apache-2.0 | pilhuhn/hawkfx |
6c960898d801f348d640e17ab5d496d9f7a8e767 | docs/reference/mapping/fields/id-field.asciidoc | docs/reference/mapping/fields/id-field.asciidoc | [[mapping-id-field]]
=== `_id` field
Each document indexed is associated with a <<mapping-type-field,`_type`>> (see
<<mapping-type>>) and an <<mapping-id-field,`_id`>>. The `_id` field is not
indexed as its value can be derived automatically from the
<<mapping-uid-field,`_uid`>> field.
The value of the `_id` field i... | [[mapping-id-field]]
=== `_id` field
Each document indexed is associated with a <<mapping-type-field,`_type`>> (see
<<mapping-type>>) and an <<mapping-id-field,`_id`>>. The `_id` field is not
indexed as its value can be derived automatically from the
<<mapping-uid-field,`_uid`>> field.
The value of the `_id` field i... | Fix docs example for the _id field, the field is not accessible in scripts | Fix docs example for the _id field, the field is not accessible in scripts
Closes #19274
| AsciiDoc | apache-2.0 | strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test |
1e6fc7b9e405c2c9e05868db8534dadbb80437f7 | doc/src/guide/external_plugins_list.asciidoc | doc/src/guide/external_plugins_list.asciidoc | [[plugins_list]]
== List of plugins
This is a non-exhaustive list of Erlang.mk plugins, sorted
alphabetically.
=== elvis.mk
An https://github.com/inaka/elvis.mk[Elvis plugin] for Erlang.mk.
Elvis is an https://github.com/inaka/elvis[Erlang style reviewer].
=== geas
https://github.com/crownedgrouse/geas[Geas] gives... | [[plugins_list]]
== List of plugins
This is a non-exhaustive list of Erlang.mk plugins, sorted
alphabetically.
=== elixir.mk
An https://github.com/botsunit/elixir.mk[Elixir plugin] for
Erlang.mk. http://elixir-lang.org/[Elixir] is an alternative
language for the BEAM.
=== elvis.mk
An https://github.com/inaka/elvis... | Add elixir.mk and lfe.mk to the plugins list | Add elixir.mk and lfe.mk to the plugins list
| AsciiDoc | isc | crownedgrouse/erlang.mk,hairyhum/erlang.mk,ingwinlu/erlang.mk,nevar/erlang.mk,jj1bdx/erlang.mk,rabbitmq/erlang.mk,ninenines/erlang.mk |
290377a0fa42b7da5bce6583834bc525fdfe354c | README.adoc | README.adoc | = Json-lib
:version: 3.0.0.SNAPSHOT
:linkattrs:
:project-name: json-lib
image:http://img.shields.io/travis/aalmiray/{project-name}/development.svg["Build Status", link="https://travis-ci.org/aalmiray/{project-name}"]
image:http://img.shields.io/coveralls/aalmiray/{project-name}/development.svg["Coverage Status", link=... | = Json-lib
:version: 3.0.0.SNAPSHOT
:linkattrs:
image:http://img.shields.io/travis/aalmiray/Json-lib/development.svg["Build Status", link="https://travis-ci.org/aalmiray/Json-lib"]
image:http://img.shields.io/coveralls/aalmiray/Json-lib/development.svg["Coverage Status", link="https://coveralls.io/r/aalmiray/Json-lib"... | Fix project name in readme | Fix project name in readme [skip ci]
| AsciiDoc | apache-2.0 | aalmiray/Json-lib,aalmiray/Json-lib |
3e4b6c5ea4716a2d5ddc753bcc10260b75eaa762 | README.asciidoc | README.asciidoc |
== ANDROID MAVEN PLUGIN
A plugin for Android application development with http://maven.apache.org[Apache Maven 3.0.3+] and
the http://tools.android.com[Android SDK].
=== Links
* http://code.google.com/p/maven-android-plugin[Project site] with wiki and more
* http://code.google.com/p/maven-android-plugin/issues/lis... |
== ANDROID MAVEN PLUGIN
A plugin for Android application development with http://maven.apache.org[Apache Maven 3.0.3+] and
the http://tools.android.com[Android SDK].
=== Links
* http://code.google.com/p/maven-android-plugin[Project site] with wiki and more
* http://code.google.com/p/maven-android-plugin/issues/lis... | Change link to CI server. | Change link to CI server.
| AsciiDoc | apache-2.0 | 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... |
f2de1064b10e4876a36c3c2d3cbc2685445323cc | attendees/cicd/git-server/README.adoc | attendees/cicd/git-server/README.adoc | = Install a Git Server
== Start Services
. All services can be started, in detached mode, by giving the command:
+
docker-compose up -d
+
And this shows the output as:
+
Creating git_serverdata...
Creating gitserver_git_dbdata_1...
Creating gitserver_git_db_1...
Creating git...
+
. Configure the installation
... | = Install a Git Server
== Start Services
. All services can be started, in detached mode, by giving the command:
+
docker-compose up -d
+
And this shows the output as:
+
Creating git_serverdata...
Creating gitserver_git_dbdata_1...
Creating gitserver_git_db_1...
Creating git...
+
. Configure the installation
... | Fix usage command with install-gogs.sh | Fix usage command with install-gogs.sh
| AsciiDoc | apache-2.0 | redhat-developer-demos/docker-java,redhat-developer-demos/docker-java |
57583364532eed5c3a603307a24ab7857cf27b22 | doc/src/manual/cowboy_router.compile.asciidoc | doc/src/manual/cowboy_router.compile.asciidoc | = cowboy_router:compile(3)
== Name
cowboy_router:compile - Compile routes to the resources
== Description
[source,erlang]
----
compile(cowboy_router:routes()) -> cowboy_router:dispatch_rules()
----
Compile routes to the resources.
Takes a human readable list of routes and transforms it
into a form more efficient ... | = cowboy_router:compile(3)
== Name
cowboy_router:compile - Compile routes to the resources
== Description
[source,erlang]
----
compile(cowboy_router:routes()) -> cowboy_router:dispatch_rules()
----
Compile routes to the resources.
Takes a human readable list of routes and transforms it
into a form more efficient ... | Fix an example missing a " in the manual | Fix an example missing a " in the manual
| AsciiDoc | isc | kivra/cowboy,hairyhum/cowboy,turtleDeng/cowboy,K2InformaticsGmbH/cowboy,CrankWheel/cowboy,ninenines/cowboy |
506f06bb577587936a0c3efb10080fde8d62dce6 | spring-content-solr/src/main/asciidoc/solr-rest.adoc | spring-content-solr/src/main/asciidoc/solr-rest.adoc | [[search]]
= Search
== The SearchContent Resource
When a Store extending `Searchable` is exported, a `searchContent` endpoint will be
available at the `/{store}/searchContent` URI.
====
[source, sh]
----
curl -H 'Accept: application/hal+json' http://localhost:8080/searchContent?queryString=foo
----
====
=== Supp... | [[search]]
= Search
== The SearchContent Resource
When a Store extending `Searchable` is exported, a `searchContent` endpoint will be
available at the `/{store}/searchContent` URI.
====
[source, sh]
----
curl -H 'Accept: application/hal+json' http://localhost:8080/searchContent?queryString=foo
----
====
=== Supp... | Add documentation explaining the format of the searchContent response payload | Add documentation explaining the format of the searchContent response payload
| AsciiDoc | apache-2.0 | paulcwarren/spring-content,paulcwarren/spring-content,paulcwarren/spring-content |
7c9da1be4bb85002515de4a46fb0f48d11c2410c | modules/adding-custom-notification-banners.adoc | modules/adding-custom-notification-banners.adoc | // Module included in the following assemblies:
//
// * web_console/customizing-the-web-console.adoc
[id="creating-custom-notification-banners_{context}"]
= Creating custom notification banners
.Prerequisites
* You must have administrator privileges.
.Procedure
. From *Administration* -> *Custom Resource Definitio... | // Module included in the following assemblies:
//
// * web_console/customizing-the-web-console.adoc
[id="creating-custom-notification-banners_{context}"]
= Creating custom notification banners
.Prerequisites
* You must have administrator privileges.
.Procedure
. From *Administration* -> *Custom Resource Definitio... | Fix navigation path and CRD format in creating-custom-notification-banners | Fix navigation path and CRD format in creating-custom-notification-banners
| AsciiDoc | apache-2.0 | vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs |
b491eccf9891ea00adbfc25ee2ba8d818c94aab0 | storage/persistent_storage/persistent-storage-fibre.adoc | storage/persistent_storage/persistent-storage-fibre.adoc | [id="persistent-storage-using-fibre"]
= Persistent storage using Fibre Channel
include::modules/common-attributes.adoc[]
:context: persistent-storage-fibre
toc::[]
{product-title} supports Fibre Channel, allowing you to provision your
{product-title} cluster with persistent storage using Fibre channel volumes.
Some f... | [id="persistent-storage-using-fibre"]
= Persistent storage using Fibre Channel
include::modules/common-attributes.adoc[]
:context: persistent-storage-fibre
toc::[]
{product-title} supports Fibre Channel, allowing you to provision your
{product-title} cluster with persistent storage using Fibre channel volumes.
Some f... | Update FC link to RHEL8 doc | Update FC link to RHEL8 doc
| AsciiDoc | apache-2.0 | vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.