[JBoss JIRA] (ISPN-11413) Allow copy source code from document without markdown
by Donald Naro (Jira)
[ https://issues.redhat.com/browse/ISPN-11413?page=com.atlassian.jira.plugi... ]
Donald Naro closed ISPN-11413.
------------------------------
Resolution: Duplicate Issue
Duplicate of JDG-3635 has the same fix
> Allow copy source code from document without markdown
> -----------------------------------------------------
>
> Key: ISPN-11413
> URL: https://issues.redhat.com/browse/ISPN-11413
> Project: Infinispan
> Issue Type: Enhancement
> Components: Documentation
> Affects Versions: 10.1.3.Final
> Reporter: Diego Lovison
> Assignee: Donald Naro
> Priority: Major
>
> When copying source code from a document that has markdowns like : ( 1 ), ( 2 ) the markdowns are present in the clipboard.
> Example:
> {noformat}
> ConfigurationBuilder clientBuilder = new ConfigurationBuilder();
> clientBuilder
> .addServer()
> .host("127.0.0.1")
> .port(11222)
> .security()
> .ssl()
> // Server SNI hostname.
> .sniHostName("myservername") 1
> // Server certificate keystore.
> .trustStoreFileName("/path/to/truststore") 2
> .trustStorePassword("truststorepassword".toCharArray())
> // Client certificate keystore.
> .keyStoreFileName("/path/to/client/keystore") 3
> .keyStorePassword("keystorepassword".toCharArray());
> RemoteCache<String, String> cache=remoteCacheManager.getCache("secured");
> {noformat}
> I would like to copy only the source code without 1, 2, 3
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 7 months
[JBoss JIRA] (ISPN-12232) CLI persistent configuration
by Tristan Tarrant (Jira)
[ https://issues.redhat.com/browse/ISPN-12232?page=com.atlassian.jira.plugi... ]
Tristan Tarrant updated ISPN-12232:
-----------------------------------
Description:
The CLI should store persistent configuration in an OS-specific location:
Linux/Unix:
{noformat}
~/.config/infinispan
{noformat}
OS X:
{noformat}
~/Library/Java/infinispan
{noformat}
Windows:
{noformat}
$APPDATA/Sun/Java/infinispan
{noformat}
This location should contain:
{noformat}
cli.properties
aliases
history
{noformat}
The configuration properties should be exposed through a {{config}} command.
Supported properties:
*autoconnect-url*::
Specifies the URL to which the CLI will automatically connect to on startup. Example:
*config set autoconnect-url http://user:password:11222*
*autoexec*::
Specifies the path of a CLI batch file to execute on startup. Example:
*config set autoexec /home/user/my-cli-batch-file*
*trustall*::
Specifies whether to trust all server certificates without supplying a trust store. Example:
*config set trustall true*
*truststore*::
Specifies the path of a truststore to use to validate server certificates. Example:
*config set truststore /home/user/my-trust-store.jks*
*truststore-password*::
Specifies the password of the truststore to use to validate server certificates. Example:
*config set truststore secret*
was:
The CLI should store persistent configuration in an OS-specific location:
Linux/Unix:
{noformat}
~/.config/infinispan
{noformat}
OS X:
{noformat}
~/Library/Java/infinispan
{noformat}
{code}
Windows:
{noformat}
$APPDATA/Sun/Java/infinispan
{noformat}
This location should contain:
cli.properties
aliases
history
Supported properties:
*autoconnect-url*::
Specifies the URL to which the CLI will automatically connect to on startup. Example:
*config set autoconnect-url http://user:password:11222*
*autoexec*::
Specifies the path of a CLI batch file to execute on startup. Example:
*config set autoexec /home/user/my-cli-batch-file*
*trustall*::
Specifies whether to trust all server certificates without supplying a trust store. Example:
*config set trustall true*
*truststore*::
Specifies the path of a truststore to use to validate server certificates. Example:
*config set truststore /home/user/my-trust-store.jks*
*truststore-password*::
Specifies the password of the truststore to use to validate server certificates. Example:
*config set truststore secret*
> CLI persistent configuration
> ----------------------------
>
> Key: ISPN-12232
> URL: https://issues.redhat.com/browse/ISPN-12232
> Project: Infinispan
> Issue Type: Enhancement
> Components: CLI
> Affects Versions: 12.0.0.Dev02
> Reporter: Tristan Tarrant
> Assignee: Tristan Tarrant
> Priority: Major
> Fix For: 12.0.0.Dev03
>
>
> The CLI should store persistent configuration in an OS-specific location:
> Linux/Unix:
> {noformat}
> ~/.config/infinispan
> {noformat}
> OS X:
> {noformat}
> ~/Library/Java/infinispan
> {noformat}
> Windows:
> {noformat}
> $APPDATA/Sun/Java/infinispan
> {noformat}
> This location should contain:
> {noformat}
> cli.properties
> aliases
> history
> {noformat}
> The configuration properties should be exposed through a {{config}} command.
> Supported properties:
> *autoconnect-url*::
> Specifies the URL to which the CLI will automatically connect to on startup. Example:
> *config set autoconnect-url http://user:password:11222*
> *autoexec*::
> Specifies the path of a CLI batch file to execute on startup. Example:
> *config set autoexec /home/user/my-cli-batch-file*
> *trustall*::
> Specifies whether to trust all server certificates without supplying a trust store. Example:
> *config set trustall true*
> *truststore*::
> Specifies the path of a truststore to use to validate server certificates. Example:
> *config set truststore /home/user/my-trust-store.jks*
> *truststore-password*::
> Specifies the password of the truststore to use to validate server certificates. Example:
> *config set truststore secret*
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 7 months
[JBoss JIRA] (ISPN-12232) CLI persistent configuration
by Tristan Tarrant (Jira)
Tristan Tarrant created ISPN-12232:
--------------------------------------
Summary: CLI persistent configuration
Key: ISPN-12232
URL: https://issues.redhat.com/browse/ISPN-12232
Project: Infinispan
Issue Type: Enhancement
Components: CLI
Affects Versions: 12.0.0.Dev02
Reporter: Tristan Tarrant
Assignee: Tristan Tarrant
Fix For: 12.0.0.Dev03
The CLI should store persistent configuration in an OS-specific location:
Linux/Unix:
{noformat}
~/.config/infinispan
{noformat}
OS X:
{noformat}
~/Library/Java/infinispan
{noformat}
{code}
Windows:
{noformat}
$APPDATA/Sun/Java/infinispan
{noformat}
This location should contain:
cli.properties
aliases
history
Supported properties:
*autoconnect-url*::
Specifies the URL to which the CLI will automatically connect to on startup. Example:
*config set autoconnect-url http://user:password:11222*
*autoexec*::
Specifies the path of a CLI batch file to execute on startup. Example:
*config set autoexec /home/user/my-cli-batch-file*
*trustall*::
Specifies whether to trust all server certificates without supplying a trust store. Example:
*config set trustall true*
*truststore*::
Specifies the path of a truststore to use to validate server certificates. Example:
*config set truststore /home/user/my-trust-store.jks*
*truststore-password*::
Specifies the password of the truststore to use to validate server certificates. Example:
*config set truststore secret*
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 7 months